2024-02-11T15:56:54.575 INFO:root:teuthology version: 0.0.1.dev256+gd9fdb22 2024-02-11T15:56:54.575 DEBUG:teuthology.run:Teuthology command: teuthology --owner scheduled_yuriw@teuthology --name yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi --description rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} --archive /home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202 --verbose -- /home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202/orig.config.yaml 2024-02-11T15:56:54.608 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-11T15:56:54.699 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202 branch: wip-yuri8-testing-2024-02-07-0820-pacific description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} email: null first_in_suite: false job_id: '7556202' kernel: kdb: true sha1: distro last_in_suite: false machine_type: smithi name: yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi no_nested_subset: false nuke-on-error: true openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '20.04' overrides: admin_socket: branch: wip-yuri8-testing-2024-02-07-0820-pacific ceph: conf: mgr: debug mgr: 20 debug ms: 1 mon: debug mon: 20 debug ms: 1 debug paxos: 20 osd: debug ms: 1 debug osd: 20 osd shutdown pgref assert: true flavor: default log-ignorelist: - \(MDS_ALL_DOWN\) - \(MDS_UP_LESS_THAN_MAX\) sha1: 5db25abe00e218b6920215c0bef70af7e47c7152 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 5db25abe00e218b6920215c0bef70af7e47c7152 kernel: hwe: true workunit: branch: wip-yuri8-testing-2024-02-07-0820-pacific sha1: 5db25abe00e218b6920215c0bef70af7e47c7152 owner: scheduled_yuriw@teuthology priority: 71 repo: https://github.com/ceph/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 1730 sha1: 5db25abe00e218b6920215c0bef70af7e47c7152 sleep_before_teardown: 0 subset: 111/120000 suite: rados suite_branch: wip-yuri8-testing-2024-02-07-0820-pacific suite_path: /home/teuthworker/src/github.com_ceph_ceph-c_5db25abe00e218b6920215c0bef70af7e47c7152/qa suite_relpath: qa suite_repo: https://github.com/ceph/ceph-ci.git suite_sha1: 5db25abe00e218b6920215c0bef70af7e47c7152 targets: smithi120.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= smithi183.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM= tasks: - nvme_loop: null - cephadm: roleless: true - cephadm.shell: host.a: - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - vip: null - cephadm.shell: host.a: - ceph orch device ls --refresh - vip.exec: all-hosts: - systemctl stop nfs-server - cephadm.shell: host.a: - ceph orch apply rgw foorgw --port 8800 - ceph nfs cluster create foo --ingress --virtual-ip {{VIP0}}/{{VIPPREFIXLEN}} - vip.exec: host.a: - dnf install -y python3-boto3 || apt install -y python3-boto3 - /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json - python: host.a: "import boto3\nimport json\n\nwith open('/tmp/user.json', 'rt') as f:\n\ \ info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n aws_access_key_id=info['keys'][0]['access_key'],\n\ \ aws_secret_access_key=info['keys'][0]['secret_key'],\n endpoint_url='http://localhost:8800',\n\ )\nbucket = s3.Bucket('foobucket')\nbucket.create()\nbucket.put_object(Key='myobject',\ \ Body='thebody')\n" - cephadm.shell: host.a: - ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser - cephadm.wait_for_service: service: nfs.foo - cephadm.wait_for_service: service: ingress.nfs.foo - vip.exec: host.a: - mkdir /mnt/foo - sleep 5 - mount -t nfs {{VIP0}}:/foouser /mnt/foo - test -d /mnt/foo/foobucket - find /mnt/foo -ls - grep thebody /mnt/foo/foobucket/myobject - echo test > /mnt/foo/foobucket/newobject - sync - python: host.a: "import boto3\nimport json\nfrom io import BytesIO\n\nwith open('/tmp/user.json',\ \ 'rt') as f:\n info = json.loads(f.read())\ns3 = boto3.resource(\n 's3',\n\ \ aws_access_key_id=info['keys'][0]['access_key'],\n aws_secret_access_key=info['keys'][0]['secret_key'],\n\ \ endpoint_url='http://localhost:8800',\n)\nbucket = s3.Bucket('foobucket')\n\ data = BytesIO()\nbucket.download_fileobj(Fileobj=data, Key='newobject')\nprint(data.getvalue())\n\ assert data.getvalue().decode() == 'test\\n'\n" - vip.exec: host.a: - umount /mnt/foo - cephadm.shell: host.a: - ceph nfs export rm foo /foouser - ceph nfs cluster rm foo - cephadm.shell: host.a: - stat -c '%u %g' /var/log/ceph | grep '167 167' - ceph orch status - ceph orch ps - ceph orch ls - ceph orch host ls - ceph orch device ls - ceph orch ls | grep '^osd.all-available-devices ' teuthology: fragments_dropped: [] meta: {} postmerge: [] teuthology_branch: main teuthology_sha1: d9fdb2209e15b39d9f061fd85399f352ce0f0894 timestamp: 2024-02-11_15:26:36 tube: smithi user: yuriw verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2226885 2024-02-11T15:56:54.700 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/github.com_ceph_ceph-c_5db25abe00e218b6920215c0bef70af7e47c7152/qa; will attempt to use it 2024-02-11T15:56:54.700 INFO:teuthology.run:Found tasks at /home/teuthworker/src/github.com_ceph_ceph-c_5db25abe00e218b6920215c0bef70af7e47c7152/qa/tasks 2024-02-11T15:56:54.700 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-02-11T15:56:54.702 INFO:teuthology.task.internal:Checking packages... 2024-02-11T15:56:54.725 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '5db25abe00e218b6920215c0bef70af7e47c7152' 2024-02-11T15:56:54.725 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-02-11T15:56:54.725 INFO:teuthology.packaging:ref: None 2024-02-11T15:56:54.725 INFO:teuthology.packaging:tag: None 2024-02-11T15:56:54.726 INFO:teuthology.packaging:branch: wip-yuri8-testing-2024-02-07-0820-pacific 2024-02-11T15:56:54.726 INFO:teuthology.packaging:sha1: 5db25abe00e218b6920215c0bef70af7e47c7152 2024-02-11T15:56:54.726 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F20.04%2Fx86_64&ref=wip-yuri8-testing-2024-02-07-0820-pacific 2024-02-11T15:56:54.942 INFO:teuthology.task.internal:Found packages for ceph version 16.2.14-530-g5db25abe-1focal 2024-02-11T15:56:54.944 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-02-11T15:56:54.950 INFO:teuthology.task.internal:no buildpackages task found 2024-02-11T15:56:54.950 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-02-11T15:56:54.996 INFO:teuthology.task.internal:Saving configuration 2024-02-11T15:56:55.010 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-02-11T15:56:55.016 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-11T15:56:55.041 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi120.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-11 15:50:49.757096', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-02-11T15:56:55.062 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi183.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-11 15:50:49.758623', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIGETOy3xONfbx7kUFCNiUtRLNfkcrcEsWzPdq6Np/6Bw'} 2024-02-11T15:56:55.063 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-02-11T15:56:55.068 INFO:teuthology.task.internal:roles: ubuntu@smithi120.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-02-11T15:56:55.068 INFO:teuthology.task.internal:roles: ubuntu@smithi183.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-02-11T15:56:55.068 INFO:teuthology.run_tasks:Running task console_log... 2024-02-11T15:56:55.138 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f7bbed00430>, signals=[15]) 2024-02-11T15:56:55.138 INFO:teuthology.run_tasks:Running task internal.connect... 2024-02-11T15:56:55.144 INFO:teuthology.task.internal:Opening connections... 2024-02-11T15:56:55.144 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T15:56:55.146 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T15:56:55.235 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi183.front.sepia.ceph.com 2024-02-11T15:56:55.236 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T15:56:55.330 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-02-11T15:56:55.336 DEBUG:teuthology.orchestra.run.smithi120:> uname -m 2024-02-11T15:56:55.343 INFO:teuthology.orchestra.run.smithi120.stdout:x86_64 2024-02-11T15:56:55.343 DEBUG:teuthology.orchestra.run.smithi120:> cat /etc/os-release 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:NAME="Ubuntu" 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:ID=ubuntu 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:ID_LIKE=debian 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION_ID="20.04" 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-11T15:56:55.393 INFO:teuthology.orchestra.run.smithi120.stdout:VERSION_CODENAME=focal 2024-02-11T15:56:55.394 INFO:teuthology.orchestra.run.smithi120.stdout:UBUNTU_CODENAME=focal 2024-02-11T15:56:55.394 INFO:teuthology.lock.ops:Updating smithi120.front.sepia.ceph.com on lock server 2024-02-11T15:56:55.484 DEBUG:teuthology.orchestra.run.smithi183:> uname -m 2024-02-11T15:56:55.491 INFO:teuthology.orchestra.run.smithi183.stdout:x86_64 2024-02-11T15:56:55.491 DEBUG:teuthology.orchestra.run.smithi183:> cat /etc/os-release 2024-02-11T15:56:55.540 INFO:teuthology.orchestra.run.smithi183.stdout:NAME="Ubuntu" 2024-02-11T15:56:55.540 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION="20.04.4 LTS (Focal Fossa)" 2024-02-11T15:56:55.540 INFO:teuthology.orchestra.run.smithi183.stdout:ID=ubuntu 2024-02-11T15:56:55.540 INFO:teuthology.orchestra.run.smithi183.stdout:ID_LIKE=debian 2024-02-11T15:56:55.540 INFO:teuthology.orchestra.run.smithi183.stdout:PRETTY_NAME="Ubuntu 20.04.4 LTS" 2024-02-11T15:56:55.540 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION_ID="20.04" 2024-02-11T15:56:55.540 INFO:teuthology.orchestra.run.smithi183.stdout:HOME_URL="https://www.ubuntu.com/" 2024-02-11T15:56:55.541 INFO:teuthology.orchestra.run.smithi183.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-02-11T15:56:55.541 INFO:teuthology.orchestra.run.smithi183.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-02-11T15:56:55.541 INFO:teuthology.orchestra.run.smithi183.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-02-11T15:56:55.541 INFO:teuthology.orchestra.run.smithi183.stdout:VERSION_CODENAME=focal 2024-02-11T15:56:55.541 INFO:teuthology.orchestra.run.smithi183.stdout:UBUNTU_CODENAME=focal 2024-02-11T15:56:55.541 INFO:teuthology.lock.ops:Updating smithi183.front.sepia.ceph.com on lock server 2024-02-11T15:56:55.566 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-02-11T15:56:55.574 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-02-11T15:56:55.579 INFO:teuthology.task.internal:Checking for old test directory... 2024-02-11T15:56:55.579 DEBUG:teuthology.orchestra.run.smithi120:> test '!' -e /home/ubuntu/cephtest 2024-02-11T15:56:55.581 DEBUG:teuthology.orchestra.run.smithi183:> test '!' -e /home/ubuntu/cephtest 2024-02-11T15:56:55.586 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-02-11T15:56:55.592 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-02-11T15:56:55.592 DEBUG:teuthology.orchestra.run.smithi120:> test -z $(ls -A /var/lib/ceph) 2024-02-11T15:56:55.594 DEBUG:teuthology.orchestra.run.smithi183:> test -z $(ls -A /var/lib/ceph) 2024-02-11T15:56:55.649 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-02-11T15:56:55.702 INFO:teuthology.run_tasks:Running task kernel... 2024-02-11T15:56:55.715 INFO:teuthology.task.kernel:normalize config orig: {'kdb': True, 'sha1': 'distro'} 2024-02-11T15:56:55.716 INFO:teuthology.task.kernel:normalize config orig: {'hwe': True} 2024-02-11T15:56:55.716 DEBUG:teuthology.task.kernel:normalized overrides {'host.a': {'hwe': True}, 'client.0': {'hwe': True}, 'host.b': {'hwe': True}, 'client.1': {'hwe': True}} 2024-02-11T15:56:55.716 INFO:teuthology.task.kernel:config {'host.a': {'kdb': True, 'sha1': 'distro', 'hwe': True}, 'host.b': {'kdb': True, 'sha1': 'distro', 'hwe': True}}, timeout 300 2024-02-11T15:56:55.716 DEBUG:teuthology.orchestra.run.smithi120:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-11T15:56:55.716 DEBUG:teuthology.orchestra.run.smithi183:> test -f /run/.containerenv -o -f /.dockerenv 2024-02-11T15:56:55.722 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T15:56:55.722 DEBUG:teuthology.orchestra.run.smithi120:> uname -r 2024-02-11T15:56:55.723 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T15:56:55.724 DEBUG:teuthology.orchestra.run.smithi183:> uname -r 2024-02-11T15:56:55.730 INFO:teuthology.orchestra.run.smithi120.stdout:5.4.0-124-generic 2024-02-11T15:56:55.730 INFO:teuthology.task.kernel:Running kernel on smithi120: 5.4.0-124-generic 2024-02-11T15:56:55.730 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get clean 2024-02-11T15:56:55.731 INFO:teuthology.orchestra.run.smithi183.stdout:5.4.0-124-generic 2024-02-11T15:56:55.732 INFO:teuthology.task.kernel:Running kernel on smithi183: 5.4.0-124-generic 2024-02-11T15:56:55.732 DEBUG:teuthology.orchestra.run.smithi183:> sudo apt-get clean 2024-02-11T15:56:55.872 DEBUG:teuthology.orchestra.run.smithi183:> sudo apt-get update 2024-02-11T15:56:55.893 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get update 2024-02-11T15:56:56.043 INFO:teuthology.orchestra.run.smithi183.stdout:Get:1 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2024-02-11T15:56:56.097 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-11T15:56:56.097 INFO:teuthology.orchestra.run.smithi120.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2024-02-11T15:56:56.097 INFO:teuthology.orchestra.run.smithi120.stdout:Get:3 http://security.ubuntu.com/ubuntu focal-security InRelease [114 kB] 2024-02-11T15:56:56.153 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:2 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-11T15:56:56.165 INFO:teuthology.orchestra.run.smithi120.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2024-02-11T15:56:56.235 INFO:teuthology.orchestra.run.smithi183.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease [114 kB] 2024-02-11T15:56:56.338 INFO:teuthology.orchestra.run.smithi183.stdout:Get:4 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,710 kB] 2024-02-11T15:56:56.487 INFO:teuthology.orchestra.run.smithi120.stdout:Get:5 http://security.ubuntu.com/ubuntu focal-security/main amd64 Packages [2,710 kB] 2024-02-11T15:56:56.487 INFO:teuthology.orchestra.run.smithi183.stdout:Get:5 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [706 kB] 2024-02-11T15:56:56.495 INFO:teuthology.orchestra.run.smithi183.stdout:Get:6 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [413 kB] 2024-02-11T15:56:56.500 INFO:teuthology.orchestra.run.smithi183.stdout:Get:7 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-02-11T15:56:56.500 INFO:teuthology.orchestra.run.smithi183.stdout:Get:8 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [35.5 kB] 2024-02-11T15:56:56.501 INFO:teuthology.orchestra.run.smithi183.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,547 kB] 2024-02-11T15:56:56.530 INFO:teuthology.orchestra.run.smithi183.stdout:Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [355 kB] 2024-02-11T15:56:56.535 INFO:teuthology.orchestra.run.smithi183.stdout:Get:11 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-02-11T15:56:56.535 INFO:teuthology.orchestra.run.smithi183.stdout:Get:12 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [937 kB] 2024-02-11T15:56:56.545 INFO:teuthology.orchestra.run.smithi183.stdout:Get:13 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [645 kB] 2024-02-11T15:56:56.549 INFO:teuthology.orchestra.run.smithi183.stdout:Get:14 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [197 kB] 2024-02-11T15:56:56.551 INFO:teuthology.orchestra.run.smithi183.stdout:Get:15 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-02-11T15:56:56.551 INFO:teuthology.orchestra.run.smithi183.stdout:Get:16 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.9 kB] 2024-02-11T15:56:56.551 INFO:teuthology.orchestra.run.smithi183.stdout:Get:17 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2024-02-11T15:56:56.551 INFO:teuthology.orchestra.run.smithi183.stdout:Get:18 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,796 B] 2024-02-11T15:56:56.564 INFO:teuthology.orchestra.run.smithi183.stdout:Get:19 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-02-11T15:56:56.578 INFO:teuthology.orchestra.run.smithi183.stdout:Get:20 http://archive.ubuntu.com/ubuntu focal-backports InRelease [108 kB] 2024-02-11T15:56:56.617 INFO:teuthology.orchestra.run.smithi120.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,090 kB] 2024-02-11T15:56:56.629 INFO:teuthology.orchestra.run.smithi120.stdout:Get:7 http://security.ubuntu.com/ubuntu focal-security/main i386 Packages [706 kB] 2024-02-11T15:56:56.638 INFO:teuthology.orchestra.run.smithi120.stdout:Get:8 http://security.ubuntu.com/ubuntu focal-security/main Translation-en [413 kB] 2024-02-11T15:56:56.642 INFO:teuthology.orchestra.run.smithi120.stdout:Get:9 http://security.ubuntu.com/ubuntu focal-security/main amd64 c-n-f Metadata [13.2 kB] 2024-02-11T15:56:56.642 INFO:teuthology.orchestra.run.smithi120.stdout:Get:10 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 Packages [2,547 kB] 2024-02-11T15:56:56.663 INFO:teuthology.orchestra.run.smithi120.stdout:Get:11 http://security.ubuntu.com/ubuntu focal-security/restricted i386 Packages [35.5 kB] 2024-02-11T15:56:56.664 INFO:teuthology.orchestra.run.smithi120.stdout:Get:12 http://security.ubuntu.com/ubuntu focal-security/restricted Translation-en [355 kB] 2024-02-11T15:56:56.667 INFO:teuthology.orchestra.run.smithi120.stdout:Get:13 http://security.ubuntu.com/ubuntu focal-security/restricted amd64 c-n-f Metadata [552 B] 2024-02-11T15:56:56.667 INFO:teuthology.orchestra.run.smithi120.stdout:Get:14 http://security.ubuntu.com/ubuntu focal-security/universe i386 Packages [645 kB] 2024-02-11T15:56:56.673 INFO:teuthology.orchestra.run.smithi120.stdout:Get:15 http://security.ubuntu.com/ubuntu focal-security/universe amd64 Packages [937 kB] 2024-02-11T15:56:56.683 INFO:teuthology.orchestra.run.smithi120.stdout:Get:16 http://security.ubuntu.com/ubuntu focal-security/universe Translation-en [197 kB] 2024-02-11T15:56:56.685 INFO:teuthology.orchestra.run.smithi120.stdout:Get:17 http://security.ubuntu.com/ubuntu focal-security/universe amd64 c-n-f Metadata [19.2 kB] 2024-02-11T15:56:56.687 INFO:teuthology.orchestra.run.smithi120.stdout:Get:18 http://security.ubuntu.com/ubuntu focal-security/multiverse i386 Packages [7,188 B] 2024-02-11T15:56:56.687 INFO:teuthology.orchestra.run.smithi120.stdout:Get:19 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 Packages [23.9 kB] 2024-02-11T15:56:56.687 INFO:teuthology.orchestra.run.smithi120.stdout:Get:20 http://security.ubuntu.com/ubuntu focal-security/multiverse Translation-en [5,796 B] 2024-02-11T15:56:56.688 INFO:teuthology.orchestra.run.smithi120.stdout:Get:21 http://security.ubuntu.com/ubuntu focal-security/multiverse amd64 c-n-f Metadata [548 B] 2024-02-11T15:56:56.718 INFO:teuthology.orchestra.run.smithi183.stdout:Get:21 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 Packages [3,090 kB] 2024-02-11T15:56:56.752 INFO:teuthology.orchestra.run.smithi120.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [931 kB] 2024-02-11T15:56:56.762 INFO:teuthology.orchestra.run.smithi120.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [496 kB] 2024-02-11T15:56:56.766 INFO:teuthology.orchestra.run.smithi120.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-02-11T15:56:56.766 INFO:teuthology.orchestra.run.smithi120.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.8 kB] 2024-02-11T15:56:56.766 INFO:teuthology.orchestra.run.smithi120.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,665 kB] 2024-02-11T15:56:56.788 INFO:teuthology.orchestra.run.smithi120.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [371 kB] 2024-02-11T15:56:56.791 INFO:teuthology.orchestra.run.smithi120.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-02-11T15:56:56.791 INFO:teuthology.orchestra.run.smithi120.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,163 kB] 2024-02-11T15:56:56.801 INFO:teuthology.orchestra.run.smithi120.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [772 kB] 2024-02-11T15:56:56.808 INFO:teuthology.orchestra.run.smithi120.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [279 kB] 2024-02-11T15:56:56.810 INFO:teuthology.orchestra.run.smithi120.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-02-11T15:56:56.811 INFO:teuthology.orchestra.run.smithi120.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [26.1 kB] 2024-02-11T15:56:56.811 INFO:teuthology.orchestra.run.smithi120.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,436 B] 2024-02-11T15:56:56.811 INFO:teuthology.orchestra.run.smithi120.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,768 B] 2024-02-11T15:56:56.831 INFO:teuthology.orchestra.run.smithi120.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-02-11T15:56:56.831 INFO:teuthology.orchestra.run.smithi120.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-02-11T15:56:56.832 INFO:teuthology.orchestra.run.smithi120.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-02-11T15:56:56.833 INFO:teuthology.orchestra.run.smithi120.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-02-11T15:56:56.833 INFO:teuthology.orchestra.run.smithi120.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-02-11T15:56:56.851 INFO:teuthology.orchestra.run.smithi120.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-02-11T15:56:56.851 INFO:teuthology.orchestra.run.smithi120.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-02-11T15:56:57.106 INFO:teuthology.orchestra.run.smithi183.stdout:Get:22 http://archive.ubuntu.com/ubuntu focal-updates/main i386 Packages [931 kB] 2024-02-11T15:56:57.135 INFO:teuthology.orchestra.run.smithi183.stdout:Get:23 http://archive.ubuntu.com/ubuntu focal-updates/main Translation-en [496 kB] 2024-02-11T15:56:57.148 INFO:teuthology.orchestra.run.smithi183.stdout:Get:24 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 c-n-f Metadata [17.2 kB] 2024-02-11T15:56:57.149 INFO:teuthology.orchestra.run.smithi183.stdout:Get:25 http://archive.ubuntu.com/ubuntu focal-updates/restricted i386 Packages [36.8 kB] 2024-02-11T15:56:57.149 INFO:teuthology.orchestra.run.smithi183.stdout:Get:26 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 Packages [2,665 kB] 2024-02-11T15:56:57.228 INFO:teuthology.orchestra.run.smithi183.stdout:Get:27 http://archive.ubuntu.com/ubuntu focal-updates/restricted Translation-en [371 kB] 2024-02-11T15:56:57.234 INFO:teuthology.orchestra.run.smithi183.stdout:Get:28 http://archive.ubuntu.com/ubuntu focal-updates/restricted amd64 c-n-f Metadata [552 B] 2024-02-11T15:56:57.398 INFO:teuthology.orchestra.run.smithi183.stdout:Get:29 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 Packages [1,163 kB] 2024-02-11T15:56:58.040 INFO:teuthology.orchestra.run.smithi183.stdout:Get:30 http://archive.ubuntu.com/ubuntu focal-updates/universe i386 Packages [772 kB] 2024-02-11T15:56:58.077 INFO:teuthology.orchestra.run.smithi183.stdout:Get:31 http://archive.ubuntu.com/ubuntu focal-updates/universe Translation-en [279 kB] 2024-02-11T15:56:58.090 INFO:teuthology.orchestra.run.smithi183.stdout:Get:32 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 c-n-f Metadata [25.7 kB] 2024-02-11T15:56:58.091 INFO:teuthology.orchestra.run.smithi183.stdout:Get:33 http://archive.ubuntu.com/ubuntu focal-updates/multiverse i386 Packages [8,436 B] 2024-02-11T15:56:58.092 INFO:teuthology.orchestra.run.smithi183.stdout:Get:34 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 Packages [26.1 kB] 2024-02-11T15:56:58.093 INFO:teuthology.orchestra.run.smithi183.stdout:Get:35 http://archive.ubuntu.com/ubuntu focal-updates/multiverse Translation-en [7,768 B] 2024-02-11T15:56:58.093 INFO:teuthology.orchestra.run.smithi183.stdout:Get:36 http://archive.ubuntu.com/ubuntu focal-updates/multiverse amd64 c-n-f Metadata [620 B] 2024-02-11T15:56:58.094 INFO:teuthology.orchestra.run.smithi183.stdout:Get:37 http://archive.ubuntu.com/ubuntu focal-backports/main i386 Packages [36.1 kB] 2024-02-11T15:56:58.121 INFO:teuthology.orchestra.run.smithi183.stdout:Get:38 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 Packages [45.7 kB] 2024-02-11T15:56:58.122 INFO:teuthology.orchestra.run.smithi183.stdout:Get:39 http://archive.ubuntu.com/ubuntu focal-backports/main amd64 c-n-f Metadata [1,420 B] 2024-02-11T15:56:58.287 INFO:teuthology.orchestra.run.smithi183.stdout:Get:40 http://archive.ubuntu.com/ubuntu focal-backports/universe i386 Packages [13.8 kB] 2024-02-11T15:56:58.450 INFO:teuthology.orchestra.run.smithi183.stdout:Get:41 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 Packages [25.0 kB] 2024-02-11T15:56:58.501 INFO:teuthology.orchestra.run.smithi183.stdout:Get:42 http://archive.ubuntu.com/ubuntu focal-backports/universe amd64 c-n-f Metadata [880 B] 2024-02-11T15:57:00.516 INFO:teuthology.orchestra.run.smithi183.stdout:Fetched 19.0 MB in 3s (7,029 kB/s) 2024-02-11T15:57:00.662 INFO:teuthology.orchestra.run.smithi120.stdout:Fetched 19.0 MB in 3s (6,868 kB/s) 2024-02-11T15:57:01.964 INFO:teuthology.orchestra.run.smithi183.stdout:Reading package lists... 2024-02-11T15:57:01.988 DEBUG:teuthology.orchestra.run.smithi183:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-11T15:57:02.062 INFO:teuthology.orchestra.run.smithi183.stdout:Reading package lists... 2024-02-11T15:57:02.142 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-02-11T15:57:02.169 DEBUG:teuthology.orchestra.run.smithi120:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-11T15:57:02.241 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-02-11T15:57:02.267 INFO:teuthology.orchestra.run.smithi183.stdout:Building dependency tree... 2024-02-11T15:57:02.268 INFO:teuthology.orchestra.run.smithi183.stdout:Reading state information... 2024-02-11T15:57:02.447 INFO:teuthology.orchestra.run.smithi120.stdout:Building dependency tree... 2024-02-11T15:57:02.447 INFO:teuthology.orchestra.run.smithi120.stdout:Reading state information... 2024-02-11T15:57:02.462 INFO:teuthology.orchestra.run.smithi183.stdout:The following additional packages will be installed: 2024-02-11T15:57:02.463 INFO:teuthology.orchestra.run.smithi183.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-11T15:57:02.463 INFO:teuthology.orchestra.run.smithi183.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-modules-5.15.0-94-generic 2024-02-11T15:57:02.463 INFO:teuthology.orchestra.run.smithi183.stdout: linux-modules-extra-5.15.0-94-generic thermald upower usbmuxd 2024-02-11T15:57:02.464 INFO:teuthology.orchestra.run.smithi183.stdout:Suggested packages: 2024-02-11T15:57:02.465 INFO:teuthology.orchestra.run.smithi183.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-02-11T15:57:02.465 INFO:teuthology.orchestra.run.smithi183.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-94-generic 2024-02-11T15:57:02.515 INFO:teuthology.orchestra.run.smithi183.stdout:The following NEW packages will be installed: 2024-02-11T15:57:02.516 INFO:teuthology.orchestra.run.smithi183.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-11T15:57:02.516 INFO:teuthology.orchestra.run.smithi183.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-image-generic-hwe-20.04 2024-02-11T15:57:02.517 INFO:teuthology.orchestra.run.smithi183.stdout: linux-modules-5.15.0-94-generic linux-modules-extra-5.15.0-94-generic 2024-02-11T15:57:02.517 INFO:teuthology.orchestra.run.smithi183.stdout: thermald upower usbmuxd 2024-02-11T15:57:02.580 INFO:teuthology.orchestra.run.smithi183.stdout:0 upgraded, 13 newly installed, 0 to remove and 287 not upgraded. 2024-02-11T15:57:02.580 INFO:teuthology.orchestra.run.smithi183.stdout:Need to get 90.9 MB of archives. 2024-02-11T15:57:02.580 INFO:teuthology.orchestra.run.smithi183.stdout:After this operation, 497 MB of additional disk space will be used. 2024-02-11T15:57:02.580 INFO:teuthology.orchestra.run.smithi183.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-02-11T15:57:02.632 INFO:teuthology.orchestra.run.smithi120.stdout:The following additional packages will be installed: 2024-02-11T15:57:02.632 INFO:teuthology.orchestra.run.smithi120.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-11T15:57:02.632 INFO:teuthology.orchestra.run.smithi120.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-modules-5.15.0-94-generic 2024-02-11T15:57:02.632 INFO:teuthology.orchestra.run.smithi120.stdout: linux-modules-extra-5.15.0-94-generic thermald upower usbmuxd 2024-02-11T15:57:02.633 INFO:teuthology.orchestra.run.smithi120.stdout:Suggested packages: 2024-02-11T15:57:02.633 INFO:teuthology.orchestra.run.smithi120.stdout: libusbmuxd-tools fdutils linux-doc | linux-hwe-5.15-source-5.15.0 2024-02-11T15:57:02.633 INFO:teuthology.orchestra.run.smithi120.stdout: linux-hwe-5.15-tools linux-headers-5.15.0-94-generic 2024-02-11T15:57:02.649 INFO:teuthology.orchestra.run.smithi183.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-02-11T15:57:02.659 INFO:teuthology.orchestra.run.smithi183.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-02-11T15:57:02.661 INFO:teuthology.orchestra.run.smithi183.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-02-11T15:57:02.679 INFO:teuthology.orchestra.run.smithi183.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-02-11T15:57:02.688 INFO:teuthology.orchestra.run.smithi120.stdout:The following NEW packages will be installed: 2024-02-11T15:57:02.689 INFO:teuthology.orchestra.run.smithi183.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [21.0 MB] 2024-02-11T15:57:02.689 INFO:teuthology.orchestra.run.smithi120.stdout: libdbus-glib-1-2 libevdev2 libimobiledevice6 libplist3 libupower-glib3 2024-02-11T15:57:02.689 INFO:teuthology.orchestra.run.smithi120.stdout: libusbmuxd6 linux-image-5.15.0-94-generic linux-image-generic-hwe-20.04 2024-02-11T15:57:02.689 INFO:teuthology.orchestra.run.smithi120.stdout: linux-modules-5.15.0-94-generic linux-modules-extra-5.15.0-94-generic 2024-02-11T15:57:02.690 INFO:teuthology.orchestra.run.smithi120.stdout: thermald upower usbmuxd 2024-02-11T15:57:02.873 INFO:teuthology.orchestra.run.smithi120.stdout:0 upgraded, 13 newly installed, 0 to remove and 287 not upgraded. 2024-02-11T15:57:02.874 INFO:teuthology.orchestra.run.smithi120.stdout:Need to get 90.9 MB of archives. 2024-02-11T15:57:02.874 INFO:teuthology.orchestra.run.smithi120.stdout:After this operation, 497 MB of additional disk space will be used. 2024-02-11T15:57:02.874 INFO:teuthology.orchestra.run.smithi120.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 libdbus-glib-1-2 amd64 0.110-5fakssync1 [59.1 kB] 2024-02-11T15:57:03.000 INFO:teuthology.orchestra.run.smithi183.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [11.4 MB] 2024-02-11T15:57:03.103 INFO:teuthology.orchestra.run.smithi183.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [57.9 MB] 2024-02-11T15:57:03.157 INFO:teuthology.orchestra.run.smithi120.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libplist3 amd64 2.1.0-4build2 [31.6 kB] 2024-02-11T15:57:03.187 INFO:teuthology.orchestra.run.smithi120.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libusbmuxd6 amd64 2.0.1-2 [19.1 kB] 2024-02-11T15:57:03.206 INFO:teuthology.orchestra.run.smithi120.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 libimobiledevice6 amd64 1.2.1~git20191129.9f79242-1build1 [65.2 kB] 2024-02-11T15:57:03.277 INFO:teuthology.orchestra.run.smithi120.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 libupower-glib3 amd64 0.99.11-1build2 [43.2 kB] 2024-02-11T15:57:03.314 INFO:teuthology.orchestra.run.smithi120.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [21.0 MB] 2024-02-11T15:57:03.905 INFO:teuthology.orchestra.run.smithi183.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.94.104~20.04.50 [2,596 B] 2024-02-11T15:57:03.905 INFO:teuthology.orchestra.run.smithi183.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2024-02-11T15:57:03.906 INFO:teuthology.orchestra.run.smithi183.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-02-11T15:57:03.968 INFO:teuthology.orchestra.run.smithi183.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-02-11T15:57:03.969 INFO:teuthology.orchestra.run.smithi183.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-02-11T15:57:04.176 INFO:teuthology.orchestra.run.smithi120.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [11.4 MB] 2024-02-11T15:57:04.472 INFO:teuthology.orchestra.run.smithi120.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-modules-extra-5.15.0-94-generic amd64 5.15.0-94.104~20.04.1 [57.9 MB] 2024-02-11T15:57:04.650 INFO:teuthology.orchestra.run.smithi183.stdout:Fetched 90.9 MB in 1s (62.9 MB/s) 2024-02-11T15:57:04.864 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-02-11T15:57:06.411 INFO:teuthology.orchestra.run.smithi120.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 linux-image-generic-hwe-20.04 amd64 5.15.0.94.104~20.04.50 [2,596 B] 2024-02-11T15:57:06.412 INFO:teuthology.orchestra.run.smithi120.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 libevdev2 amd64 1.9.0+dfsg-1ubuntu0.2 [31.6 kB] 2024-02-11T15:57:06.413 INFO:teuthology.orchestra.run.smithi120.stdout:Get:11 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 thermald amd64 1.9.1-1ubuntu0.6 [233 kB] 2024-02-11T15:57:06.573 INFO:teuthology.orchestra.run.smithi183.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 ... 104373 files and directories currently installed.) 2024-02-11T15:57:06.578 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-02-11T15:57:06.582 INFO:teuthology.orchestra.run.smithi120.stdout:Get:12 http://archive.ubuntu.com/ubuntu focal/main amd64 upower amd64 0.99.11-1build2 [104 kB] 2024-02-11T15:57:06.695 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-11T15:57:06.925 INFO:teuthology.orchestra.run.smithi120.stdout:Get:13 http://archive.ubuntu.com/ubuntu focal/main amd64 usbmuxd amd64 1.1.1~git20191130.9af2b12-1 [38.4 kB] 2024-02-11T15:57:07.056 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libplist3:amd64. 2024-02-11T15:57:07.071 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-02-11T15:57:07.114 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-02-11T15:57:07.459 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-02-11T15:57:07.472 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-02-11T15:57:07.525 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-11T15:57:07.720 INFO:teuthology.orchestra.run.smithi120.stdout:Fetched 90.9 MB in 4s (21.4 MB/s) 2024-02-11T15:57:07.811 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-02-11T15:57:07.826 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-02-11T15:57:07.861 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-11T15:57:07.946 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package libdbus-glib-1-2:amd64. 2024-02-11T15:57:08.181 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-02-11T15:57:08.195 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-02-11T15:57:08.239 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-11T15:57:08.550 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package linux-modules-5.15.0-94-generic. 2024-02-11T15:57:08.563 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../05-linux-modules-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-11T15:57:08.600 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:09.709 INFO:teuthology.orchestra.run.smithi120.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 ... 104373 files and directories currently installed.) 2024-02-11T15:57:09.713 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../00-libdbus-glib-1-2_0.110-5fakssync1_amd64.deb ... 2024-02-11T15:57:09.902 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-11T15:57:10.221 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package libplist3:amd64. 2024-02-11T15:57:10.235 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../01-libplist3_2.1.0-4build2_amd64.deb ... 2024-02-11T15:57:10.287 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking libplist3:amd64 (2.1.0-4build2) ... 2024-02-11T15:57:10.632 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package libusbmuxd6:amd64. 2024-02-11T15:57:10.646 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../02-libusbmuxd6_2.0.1-2_amd64.deb ... 2024-02-11T15:57:10.690 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-11T15:57:10.967 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package linux-image-5.15.0-94-generic. 2024-02-11T15:57:10.980 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../06-linux-image-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-11T15:57:11.035 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package libimobiledevice6:amd64. 2024-02-11T15:57:11.048 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../03-libimobiledevice6_1.2.1~git20191129.9f79242-1build1_amd64.deb ... 2024-02-11T15:57:11.084 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-11T15:57:11.096 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:11.446 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package libupower-glib3:amd64. 2024-02-11T15:57:11.459 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../04-libupower-glib3_0.99.11-1build2_amd64.deb ... 2024-02-11T15:57:11.504 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-11T15:57:11.586 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-94-generic. 2024-02-11T15:57:11.599 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-11T15:57:11.628 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:11.857 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-modules-5.15.0-94-generic. 2024-02-11T15:57:11.873 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../05-linux-modules-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-11T15:57:11.915 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:14.458 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-image-5.15.0-94-generic. 2024-02-11T15:57:14.473 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../06-linux-image-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-11T15:57:14.578 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:15.135 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-94-generic. 2024-02-11T15:57:15.148 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../07-linux-modules-extra-5.15.0-94-generic_5.15.0-94.104~20.04.1_amd64.deb ... 2024-02-11T15:57:15.210 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:18.903 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-02-11T15:57:18.921 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.94.104~20.04.50_amd64.deb ... 2024-02-11T15:57:18.961 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-11T15:57:19.247 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package libevdev2:amd64. 2024-02-11T15:57:19.263 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-02-11T15:57:19.296 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-11T15:57:19.666 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package thermald. 2024-02-11T15:57:19.681 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-02-11T15:57:19.725 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-02-11T15:57:20.230 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package upower. 2024-02-11T15:57:20.243 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-02-11T15:57:20.305 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking upower (0.99.11-1build2) ... 2024-02-11T15:57:20.717 INFO:teuthology.orchestra.run.smithi183.stdout:Selecting previously unselected package usbmuxd. 2024-02-11T15:57:20.732 INFO:teuthology.orchestra.run.smithi183.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-02-11T15:57:20.776 INFO:teuthology.orchestra.run.smithi183.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-11T15:57:21.065 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-02-11T15:57:21.188 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-11T15:57:21.314 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-11T15:57:21.440 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-11T15:57:21.567 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-11T15:57:21.693 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-11T15:57:21.819 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up upower (0.99.11-1build2) ... 2024-02-11T15:57:22.325 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package linux-image-generic-hwe-20.04. 2024-02-11T15:57:22.344 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../08-linux-image-generic-hwe-20.04_5.15.0.94.104~20.04.50_amd64.deb ... 2024-02-11T15:57:22.383 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-11T15:57:22.389 INFO:teuthology.orchestra.run.smithi183.stdout:upower.service is a disabled or a static unit, not starting it. 2024-02-11T15:57:22.439 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-11T15:57:22.619 INFO:teuthology.orchestra.run.smithi183.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-02-11T15:57:22.624 INFO:teuthology.orchestra.run.smithi183.stdout:Adding system user `usbmux' (UID 114) ... 2024-02-11T15:57:22.624 INFO:teuthology.orchestra.run.smithi183.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-02-11T15:57:23.094 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package libevdev2:amd64. 2024-02-11T15:57:23.111 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../09-libevdev2_1.9.0+dfsg-1ubuntu0.2_amd64.deb ... 2024-02-11T15:57:23.132 INFO:teuthology.orchestra.run.smithi183.stdout:Not creating home directory `/var/lib/usbmux'. 2024-02-11T15:57:23.178 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-11T15:57:23.341 INFO:teuthology.orchestra.run.smithi183.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-02-11T15:57:23.378 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-02-11T15:57:23.564 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package thermald. 2024-02-11T15:57:23.577 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../10-thermald_1.9.1-1ubuntu0.6_amd64.deb ... 2024-02-11T15:57:23.622 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking thermald (1.9.1-1ubuntu0.6) ... 2024-02-11T15:57:23.687 INFO:teuthology.orchestra.run.smithi183.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-02-11T15:57:23.688 INFO:teuthology.orchestra.run.smithi183.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-02-11T15:57:24.150 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:24.210 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package upower. 2024-02-11T15:57:24.224 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../11-upower_0.99.11-1build2_amd64.deb ... 2024-02-11T15:57:24.285 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking upower (0.99.11-1build2) ... 2024-02-11T15:57:24.714 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package usbmuxd. 2024-02-11T15:57:24.728 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../12-usbmuxd_1.1.1~git20191130.9af2b12-1_amd64.deb ... 2024-02-11T15:57:24.789 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-11T15:57:25.097 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up libplist3:amd64 (2.1.0-4build2) ... 2024-02-11T15:57:25.221 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up libdbus-glib-1-2:amd64 (0.110-5fakssync1) ... 2024-02-11T15:57:25.347 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up libusbmuxd6:amd64 (2.0.1-2) ... 2024-02-11T15:57:25.471 INFO:teuthology.orchestra.run.smithi183.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-94-generic 2024-02-11T15:57:25.471 INFO:teuthology.orchestra.run.smithi183.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-94-generic 2024-02-11T15:57:25.498 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up libupower-glib3:amd64 (0.99.11-1build2) ... 2024-02-11T15:57:25.609 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:25.615 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up libimobiledevice6:amd64 (1.2.1~git20191129.9f79242-1build1) ... 2024-02-11T15:57:25.742 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up libevdev2:amd64 (1.9.0+dfsg-1ubuntu0.2) ... 2024-02-11T15:57:25.859 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up upower (0.99.11-1build2) ... 2024-02-11T15:57:26.384 INFO:teuthology.orchestra.run.smithi120.stdout:upower.service is a disabled or a static unit, not starting it. 2024-02-11T15:57:26.439 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up usbmuxd (1.1.1~git20191130.9af2b12-1) ... 2024-02-11T15:57:26.627 INFO:teuthology.orchestra.run.smithi120.stdout:Warning: The home dir /var/lib/usbmux you specified can't be accessed: No such file or directory 2024-02-11T15:57:26.644 INFO:teuthology.orchestra.run.smithi120.stdout:Adding system user `usbmux' (UID 114) ... 2024-02-11T15:57:26.645 INFO:teuthology.orchestra.run.smithi120.stdout:Adding new user `usbmux' (UID 114) with group `plugdev' ... 2024-02-11T15:57:26.977 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-11T15:57:27.103 INFO:teuthology.orchestra.run.smithi183.stdout:Setting up linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:27.181 INFO:teuthology.orchestra.run.smithi120.stdout:Not creating home directory `/var/lib/usbmux'. 2024-02-11T15:57:27.394 INFO:teuthology.orchestra.run.smithi120.stdout:usbmuxd.service is a disabled or a static unit, not starting it. 2024-02-11T15:57:27.453 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up thermald (1.9.1-1ubuntu0.6) ... 2024-02-11T15:57:27.790 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/dbus-org.freedesktop.thermald.service -> /lib/systemd/system/thermald.service. 2024-02-11T15:57:27.790 INFO:teuthology.orchestra.run.smithi120.stdout:Created symlink /etc/systemd/system/multi-user.target.wants/thermald.service -> /lib/systemd/system/thermald.service. 2024-02-11T15:57:28.642 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:29.314 INFO:teuthology.orchestra.run.smithi183.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-11T15:57:29.686 INFO:teuthology.orchestra.run.smithi183.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-11T15:57:30.407 INFO:teuthology.orchestra.run.smithi120.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-94-generic 2024-02-11T15:57:30.408 INFO:teuthology.orchestra.run.smithi120.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-94-generic 2024-02-11T15:57:30.455 INFO:teuthology.orchestra.run.smithi183.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-02-11T15:57:30.565 INFO:teuthology.orchestra.run.smithi183.stdout:Processing triggers for linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:30.570 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-modules-extra-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:30.632 INFO:teuthology.orchestra.run.smithi183.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-11T15:57:30.633 INFO:teuthology.orchestra.run.smithi183.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-94-generic 2024-02-11T15:57:31.963 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-image-generic-hwe-20.04 (5.15.0.94.104~20.04.50) ... 2024-02-11T15:57:32.114 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up linux-modules-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:33.483 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-11T15:57:33.772 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-11T15:57:35.191 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for dbus (1.12.16-2ubuntu2.2) ... 2024-02-11T15:57:35.308 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for linux-image-5.15.0-94-generic (5.15.0-94.104~20.04.1) ... 2024-02-11T15:57:35.396 INFO:teuthology.orchestra.run.smithi120.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-02-11T15:57:35.396 INFO:teuthology.orchestra.run.smithi120.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-94-generic 2024-02-11T15:57:55.829 INFO:teuthology.orchestra.run.smithi183.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-11T15:57:55.830 INFO:teuthology.orchestra.run.smithi183.stdout:Sourcing file `/etc/default/grub' 2024-02-11T15:57:55.838 INFO:teuthology.orchestra.run.smithi183.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-11T15:57:55.851 INFO:teuthology.orchestra.run.smithi183.stdout:Generating grub configuration file ... 2024-02-11T15:57:56.190 INFO:teuthology.orchestra.run.smithi183.stdout:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-11T15:57:56.426 INFO:teuthology.orchestra.run.smithi183.stdout:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-11T15:57:56.639 INFO:teuthology.orchestra.run.smithi183.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-11T15:57:56.651 INFO:teuthology.orchestra.run.smithi183.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-11T15:57:58.655 INFO:teuthology.orchestra.run.smithi183.stdout:done 2024-02-11T15:57:59.094 DEBUG:teuthology.orchestra.run.smithi183:> dpkg -s linux-image-generic-hwe-20.04 2024-02-11T15:57:59.151 INFO:teuthology.orchestra.run.smithi183.stdout:Package: linux-image-generic-hwe-20.04 2024-02-11T15:57:59.151 INFO:teuthology.orchestra.run.smithi183.stdout:Status: install ok installed 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Priority: optional 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Section: kernel 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Installed-Size: 20 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Maintainer: Ubuntu Kernel Team 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Architecture: amd64 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Source: linux-meta-hwe-5.15 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Recommends: thermald 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout:Description: Generic Linux kernel image 2024-02-11T15:57:59.152 INFO:teuthology.orchestra.run.smithi183.stdout: This package will always depend on the latest generic kernel image 2024-02-11T15:57:59.153 INFO:teuthology.orchestra.run.smithi183.stdout: available. 2024-02-11T15:57:59.153 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-94-generic 2024-02-11T15:57:59.153 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-11T15:57:59.153 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-11T15:57:59.153 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-02-11T15:57:59.153 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi183.front.sepia.ceph.com, path=None, version=distro) 2024-02-11T15:57:59.153 DEBUG:teuthology.orchestra.run.smithi183:> sudo apt-get clean 2024-02-11T15:57:59.234 DEBUG:teuthology.orchestra.run.smithi183:> sudo apt-get update 2024-02-11T15:57:59.516 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-11T15:57:59.517 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:2 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-02-11T15:57:59.586 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-02-11T15:57:59.668 INFO:teuthology.orchestra.run.smithi183.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-02-11T15:58:00.841 INFO:teuthology.orchestra.run.smithi120.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-02-11T15:58:00.841 INFO:teuthology.orchestra.run.smithi120.stdout:Sourcing file `/etc/default/grub' 2024-02-11T15:58:00.861 INFO:teuthology.orchestra.run.smithi120.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-11T15:58:00.890 INFO:teuthology.orchestra.run.smithi120.stdout:Generating grub configuration file ... 2024-02-11T15:58:01.217 INFO:teuthology.orchestra.run.smithi120.stdout:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-11T15:58:01.254 INFO:teuthology.orchestra.run.smithi120.stdout:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-11T15:58:01.271 INFO:teuthology.orchestra.run.smithi183.stdout:Reading package lists... 2024-02-11T15:58:01.297 DEBUG:teuthology.orchestra.run.smithi183:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-11T15:58:01.369 INFO:teuthology.orchestra.run.smithi183.stdout:Reading package lists... 2024-02-11T15:58:01.551 INFO:teuthology.orchestra.run.smithi183.stdout:Building dependency tree... 2024-02-11T15:58:01.554 INFO:teuthology.orchestra.run.smithi183.stdout:Reading state information... 2024-02-11T15:58:01.653 INFO:teuthology.orchestra.run.smithi120.stdout:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-11T15:58:01.664 INFO:teuthology.orchestra.run.smithi120.stdout:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-11T15:58:01.762 INFO:teuthology.orchestra.run.smithi183.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.94.104~20.04.50). 2024-02-11T15:58:01.762 INFO:teuthology.orchestra.run.smithi183.stdout:0 upgraded, 0 newly installed, 0 to remove and 287 not upgraded. 2024-02-11T15:58:01.765 DEBUG:teuthology.orchestra.run.smithi183:> dpkg -s linux-image-generic-hwe-20.04 2024-02-11T15:58:01.795 INFO:teuthology.orchestra.run.smithi183.stdout:Package: linux-image-generic-hwe-20.04 2024-02-11T15:58:01.795 INFO:teuthology.orchestra.run.smithi183.stdout:Status: install ok installed 2024-02-11T15:58:01.795 INFO:teuthology.orchestra.run.smithi183.stdout:Priority: optional 2024-02-11T15:58:01.795 INFO:teuthology.orchestra.run.smithi183.stdout:Section: kernel 2024-02-11T15:58:01.795 INFO:teuthology.orchestra.run.smithi183.stdout:Installed-Size: 20 2024-02-11T15:58:01.795 INFO:teuthology.orchestra.run.smithi183.stdout:Maintainer: Ubuntu Kernel Team 2024-02-11T15:58:01.795 INFO:teuthology.orchestra.run.smithi183.stdout:Architecture: amd64 2024-02-11T15:58:01.795 INFO:teuthology.orchestra.run.smithi183.stdout:Source: linux-meta-hwe-5.15 2024-02-11T15:58:01.796 INFO:teuthology.orchestra.run.smithi183.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-11T15:58:01.796 INFO:teuthology.orchestra.run.smithi183.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-11T15:58:01.796 INFO:teuthology.orchestra.run.smithi183.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-11T15:58:01.796 INFO:teuthology.orchestra.run.smithi183.stdout:Recommends: thermald 2024-02-11T15:58:01.796 INFO:teuthology.orchestra.run.smithi183.stdout:Description: Generic Linux kernel image 2024-02-11T15:58:01.796 INFO:teuthology.orchestra.run.smithi183.stdout: This package will always depend on the latest generic kernel image 2024-02-11T15:58:01.796 INFO:teuthology.orchestra.run.smithi183.stdout: available. 2024-02-11T15:58:01.796 DEBUG:teuthology.orchestra.run.smithi183:> mktemp 2024-02-11T15:58:01.806 INFO:teuthology.orchestra.run.smithi183.stdout:/tmp/tmp.h4EBTyE3mG 2024-02-11T15:58:01.806 DEBUG:teuthology.orchestra.run.smithi183:> sudo cp /boot/grub/grub.cfg /tmp/tmp.h4EBTyE3mG 2024-02-11T15:58:01.866 DEBUG:teuthology.orchestra.run.smithi183:> sudo chmod 0666 /tmp/tmp.h4EBTyE3mG 2024-02-11T15:58:01.955 DEBUG:teuthology.orchestra.remote:smithi183:/tmp/tmp.h4EBTyE3mG is 9KB 2024-02-11T15:58:01.982 DEBUG:teuthology.orchestra.run.smithi183:> rm -fr /tmp/tmp.h4EBTyE3mG 2024-02-11T15:58:01.989 DEBUG:teuthology.orchestra.run.smithi183:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-11T15:58:02.052 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T15:58:02.053 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-11T15:58:02.053 DEBUG:teuthology.orchestra.run.smithi183:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-11T15:58:02.083 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-94-generic 2024-02-11T15:58:02.083 DEBUG:teuthology.orchestra.run.smithi183:> sudo update-grub 2024-02-11T15:58:03.396 INFO:teuthology.orchestra.run.smithi183.stderr:Sourcing file `/etc/default/grub' 2024-02-11T15:58:03.403 INFO:teuthology.orchestra.run.smithi183.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-11T15:58:03.413 INFO:teuthology.orchestra.run.smithi183.stderr:Generating grub configuration file ... 2024-02-11T15:58:03.759 INFO:teuthology.orchestra.run.smithi120.stdout:done 2024-02-11T15:58:03.774 INFO:teuthology.orchestra.run.smithi183.stderr:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-11T15:58:03.786 INFO:teuthology.orchestra.run.smithi183.stderr:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-11T15:58:04.179 INFO:teuthology.orchestra.run.smithi183.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-11T15:58:04.191 INFO:teuthology.orchestra.run.smithi183.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-11T15:58:04.210 DEBUG:teuthology.orchestra.run.smithi120:> dpkg -s linux-image-generic-hwe-20.04 2024-02-11T15:58:04.255 INFO:teuthology.orchestra.run.smithi120.stdout:Package: linux-image-generic-hwe-20.04 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Status: install ok installed 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Priority: optional 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Section: kernel 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Installed-Size: 20 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Maintainer: Ubuntu Kernel Team 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Architecture: amd64 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Source: linux-meta-hwe-5.15 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Recommends: thermald 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout:Description: Generic Linux kernel image 2024-02-11T15:58:04.256 INFO:teuthology.orchestra.run.smithi120.stdout: This package will always depend on the latest generic kernel image 2024-02-11T15:58:04.257 INFO:teuthology.orchestra.run.smithi120.stdout: available. 2024-02-11T15:58:04.257 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.4.0-124-generic Expected: 5.15.0-94-generic 2024-02-11T15:58:04.257 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-02-11T15:58:04.257 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-02-11T15:58:04.257 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-02-11T15:58:04.257 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi120.front.sepia.ceph.com, path=None, version=distro) 2024-02-11T15:58:04.257 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get clean 2024-02-11T15:58:04.348 DEBUG:teuthology.orchestra.run.smithi120:> sudo apt-get update 2024-02-11T15:58:04.604 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:1 http://archive.ubuntu.com/ubuntu focal InRelease 2024-02-11T15:58:04.604 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:2 http://security.ubuntu.com/ubuntu focal-security InRelease 2024-02-11T15:58:04.675 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:3 http://archive.ubuntu.com/ubuntu focal-updates InRelease 2024-02-11T15:58:04.758 INFO:teuthology.orchestra.run.smithi120.stdout:Hit:4 http://archive.ubuntu.com/ubuntu focal-backports InRelease 2024-02-11T15:58:05.148 INFO:teuthology.orchestra.run.smithi183.stderr:done 2024-02-11T15:58:05.150 DEBUG:teuthology.orchestra.run.smithi183:> sudo shutdown -r now 2024-02-11T15:58:06.378 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-02-11T15:58:06.402 DEBUG:teuthology.orchestra.run.smithi120:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic-hwe-20.04 2024-02-11T15:58:06.472 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-02-11T15:58:06.696 INFO:teuthology.orchestra.run.smithi120.stdout:Building dependency tree... 2024-02-11T15:58:06.696 INFO:teuthology.orchestra.run.smithi120.stdout:Reading state information... 2024-02-11T15:58:06.923 INFO:teuthology.orchestra.run.smithi120.stdout:linux-image-generic-hwe-20.04 is already the newest version (5.15.0.94.104~20.04.50). 2024-02-11T15:58:06.923 INFO:teuthology.orchestra.run.smithi120.stdout:0 upgraded, 0 newly installed, 0 to remove and 287 not upgraded. 2024-02-11T15:58:06.925 DEBUG:teuthology.orchestra.run.smithi120:> dpkg -s linux-image-generic-hwe-20.04 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Package: linux-image-generic-hwe-20.04 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Status: install ok installed 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Priority: optional 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Section: kernel 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Installed-Size: 20 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Maintainer: Ubuntu Kernel Team 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Architecture: amd64 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Source: linux-meta-hwe-5.15 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Version: 5.15.0.94.104~20.04.50 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.2), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-94), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.2) 2024-02-11T15:58:06.942 INFO:teuthology.orchestra.run.smithi120.stdout:Depends: linux-image-5.15.0-94-generic, linux-modules-extra-5.15.0-94-generic, linux-firmware, intel-microcode, amd64-microcode 2024-02-11T15:58:06.943 INFO:teuthology.orchestra.run.smithi120.stdout:Recommends: thermald 2024-02-11T15:58:06.943 INFO:teuthology.orchestra.run.smithi120.stdout:Description: Generic Linux kernel image 2024-02-11T15:58:06.943 INFO:teuthology.orchestra.run.smithi120.stdout: This package will always depend on the latest generic kernel image 2024-02-11T15:58:06.943 INFO:teuthology.orchestra.run.smithi120.stdout: available. 2024-02-11T15:58:06.943 DEBUG:teuthology.orchestra.run.smithi120:> mktemp 2024-02-11T15:58:06.949 INFO:teuthology.orchestra.run.smithi120.stdout:/tmp/tmp.c3WCLUZu4t 2024-02-11T15:58:06.950 DEBUG:teuthology.orchestra.run.smithi120:> sudo cp /boot/grub/grub.cfg /tmp/tmp.c3WCLUZu4t 2024-02-11T15:58:07.005 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 0666 /tmp/tmp.c3WCLUZu4t 2024-02-11T15:58:07.044 DEBUG:teuthology.orchestra.remote:smithi120:/tmp/tmp.c3WCLUZu4t is 9KB 2024-02-11T15:58:07.058 DEBUG:teuthology.orchestra.run.smithi120:> rm -fr /tmp/tmp.c3WCLUZu4t 2024-02-11T15:58:07.064 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-02-11T15:58:07.120 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T15:58:07.120 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-02-11T15:58:07.120 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-02-11T15:58:07.160 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-94-generic 2024-02-11T15:58:07.160 DEBUG:teuthology.orchestra.run.smithi120:> sudo update-grub 2024-02-11T15:58:08.613 INFO:teuthology.orchestra.run.smithi120.stderr:Sourcing file `/etc/default/grub' 2024-02-11T15:58:08.623 INFO:teuthology.orchestra.run.smithi120.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-02-11T15:58:08.638 INFO:teuthology.orchestra.run.smithi120.stderr:Generating grub configuration file ... 2024-02-11T15:58:08.889 INFO:teuthology.orchestra.run.smithi120.stderr:Found linux image: /boot/vmlinuz-5.15.0-94-generic 2024-02-11T15:58:08.901 INFO:teuthology.orchestra.run.smithi120.stderr:Found initrd image: /boot/initrd.img-5.15.0-94-generic 2024-02-11T15:58:09.256 INFO:teuthology.orchestra.run.smithi120.stderr:Found linux image: /boot/vmlinuz-5.4.0-124-generic 2024-02-11T15:58:09.267 INFO:teuthology.orchestra.run.smithi120.stderr:Found initrd image: /boot/initrd.img-5.4.0-124-generic 2024-02-11T15:58:10.315 INFO:teuthology.orchestra.run.smithi120.stderr:done 2024-02-11T15:58:10.317 DEBUG:teuthology.orchestra.run.smithi120:> sudo shutdown -r now 2024-02-11T15:58:35.172 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-02-11T15:58:35.173 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-02-11T15:58:35.174 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T15:58:40.324 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-02-11T15:58:40.324 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-02-11T15:58:40.325 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T15:58:53.500 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.183 2024-02-11T15:58:58.876 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-02-11T15:59:02.505 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-02-11T15:59:02.506 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T15:59:05.564 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.183 2024-02-11T15:59:07.879 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-02-11T15:59:07.879 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T15:59:10.944 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-02-11T15:59:17.568 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-02-11T15:59:17.569 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T15:59:22.951 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-02-11T15:59:22.951 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T15:59:41.372 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.120 2024-02-11T15:59:49.384 DEBUG:teuthology.orchestra.run.smithi183:> true 2024-02-11T15:59:49.949 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-02-11T15:59:49.949 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-94-generic"... 2024-02-11T15:59:49.949 DEBUG:teuthology.orchestra.run.smithi183:> uname -r 2024-02-11T15:59:49.998 INFO:teuthology.orchestra.run.smithi183.stdout:5.15.0-94-generic 2024-02-11T15:59:49.998 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-94-generic vs 5.15.0-94-generic 2024-02-11T15:59:49.998 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-11T15:59:49.998 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-11T15:59:50.999 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-02-11T15:59:50.999 DEBUG:teuthology.orchestra.run.smithi183:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-11T15:59:51.069 INFO:teuthology.orchestra.run.smithi183.stdout:ttyS1 2024-02-11T15:59:51.102 DEBUG:teuthology.parallel:result is None 2024-02-11T15:59:56.373 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-02-11T15:59:56.374 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T15:59:56.643 DEBUG:teuthology.orchestra.run.smithi120:> true 2024-02-11T15:59:57.263 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-02-11T15:59:57.263 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-94-generic"... 2024-02-11T15:59:57.264 DEBUG:teuthology.orchestra.run.smithi120:> uname -r 2024-02-11T15:59:57.312 INFO:teuthology.orchestra.run.smithi120.stdout:5.15.0-94-generic 2024-02-11T15:59:57.312 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-94-generic vs 5.15.0-94-generic 2024-02-11T15:59:57.312 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-02-11T15:59:57.312 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-02-11T15:59:58.313 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-02-11T15:59:58.314 DEBUG:teuthology.orchestra.run.smithi120:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-02-11T15:59:58.374 INFO:teuthology.orchestra.run.smithi120.stdout:ttyS1 2024-02-11T15:59:58.416 DEBUG:teuthology.parallel:result is None 2024-02-11T15:59:58.417 INFO:teuthology.run_tasks:Running task internal.base... 2024-02-11T15:59:58.423 INFO:teuthology.task.internal:Creating test directory... 2024-02-11T15:59:58.423 DEBUG:teuthology.orchestra.run.smithi120:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-11T15:59:58.426 DEBUG:teuthology.orchestra.run.smithi183:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-02-11T15:59:58.433 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-02-11T15:59:58.439 INFO:teuthology.run_tasks:Running task internal.archive... 2024-02-11T15:59:58.448 INFO:teuthology.task.internal:Creating archive directory... 2024-02-11T15:59:58.449 DEBUG:teuthology.orchestra.run.smithi120:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-11T15:59:58.476 DEBUG:teuthology.orchestra.run.smithi183:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-02-11T15:59:58.580 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-02-11T15:59:58.586 INFO:teuthology.task.internal:Enabling coredump saving... 2024-02-11T15:59:58.586 DEBUG:teuthology.orchestra.run.smithi120:> 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-02-11T15:59:58.589 DEBUG:teuthology.orchestra.run.smithi183:> 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-02-11T15:59:58.606 INFO:teuthology.orchestra.run.smithi183.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-11T15:59:58.610 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-11T15:59:58.613 INFO:teuthology.orchestra.run.smithi183.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-11T15:59:58.617 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-02-11T15:59:58.619 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-02-11T15:59:58.626 INFO:teuthology.task.internal:Configuring sudo... 2024-02-11T15:59:58.626 DEBUG:teuthology.orchestra.run.smithi120:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-11T15:59:58.663 DEBUG:teuthology.orchestra.run.smithi183:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-02-11T15:59:58.678 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-02-11T15:59:58.687 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-02-11T15:59:58.688 DEBUG:teuthology.orchestra.run.smithi120:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-11T15:59:58.724 DEBUG:teuthology.orchestra.run.smithi183:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-02-11T15:59:58.731 DEBUG:teuthology.orchestra.run.smithi120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-11T15:59:58.777 DEBUG:teuthology.orchestra.run.smithi120:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-11T15:59:58.825 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T15:59:58.825 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-11T15:59:58.890 DEBUG:teuthology.orchestra.run.smithi183:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-02-11T15:59:58.897 DEBUG:teuthology.orchestra.run.smithi183:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-02-11T15:59:58.946 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T15:59:58.947 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-02-11T15:59:59.019 DEBUG:teuthology.orchestra.run.smithi120:> sudo service rsyslog restart 2024-02-11T15:59:59.021 DEBUG:teuthology.orchestra.run.smithi183:> sudo service rsyslog restart 2024-02-11T15:59:59.103 INFO:teuthology.run_tasks:Running task internal.timer... 2024-02-11T15:59:59.110 INFO:teuthology.task.internal:Starting timer... 2024-02-11T15:59:59.110 INFO:teuthology.run_tasks:Running task pcp... 2024-02-11T15:59:59.140 INFO:teuthology.run_tasks:Running task selinux... 2024-02-11T15:59:59.148 DEBUG:teuthology.task.selinux:Excluding smithi120: OS 'ubuntu' does not support SELinux 2024-02-11T15:59:59.148 DEBUG:teuthology.task.selinux:Excluding smithi183: OS 'ubuntu' does not support SELinux 2024-02-11T15:59:59.148 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-02-11T15:59:59.148 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-02-11T15:59:59.148 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-02-11T15:59:59.149 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-02-11T15:59:59.157 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-02-11T15:59:59.174 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-02-11T15:59:59.177 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi120.front.sepia.ceph.com,smithi183.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-02-11T16:05:24.215 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi120.front.sepia.ceph.com'), Remote(name='ubuntu@smithi183.front.sepia.ceph.com')] 2024-02-11T16:05:24.216 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-02-11T16:05:24.217 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi120.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T16:05:24.314 DEBUG:teuthology.orchestra.run.smithi120:> true 2024-02-11T16:05:24.433 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi120.front.sepia.ceph.com' 2024-02-11T16:05:24.434 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-02-11T16:05:24.434 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi183.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-02-11T16:05:24.525 DEBUG:teuthology.orchestra.run.smithi183:> true 2024-02-11T16:05:24.645 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi183.front.sepia.ceph.com' 2024-02-11T16:05:24.646 INFO:teuthology.run_tasks:Running task clock... 2024-02-11T16:05:24.658 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-02-11T16:05:24.658 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-11T16:05:24.658 DEBUG:teuthology.orchestra.run.smithi120:> 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-02-11T16:05:24.661 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-02-11T16:05:24.661 DEBUG:teuthology.orchestra.run.smithi183:> 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-02-11T16:05:24.692 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-02-11T16:05:24.692 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: Command line: ntpd -gq 2024-02-11T16:05:24.693 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: proto: precision = 0.082 usec (-23) 2024-02-11T16:05:24.693 INFO:teuthology.orchestra.run.smithi120.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-11T16:05:24.693 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-11T16:05:24.694 INFO:teuthology.orchestra.run.smithi120.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-11T16:05:24.695 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: restrict ::: KOD does nothing without LIMITED. 2024-02-11T16:05:24.695 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: Listen and drop on 0 v6wildcard [::]:123 2024-02-11T16:05:24.695 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-11T16:05:24.695 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: Listen normally on 2 lo 127.0.0.1:123 2024-02-11T16:05:24.695 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: Listen normally on 3 enp3s0f1 172.21.15.120:123 2024-02-11T16:05:24.695 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: Listen normally on 4 lo [::1]:123 2024-02-11T16:05:24.695 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:478f%5]:123 2024-02-11T16:05:24.695 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:24 ntpd[12736]: Listening on routing socket on fd #22 for interface updates 2024-02-11T16:05:24.719 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: ntpd 4.2.8p12@1.3728-o (1): Starting 2024-02-11T16:05:24.719 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: Command line: ntpd -gq 2024-02-11T16:05:24.720 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: proto: precision = 0.087 usec (-23) 2024-02-11T16:05:24.720 INFO:teuthology.orchestra.run.smithi183.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-11T16:05:24.721 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-02-11T16:05:24.721 INFO:teuthology.orchestra.run.smithi183.stderr:restrict ::: KOD does nothing without LIMITED. 2024-02-11T16:05:24.722 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: restrict ::: KOD does nothing without LIMITED. 2024-02-11T16:05:24.722 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: Listen and drop on 0 v6wildcard [::]:123 2024-02-11T16:05:24.722 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-02-11T16:05:24.723 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: Listen normally on 2 lo 127.0.0.1:123 2024-02-11T16:05:24.723 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: Listen normally on 3 enp3s0f1 172.21.15.183:123 2024-02-11T16:05:24.723 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: Listen normally on 4 lo [::1]:123 2024-02-11T16:05:24.723 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:8085%5]:123 2024-02-11T16:05:24.723 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:24 ntpd[12726]: Listening on routing socket on fd #22 for interface updates 2024-02-11T16:05:25.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:25 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:25.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:25 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:25.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:25 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:25.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:25 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:25.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:25 ntpd[12736]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:25.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:25 ntpd[12736]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:25.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:25 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:25.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:25 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:25.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:25 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:25.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:25 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:25.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:25 ntpd[12726]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:25.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:25 ntpd[12726]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:26.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:26 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:26.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:26 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:26.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:26 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:26.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:26 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:26.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:26 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:26.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:26 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:26.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:26 ntpd[12736]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:26.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:26 ntpd[12736]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:26.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:26 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:26.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:26 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:26.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:26 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:26.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:26 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:26.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:26 ntpd[12726]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:26.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:26 ntpd[12726]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:27.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:27.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:27 ntpd[12736]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:27.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:27 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:27.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:27 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:27.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:27 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:27.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:27 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:27.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:27 ntpd[12726]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:27.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:27 ntpd[12726]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:28.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:28 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:28.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:28 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:28.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:28 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:28.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:28 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:28.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:28 ntpd[12736]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:28.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:28 ntpd[12736]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:28.722 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:28.722 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:28.722 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:28.722 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:28.722 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:28.722 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:28.722 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:28.722 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:28.723 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:28.723 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:28.723 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:28.723 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:28.723 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:28.723 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:28 ntpd[12726]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:29.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:29.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:29.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:29.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:29.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:29.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:29.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:29.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:29.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:29.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:29.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:29.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:29 ntpd[12736]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:29.720 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:29 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:29.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:29 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:29.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:29 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:29.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:29 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:29.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:29 ntpd[12726]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:29.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:29 ntpd[12726]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:30.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:30 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:30.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:30 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:30.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:30 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:30.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:30 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:30.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:30 ntpd[12736]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:30.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:30 ntpd[12736]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:30.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:30 ntpd[12726]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:31.693 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:31.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:31.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:31.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:31.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:31.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:31.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:31.694 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:31.694 INFO:teuthology.orchestra.run.smithi120.stdout:11 Feb 16:05:31 ntpd[12736]: ntpd: time slew +0.000096 s 2024-02-11T16:05:31.694 INFO:teuthology.orchestra.run.smithi120.stdout:ntpd: time slew +0.000096s 2024-02-11T16:05:31.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-11T16:05:31.695 INFO:teuthology.orchestra.run.smithi120.stderr:11 Feb 16:05:31 ntpd[12736]: can't open /var/log/ntpstats/loopstats.20240211: Permission denied 2024-02-11T16:05:31.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:31 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:31.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:31 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:31.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:31 ntpd[12726]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-02-11T16:05:31.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:31 ntpd[12726]: can't open /var/log/ntpstats/rawstats.20240211: Permission denied 2024-02-11T16:05:31.721 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:31 ntpd[12726]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-02-11T16:05:31.722 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:31 ntpd[12726]: can't open /var/log/ntpstats/peerstats.20240211: Permission denied 2024-02-11T16:05:31.722 INFO:teuthology.orchestra.run.smithi183.stdout:11 Feb 16:05:31 ntpd[12726]: ntpd: time slew +0.002706 s 2024-02-11T16:05:31.722 INFO:teuthology.orchestra.run.smithi183.stdout:ntpd: time slew +0.002706s 2024-02-11T16:05:31.723 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:31 ntpd[12726]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-02-11T16:05:31.723 INFO:teuthology.orchestra.run.smithi183.stderr:11 Feb 16:05:31 ntpd[12726]: can't open /var/log/ntpstats/loopstats.20240211: Permission denied 2024-02-11T16:05:31.744 INFO:teuthology.orchestra.run.smithi120.stdout: remote refid st t when poll reach delay offset jitter 2024-02-11T16:05:31.745 INFO:teuthology.orchestra.run.smithi120.stdout:============================================================================== 2024-02-11T16:05:31.745 INFO:teuthology.orchestra.run.smithi120.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-11T16:05:31.745 INFO:teuthology.orchestra.run.smithi120.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-11T16:05:31.745 INFO:teuthology.orchestra.run.smithi120.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-11T16:05:31.745 INFO:teuthology.orchestra.run.smithi120.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-11T16:05:31.789 INFO:teuthology.orchestra.run.smithi183.stdout: remote refid st t when poll reach delay offset jitter 2024-02-11T16:05:31.789 INFO:teuthology.orchestra.run.smithi183.stdout:============================================================================== 2024-02-11T16:05:31.789 INFO:teuthology.orchestra.run.smithi183.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-11T16:05:31.789 INFO:teuthology.orchestra.run.smithi183.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-11T16:05:31.789 INFO:teuthology.orchestra.run.smithi183.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-11T16:05:31.789 INFO:teuthology.orchestra.run.smithi183.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 0.000 0.000 2024-02-11T16:05:31.790 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-02-11T16:05:31.803 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-02-11T16:05:31.803 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:05:31.803 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-02-11T16:05:31.811 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-02-11T16:05:31.811 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_1 2024-02-11T16:05:31.861 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-11T16:05:31.861 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-11T16:05:31.861 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 489 Links: 1 2024-02-11T16:05:31.861 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-11T16:05:31.862 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-02-11 16:04:00.695999227 +0000 2024-02-11T16:05:31.862 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-02-11 16:04:00.444005038 +0000 2024-02-11T16:05:31.862 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-02-11 16:04:00.444005038 +0000 2024-02-11T16:05:31.862 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-02-11T16:05:31.862 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-11T16:05:31.915 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-02-11T16:05:31.915 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-02-11T16:05:31.915 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000408334 s, 1.3 MB/s 2024-02-11T16:05:31.916 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-11T16:05:31.966 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_2 2024-02-11T16:05:32.017 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-11T16:05:32.017 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-11T16:05:32.017 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 498 Links: 1 2024-02-11T16:05:32.017 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-11T16:05:32.017 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-02-11 16:04:01.179988066 +0000 2024-02-11T16:05:32.017 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-02-11 16:04:00.915994154 +0000 2024-02-11T16:05:32.017 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-02-11 16:04:00.915994154 +0000 2024-02-11T16:05:32.017 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-02-11T16:05:32.018 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-11T16:05:32.072 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-02-11T16:05:32.072 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-02-11T16:05:32.072 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000426764 s, 1.2 MB/s 2024-02-11T16:05:32.073 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-11T16:05:32.123 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_3 2024-02-11T16:05:32.173 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-11T16:05:32.174 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-11T16:05:32.174 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 503 Links: 1 2024-02-11T16:05:32.174 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-11T16:05:32.174 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-02-11 16:04:01.655977089 +0000 2024-02-11T16:05:32.174 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-02-11 16:04:01.403982899 +0000 2024-02-11T16:05:32.175 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-02-11 16:04:01.403982899 +0000 2024-02-11T16:05:32.175 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-02-11T16:05:32.175 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-11T16:05:32.232 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-02-11T16:05:32.233 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-02-11T16:05:32.233 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000427545 s, 1.2 MB/s 2024-02-11T16:05:32.234 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-11T16:05:32.289 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/vg_nvme/lv_4 2024-02-11T16:05:32.338 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-11T16:05:32.338 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-11T16:05:32.338 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 509 Links: 1 2024-02-11T16:05:32.338 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-11T16:05:32.338 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-02-11 16:04:02.107966664 +0000 2024-02-11T16:05:32.338 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-02-11 16:04:01.851972568 +0000 2024-02-11T16:05:32.339 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-02-11 16:04:01.851972568 +0000 2024-02-11T16:05:32.339 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-02-11T16:05:32.339 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-11T16:05:32.396 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-02-11T16:05:32.397 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-02-11T16:05:32.397 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000367284 s, 1.4 MB/s 2024-02-11T16:05:32.398 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-11T16:05:32.451 DEBUG:teuthology.orchestra.run.smithi120:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-02-11T16:05:32.573 INFO:teuthology.orchestra.run.smithi120.stdout:loop 2024-02-11T16:05:32.575 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_1... 2024-02-11T16:05:32.575 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-02-11T16:05:32.594 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-02-11T16:05:32.618 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_11 2024-02-11T16:05:32.638 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_2... 2024-02-11T16:05:32.639 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-02-11T16:05:32.707 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-02-11T16:05:32.735 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_21 2024-02-11T16:05:32.759 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_3... 2024-02-11T16:05:32.759 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-02-11T16:05:32.825 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-02-11T16:05:32.848 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_31 2024-02-11T16:05:32.874 INFO:tasks.nvme_loop:Connecting nvme_loop smithi120:/dev/vg_nvme/lv_4... 2024-02-11T16:05:32.874 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-02-11T16:05:32.949 INFO:teuthology.orchestra.run.smithi120.stdout:1 2024-02-11T16:05:32.974 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/vg_nvme/lv_41 2024-02-11T16:05:33.000 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:05:33.000 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-02-11T16:05:33.053 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme list 2024-02-11T16:05:33.109 INFO:teuthology.orchestra.run.smithi120.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-11T16:05:33.109 INFO:teuthology.orchestra.run.smithi120.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-11T16:05:33.109 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/nvme0n1 PHFT620400XV400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101F0 2024-02-11T16:05:33.109 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/nvme1n1 840d61aa891b5a963075 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-11T16:05:33.109 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/nvme2n1 b5999e028d2c595e5324 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-11T16:05:33.109 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/nvme3n1 2c950a43a98641cea6fa Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-11T16:05:33.109 INFO:teuthology.orchestra.run.smithi120.stdout:/dev/nvme4n1 e73c7c3d0afc4b789746 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-11T16:05:33.110 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-11T16:05:33.110 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:05:33.111 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/scratch_devs 2024-02-11T16:05:33.169 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:05:33.169 DEBUG:teuthology.orchestra.run.smithi183:> dd if=/scratch_devs of=/dev/stdout 2024-02-11T16:05:33.177 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-02-11T16:05:33.177 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/vg_nvme/lv_1 2024-02-11T16:05:33.226 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-02-11T16:05:33.227 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-11T16:05:33.227 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 492 Links: 1 2024-02-11T16:05:33.227 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-11T16:05:33.227 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-02-11 16:04:01.200126384 +0000 2024-02-11T16:05:33.227 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-02-11 16:04:00.960131911 +0000 2024-02-11T16:05:33.227 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-02-11 16:04:00.960131911 +0000 2024-02-11T16:05:33.227 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: - 2024-02-11T16:05:33.227 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-02-11T16:05:33.281 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-02-11T16:05:33.282 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-02-11T16:05:33.282 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000447142 s, 1.1 MB/s 2024-02-11T16:05:33.283 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-02-11T16:05:33.332 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/vg_nvme/lv_2 2024-02-11T16:05:33.382 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-02-11T16:05:33.382 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-11T16:05:33.382 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 495 Links: 1 2024-02-11T16:05:33.382 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-11T16:05:33.382 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-02-11 16:04:01.668115606 +0000 2024-02-11T16:05:33.382 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-02-11 16:04:01.412121502 +0000 2024-02-11T16:05:33.382 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-02-11 16:04:01.412121502 +0000 2024-02-11T16:05:33.382 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: - 2024-02-11T16:05:33.383 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-02-11T16:05:33.436 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-02-11T16:05:33.436 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-02-11T16:05:33.436 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000432959 s, 1.2 MB/s 2024-02-11T16:05:33.437 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-02-11T16:05:33.488 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/vg_nvme/lv_3 2024-02-11T16:05:33.538 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-02-11T16:05:33.538 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-11T16:05:33.538 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 502 Links: 1 2024-02-11T16:05:33.538 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-11T16:05:33.539 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-02-11 16:04:02.132104920 +0000 2024-02-11T16:05:33.539 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-02-11 16:04:01.896110354 +0000 2024-02-11T16:05:33.539 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-02-11 16:04:01.896110354 +0000 2024-02-11T16:05:33.539 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: - 2024-02-11T16:05:33.539 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-02-11T16:05:33.594 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-02-11T16:05:33.594 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-02-11T16:05:33.594 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000423088 s, 1.2 MB/s 2024-02-11T16:05:33.595 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-02-11T16:05:33.647 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/vg_nvme/lv_4 2024-02-11T16:05:33.698 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-02-11T16:05:33.698 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-02-11T16:05:33.698 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 508 Links: 1 2024-02-11T16:05:33.698 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-02-11T16:05:33.698 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-02-11 16:04:02.616093773 +0000 2024-02-11T16:05:33.698 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-02-11 16:04:02.364099576 +0000 2024-02-11T16:05:33.698 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-02-11 16:04:02.364099576 +0000 2024-02-11T16:05:33.699 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: - 2024-02-11T16:05:33.699 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-02-11T16:05:33.752 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-02-11T16:05:33.753 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-02-11T16:05:33.753 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000360352 s, 1.4 MB/s 2024-02-11T16:05:33.754 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-02-11T16:05:33.804 DEBUG:teuthology.orchestra.run.smithi183:> sudo modprobe nvme_loop && sudo mkdir -p /sys/kernel/config/nvmet/hosts/hostnqn && sudo mkdir -p /sys/kernel/config/nvmet/ports/1 && echo loop | sudo tee /sys/kernel/config/nvmet/ports/1/addr_trtype 2024-02-11T16:05:34.210 INFO:teuthology.orchestra.run.smithi183.stdout:loop 2024-02-11T16:05:34.211 INFO:tasks.nvme_loop:Connecting nvme_loop smithi183:/dev/vg_nvme/lv_1... 2024-02-11T16:05:34.212 DEBUG:teuthology.orchestra.run.smithi183:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1 && echo -n /dev/vg_nvme/lv_1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_1/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_1 /sys/kernel/config/nvmet/ports/1/subsystems/lv_1 && sudo nvme connect -t loop -n lv_1 -q hostnqn 2024-02-11T16:05:34.234 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-02-11T16:05:34.259 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/vg_nvme/lv_11 2024-02-11T16:05:34.282 INFO:tasks.nvme_loop:Connecting nvme_loop smithi183:/dev/vg_nvme/lv_2... 2024-02-11T16:05:34.282 DEBUG:teuthology.orchestra.run.smithi183:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1 && echo -n /dev/vg_nvme/lv_2 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_2/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_2 /sys/kernel/config/nvmet/ports/1/subsystems/lv_2 && sudo nvme connect -t loop -n lv_2 -q hostnqn 2024-02-11T16:05:34.349 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-02-11T16:05:34.372 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/vg_nvme/lv_21 2024-02-11T16:05:34.395 INFO:tasks.nvme_loop:Connecting nvme_loop smithi183:/dev/vg_nvme/lv_3... 2024-02-11T16:05:34.395 DEBUG:teuthology.orchestra.run.smithi183:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1 && echo -n /dev/vg_nvme/lv_3 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_3/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_3 /sys/kernel/config/nvmet/ports/1/subsystems/lv_3 && sudo nvme connect -t loop -n lv_3 -q hostnqn 2024-02-11T16:05:34.461 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-02-11T16:05:34.486 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/vg_nvme/lv_31 2024-02-11T16:05:34.510 INFO:tasks.nvme_loop:Connecting nvme_loop smithi183:/dev/vg_nvme/lv_4... 2024-02-11T16:05:34.510 DEBUG:teuthology.orchestra.run.smithi183:> sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4 && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/attr_allow_any_host && sudo mkdir -p /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1 && echo -n /dev/vg_nvme/lv_4 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/device_path && echo 1 | sudo tee /sys/kernel/config/nvmet/subsystems/lv_4/namespaces/1/enable && sudo ln -s /sys/kernel/config/nvmet/subsystems/lv_4 /sys/kernel/config/nvmet/ports/1/subsystems/lv_4 && sudo nvme connect -t loop -n lv_4 -q hostnqn 2024-02-11T16:05:34.573 INFO:teuthology.orchestra.run.smithi183.stdout:1 2024-02-11T16:05:34.599 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/vg_nvme/lv_41 2024-02-11T16:05:34.622 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:05:34.622 DEBUG:teuthology.orchestra.run.smithi183:> dd if=/scratch_devs of=/dev/stdout 2024-02-11T16:05:34.673 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme list 2024-02-11T16:05:34.728 INFO:teuthology.orchestra.run.smithi183.stdout:Node SN Model Namespace Usage Format FW Rev 2024-02-11T16:05:34.728 INFO:teuthology.orchestra.run.smithi183.stdout:---------------- -------------------- ---------------------------------------- --------- -------------------------- ---------------- -------- 2024-02-11T16:05:34.728 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/nvme0n1 PHFT620500QJ400BGN INTEL SSDPEDMD400G4 1 400.09 GB / 400.09 GB 512 B + 0 B 8DV101H0 2024-02-11T16:05:34.728 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/nvme1n1 5be0187fc736ac2dd723 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-11T16:05:34.728 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/nvme2n1 283bb742646a7eb4da2e Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-11T16:05:34.728 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/nvme3n1 230992e272c9add06f78 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-11T16:05:34.728 INFO:teuthology.orchestra.run.smithi183.stdout:/dev/nvme4n1 c9b300b5f454d6c643c1 Linux 1 96.00 GB / 96.00 GB 512 B + 0 B 5.15.0-9 2024-02-11T16:05:34.729 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-11T16:05:34.729 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:05:34.729 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/scratch_devs 2024-02-11T16:05:34.786 INFO:teuthology.run_tasks:Running task cephadm... 2024-02-11T16:05:34.863 INFO:tasks.cephadm:Config: {'roleless': True, 'conf': {'mgr': {'debug mgr': 20, 'debug ms': 1}, 'mon': {'debug mon': 20, 'debug ms': 1, 'debug paxos': 20}, 'osd': {'debug ms': 1, 'debug osd': 20, 'osd shutdown pgref assert': True}}, 'flavor': 'default', 'log-ignorelist': ['\\(MDS_ALL_DOWN\\)', '\\(MDS_UP_LESS_THAN_MAX\\)'], 'sha1': '5db25abe00e218b6920215c0bef70af7e47c7152'} 2024-02-11T16:05:34.863 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 2024-02-11T16:05:34.864 INFO:tasks.cephadm:Cluster fsid is 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:05:34.864 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-02-11T16:05:34.864 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-02-11T16:05:34.864 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi120': '172.21.15.120', 'mon.smithi183': '172.21.15.183'} 2024-02-11T16:05:34.865 INFO:tasks.cephadm:Normalizing hostnames... 2024-02-11T16:05:34.865 DEBUG:teuthology.orchestra.run.smithi120:> sudo hostname $(hostname -s) 2024-02-11T16:05:34.882 DEBUG:teuthology.orchestra.run.smithi183:> sudo hostname $(hostname -s) 2024-02-11T16:05:34.898 INFO:tasks.cephadm:Downloading cephadm (repo https://github.com/ceph/ceph-ci.git ref 5db25abe00e218b6920215c0bef70af7e47c7152)... 2024-02-11T16:05:34.899 DEBUG:teuthology.orchestra.run.smithi120:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/5db25abe00e218b6920215c0bef70af7e47c7152/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-11T16:05:35.197 INFO:teuthology.orchestra.run.smithi120.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 11 16:05 /home/ubuntu/cephtest/cephadm 2024-02-11T16:05:35.197 DEBUG:teuthology.orchestra.run.smithi183:> curl --silent https://raw.githubusercontent.com/ceph/ceph-ci/5db25abe00e218b6920215c0bef70af7e47c7152/src/cephadm/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-02-11T16:05:35.444 INFO:teuthology.orchestra.run.smithi183.stdout:-rw-rw-r-- 1 ubuntu ubuntu 355729 Feb 11 16:05 /home/ubuntu/cephtest/cephadm 2024-02-11T16:05:35.445 DEBUG:teuthology.orchestra.run.smithi120:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-11T16:05:35.454 DEBUG:teuthology.orchestra.run.smithi183:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-02-11T16:05:35.469 DEBUG:teuthology.orchestra.run.smithi120:> sudo mkdir -p /etc/ceph 2024-02-11T16:05:35.514 DEBUG:teuthology.orchestra.run.smithi183:> sudo mkdir -p /etc/ceph 2024-02-11T16:05:35.530 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 777 /etc/ceph 2024-02-11T16:05:35.573 DEBUG:teuthology.orchestra.run.smithi183:> sudo chmod 777 /etc/ceph 2024-02-11T16:05:35.589 INFO:tasks.cephadm:Writing seed config... 2024-02-11T16:05:35.590 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-02-11T16:05:35.590 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-02-11T16:05:35.590 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-02-11T16:05:35.591 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-02-11T16:05:35.591 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-02-11T16:05:35.591 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-02-11T16:05:35.591 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-02-11T16:05:35.591 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-02-11T16:05:35.591 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:05:35.591 DEBUG:teuthology.orchestra.run.smithi120:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-02-11T16:05:35.624 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false 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 ruleset-failure-domain=osd 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 = 639b0136-c8f7-11ee-95b9-87774f69a715 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 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 [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-02-11T16:05:35.624 DEBUG:teuthology.orchestra.run.smithi120:mon.smithi120> sudo journalctl -f -n 0 -u ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi120.service 2024-02-11T16:05:35.668 INFO:tasks.cephadm:Bootstrapping... 2024-02-11T16:05:35.668 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 -v bootstrap --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 --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-ip 172.21.15.120 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-02-11T16:05:35.972 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-02-11T16:05:36.058 INFO:teuthology.orchestra.run.smithi120.stderr:-------------------------------------------------------------------------------- 2024-02-11T16:05:36.059 INFO:teuthology.orchestra.run.smithi120.stderr:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152', '-v', 'bootstrap', '--fsid', '639b0136-c8f7-11ee-95b9-87774f69a715', '--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-ip', '172.21.15.120', '--skip-admin-label'] 2024-02-11T16:05:36.059 INFO:teuthology.orchestra.run.smithi120.stderr:Verifying podman|docker is present... 2024-02-11T16:05:36.059 INFO:teuthology.orchestra.run.smithi120.stderr:Verifying lvm2 is present... 2024-02-11T16:05:36.059 INFO:teuthology.orchestra.run.smithi120.stderr:Verifying time synchronization is in place... 2024-02-11T16:05:36.064 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-11T16:05:36.072 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: inactive 2024-02-11T16:05:36.079 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-11T16:05:36.086 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: inactive 2024-02-11T16:05:36.092 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: masked 2024-02-11T16:05:36.097 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: inactive 2024-02-11T16:05:36.105 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-11T16:05:36.112 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: inactive 2024-02-11T16:05:36.119 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: enabled 2024-02-11T16:05:36.125 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: active 2024-02-11T16:05:36.126 INFO:teuthology.orchestra.run.smithi120.stderr:Unit ntp.service is enabled and running 2024-02-11T16:05:36.126 INFO:teuthology.orchestra.run.smithi120.stderr:Repeating the final host check... 2024-02-11T16:05:36.126 INFO:teuthology.orchestra.run.smithi120.stderr:docker (/usr/bin/docker) is present 2024-02-11T16:05:36.126 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl is present 2024-02-11T16:05:36.126 INFO:teuthology.orchestra.run.smithi120.stderr:lvcreate is present 2024-02-11T16:05:36.133 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Failed to get unit file state for chrony.service: No such file or directory 2024-02-11T16:05:36.140 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: inactive 2024-02-11T16:05:36.147 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Failed to get unit file state for chronyd.service: No such file or directory 2024-02-11T16:05:36.153 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: inactive 2024-02-11T16:05:36.160 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: masked 2024-02-11T16:05:36.166 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: inactive 2024-02-11T16:05:36.173 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Failed to get unit file state for ntpd.service: No such file or directory 2024-02-11T16:05:36.181 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: inactive 2024-02-11T16:05:36.188 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: enabled 2024-02-11T16:05:36.195 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: active 2024-02-11T16:05:36.196 INFO:teuthology.orchestra.run.smithi120.stderr:Unit ntp.service is enabled and running 2024-02-11T16:05:36.196 INFO:teuthology.orchestra.run.smithi120.stderr:Host looks OK 2024-02-11T16:05:36.196 INFO:teuthology.orchestra.run.smithi120.stderr:Cluster fsid: 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:05:36.197 INFO:teuthology.orchestra.run.smithi120.stderr:Acquiring lock 139738558941600 on /run/cephadm/639b0136-c8f7-11ee-95b9-87774f69a715.lock 2024-02-11T16:05:36.197 INFO:teuthology.orchestra.run.smithi120.stderr:Lock 139738558941600 acquired on /run/cephadm/639b0136-c8f7-11ee-95b9-87774f69a715.lock 2024-02-11T16:05:36.197 INFO:teuthology.orchestra.run.smithi120.stderr:Verifying IP 172.21.15.120 port 3300 ... 2024-02-11T16:05:36.198 INFO:teuthology.orchestra.run.smithi120.stderr:Verifying IP 172.21.15.120 port 6789 ... 2024-02-11T16:05:36.198 INFO:teuthology.orchestra.run.smithi120.stderr:Base mon IP(s) is [172.21.15.120:3300, 172.21.15.120:6789], mon addrv is [v2:172.21.15.120:3300,v1:172.21.15.120:6789] 2024-02-11T16:05:36.202 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: default via 172.21.15.254 dev enp3s0f1 2024-02-11T16:05:36.202 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.120 metric 100 2024-02-11T16:05:36.203 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-11T16:05:36.203 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.120 2024-02-11T16:05:36.203 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.120 metric 100 2024-02-11T16:05:36.206 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: ::1 dev lo proto kernel metric 256 pref medium 2024-02-11T16:05:36.206 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-02-11T16:05:36.206 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1678sec pref medium 2024-02-11T16:05:36.210 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-02-11T16:05:36.210 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: inet6 ::1/128 scope host 2024-02-11T16:05:36.210 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2024-02-11T16:05:36.211 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-02-11T16:05:36.211 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: inet6 fe80::ec4:7aff:fe8f:478f/64 scope link 2024-02-11T16:05:36.211 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/sbin/ip: valid_lft forever preferred_lft forever 2024-02-11T16:05:36.212 INFO:teuthology.orchestra.run.smithi120.stderr:Mon IP `172.21.15.120` is in CIDR network `172.21.0.0/20` 2024-02-11T16:05:36.212 INFO:teuthology.orchestra.run.smithi120.stderr:Mon IP `172.21.15.120` is in CIDR network `172.21.0.0/20` 2024-02-11T16:05:36.212 INFO:teuthology.orchestra.run.smithi120.stderr:Mon IP `172.21.15.120` is in CIDR network `172.21.15.254/32` 2024-02-11T16:05:36.212 INFO:teuthology.orchestra.run.smithi120.stderr:Mon IP `172.21.15.120` is in CIDR network `172.21.15.254/32` 2024-02-11T16:05:36.212 INFO:teuthology.orchestra.run.smithi120.stderr:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.15.254/32', '172.21.15.254/32'] 2024-02-11T16:05:36.213 INFO:teuthology.orchestra.run.smithi120.stderr:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-02-11T16:05:36.213 INFO:teuthology.orchestra.run.smithi120.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152... 2024-02-11T16:05:36.594 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: 5db25abe00e218b6920215c0bef70af7e47c7152: Pulling from ceph-ci/ceph 2024-02-11T16:05:36.597 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: 58df4e03ba06: Pulling fs layer 2024-02-11T16:05:36.597 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: 4614e41239e7: Pulling fs layer 2024-02-11T16:05:44.135 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: 58df4e03ba06: Verifying Checksum 2024-02-11T16:05:44.135 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: 58df4e03ba06: Download complete 2024-02-11T16:05:47.794 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: 58df4e03ba06: Pull complete 2024-02-11T16:05:55.815 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: 4614e41239e7: Verifying Checksum 2024-02-11T16:05:55.815 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: 4614e41239e7: Download complete 2024-02-11T16:06:08.302 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: 4614e41239e7: Pull complete 2024-02-11T16:06:08.439 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: Digest: sha256:a502f12df31fe0d2d8e9eeec9fe2e9a18b9362c10004847eb4d4911eecc1bc78 2024-02-11T16:06:08.486 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: Status: Downloaded newer image for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 2024-02-11T16:06:08.530 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/docker: quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 2024-02-11T16:06:19.510 INFO:teuthology.orchestra.run.smithi120.stderr:ceph: ceph version 16.2.14-530-g5db25abe (5db25abe00e218b6920215c0bef70af7e47c7152) pacific (stable) 2024-02-11T16:06:20.096 INFO:teuthology.orchestra.run.smithi120.stderr:Ceph version: ceph version 16.2.14-530-g5db25abe (5db25abe00e218b6920215c0bef70af7e47c7152) pacific (stable) 2024-02-11T16:06:20.096 INFO:teuthology.orchestra.run.smithi120.stderr:Extracting ceph user uid/gid from container image... 2024-02-11T16:06:20.872 INFO:teuthology.orchestra.run.smithi120.stderr:stat: 167 167 2024-02-11T16:06:21.483 INFO:teuthology.orchestra.run.smithi120.stderr:Creating initial keys... 2024-02-11T16:06:22.241 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-authtool: AQB+8MhlZYFTDhAA9xpECC7+CZ4hV3Gx4YnBYw== 2024-02-11T16:06:23.652 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-authtool: AQB/8MhlrRnYJhAA25uhxUbayVqKy44rnse0dQ== 2024-02-11T16:06:25.000 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-authtool: AQCA8MhlkbOQOxAAdzpJ3UgbSK+oVCM8XXz4sA== 2024-02-11T16:06:25.552 INFO:teuthology.orchestra.run.smithi120.stderr:Creating initial monmap... 2024-02-11T16:06:26.353 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-11T16:06:26.354 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: set fsid to 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:06:26.354 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/monmaptool: /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-11T16:06:26.964 INFO:teuthology.orchestra.run.smithi120.stderr:monmaptool for smithi120 [v2:172.21.15.120:3300,v1:172.21.15.120:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-02-11T16:06:26.964 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/monmaptool: set fsid to 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:06:26.965 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-02-11T16:06:26.965 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:06:26.965 INFO:teuthology.orchestra.run.smithi120.stderr:Creating mon... 2024-02-11T16:06:27.715 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.708+0000 7f315f74c880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-11T16:06:27.716 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 1 imported monmap: 2024-02-11T16:06:27.716 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: epoch 0 2024-02-11T16:06:27.716 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: fsid 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:06:27.717 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: last_changed 2024-02-11T16:06:26.352525+0000 2024-02-11T16:06:27.717 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: created 2024-02-11T16:06:26.352525+0000 2024-02-11T16:06:27.717 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: min_mon_release 0 (unknown) 2024-02-11T16:06:27.717 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: election_strategy: 1 2024-02-11T16:06:27.717 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 0: [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon.smithi120 2024-02-11T16:06:27.717 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 0 /usr/bin/ceph-mon: set fsid to 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: RocksDB version: 6.8.1 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Compile date Feb 8 2024 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: DB SUMMARY 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi120/store.db dir, Total Num: 0, files: 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi120/store.db: 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.error_if_exists: 0 2024-02-11T16:06:27.719 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.create_if_missing: 1 2024-02-11T16:06:27.720 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.paranoid_checks: 1 2024-02-11T16:06:27.720 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.env: 0x55cf693c3080 2024-02-11T16:06:27.720 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.fs: Posix File System 2024-02-11T16:06:27.720 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.info_log: 0x55cf69fe9300 2024-02-11T16:06:27.721 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-11T16:06:27.721 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.statistics: (nil) 2024-02-11T16:06:27.723 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.use_fsync: 0 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_log_file_size: 0 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.allow_fallocate: 1 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.use_direct_reads: 0 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.db_log_dir: 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi120/store.db 2024-02-11T16:06:27.724 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_subcompactions: 1 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_background_flushes: -1 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.write_buffer_manager: 0x55cf69fef950 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-11T16:06:27.725 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.unordered_write: 0 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.row_cache: None 2024-02-11T16:06:27.726 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.wal_filter: None 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.preserve_deletes: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.two_write_queues: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.atomic_flush: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.log_readahead_size: 0 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-11T16:06:27.747 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_background_jobs: 2 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_background_compactions: -1 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.max_open_files: -1 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-11T16:06:27.748 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Compression algorithms supported: 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: kZSTD supported: 0 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: kXpressCompression supported: 0 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: kLZ4Compression supported: 1 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: kBZip2Compression supported: 0 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: kZlibCompression supported: 1 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: kSnappyCompression supported: 1 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.712+0000 7f315f74c880 4 rocksdb: [db_impl/db_impl_open.cc:273] Creating manifest 1 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi120/store.db/MANIFEST-000001 2024-02-11T16:06:27.749 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.merge_operator: 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_filter: None 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55cf69efdd18) 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks: 1 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: pin_top_level_index_and_filter: 1 2024-02-11T16:06:27.750 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: index_type: 0 2024-02-11T16:06:27.751 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: data_block_index_type: 0 2024-02-11T16:06:27.751 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: index_shortening: 1 2024-02-11T16:06:27.751 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: data_block_hash_table_util_ratio: 0.750000 2024-02-11T16:06:27.751 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: hash_index_allow_collision: 1 2024-02-11T16:06:27.751 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: checksum: 1 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: no_block_cache: 0 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: block_cache: 0x55cf69f34d10 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: block_cache_name: BinnedLRUCache 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: block_cache_options: 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: capacity : 536870912 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: num_shard_bits : 4 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: strict_capacity_limit : 0 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: high_pri_pool_ratio: 0.000 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: block_cache_compressed: (nil) 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: persistent_cache: (nil) 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: block_size: 4096 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: block_size_deviation: 10 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: block_restart_interval: 16 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: index_block_restart_interval: 1 2024-02-11T16:06:27.752 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: metadata_block_size: 4096 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: partition_filters: 0 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: use_delta_encoding: 1 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: whole_key_filtering: 1 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: verify_compression: 0 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: read_amp_bytes_per_bit: 0 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: format_version: 2 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: enable_index_compression: 1 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: block_align: 0 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compression: NoCompression 2024-02-11T16:06:27.753 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.num_levels: 7 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-11T16:06:27.754 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-11T16:06:27.755 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-11T16:06:27.756 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.table_properties_collectors: 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.inplace_update_support: 0 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.bloom_locality: 0 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.max_successive_merges: 0 2024-02-11T16:06:27.757 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.ttl: 2592000 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi120/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-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f315f74c880 4 rocksdb: DB pointer 0x55cf69ffd800 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f31485bf700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.716+0000 7f31485bf700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ** DB Stats ** 2024-02-11T16:06:27.758 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.759 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.760 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ** Compaction Stats [default] ** 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Uptime(secs): 0.0 total, 0.0 interval 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Flush(GB): cumulative 0.000, interval 0.000 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: AddFile(Total Files): cumulative 0, interval 0 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: AddFile(L0 Files): cumulative 0, interval 0 2024-02-11T16:06:27.761 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: AddFile(Keys): cumulative 0, interval 0 2024-02-11T16:06:27.762 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:06:27.762 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:06:27.762 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 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-02-11T16:06:27.762 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.762 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: ** File Read Latency Histogram By Level [default] ** 2024-02-11T16:06:27.762 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: 2024-02-11T16:06:27.762 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.720+0000 7f315f74c880 4 rocksdb: [db_impl/db_impl.cc:397] Shutdown: canceling all background work 2024-02-11T16:06:27.762 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.720+0000 7f315f74c880 4 rocksdb: [db_impl/db_impl.cc:573] Shutdown complete 2024-02-11T16:06:27.762 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph-mon: debug 2024-02-11T16:06:27.720+0000 7f315f74c880 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi120 for mon.smithi120 2024-02-11T16:06:28.361 INFO:teuthology.orchestra.run.smithi120.stderr:create mon.smithi120 on 2024-02-11T16:06:28.607 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-02-11T16:06:28.823 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Created symlink /etc/systemd/system/multi-user.target.wants/ceph-639b0136-c8f7-11ee-95b9-87774f69a715.target -> /etc/systemd/system/ceph-639b0136-c8f7-11ee-95b9-87774f69a715.target. 2024-02-11T16:06:28.823 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Created symlink /etc/systemd/system/ceph.target.wants/ceph-639b0136-c8f7-11ee-95b9-87774f69a715.target -> /etc/systemd/system/ceph-639b0136-c8f7-11ee-95b9-87774f69a715.target. 2024-02-11T16:06:29.266 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Failed to reset failed state of unit ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi120.service: Unit ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi120.service not loaded. 2024-02-11T16:06:29.274 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Created symlink /etc/systemd/system/ceph-639b0136-c8f7-11ee-95b9-87774f69a715.target.wants/ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi120.service -> /etc/systemd/system/ceph-639b0136-c8f7-11ee-95b9-87774f69a715@.service. 2024-02-11T16:06:29.492 INFO:teuthology.orchestra.run.smithi120.stderr:firewalld does not appear to be present 2024-02-11T16:06:29.492 INFO:teuthology.orchestra.run.smithi120.stderr:Not possible to enable service . firewalld.service is not available 2024-02-11T16:06:29.492 INFO:teuthology.orchestra.run.smithi120.stderr:Waiting for mon to start... 2024-02-11T16:06:29.492 INFO:teuthology.orchestra.run.smithi120.stderr:Waiting for mon... 2024-02-11T16:06:31.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:30 smithi120 bash[13698]: cluster 2024-02-11T16:06:30.947533+0000 mon.smithi120 (mon.0) 1 : cluster [INF] mon.smithi120 is new leader, mons smithi120 in quorum (ranks 0) 2024-02-11T16:06:31.177 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: cluster: 2024-02-11T16:06:31.177 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: id: 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:06:31.178 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: health: HEALTH_OK 2024-02-11T16:06:31.178 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:31.178 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: services: 2024-02-11T16:06:31.178 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mon: 1 daemons, quorum smithi120 (age 0.204088s) 2024-02-11T16:06:31.178 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mgr: no daemons active 2024-02-11T16:06:31.179 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: osd: 0 osds: 0 up, 0 in 2024-02-11T16:06:31.179 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:31.179 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: data: 2024-02-11T16:06:31.179 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: pools: 0 pools, 0 pgs 2024-02-11T16:06:31.179 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: objects: 0 objects, 0 B 2024-02-11T16:06:31.179 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: usage: 0 B used, 0 B / 0 B avail 2024-02-11T16:06:31.179 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: pgs: 2024-02-11T16:06:31.179 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:31.776 INFO:teuthology.orchestra.run.smithi120.stderr:mon is available 2024-02-11T16:06:31.777 INFO:teuthology.orchestra.run.smithi120.stderr:Assimilating anything we can from ceph.conf... 2024-02-11T16:06:32.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:31 smithi120 bash[13698]: cluster 2024-02-11T16:06:30.971521+0000 mon.smithi120 (mon.0) 2 : cluster [INF] mon.smithi120 is new leader, mons smithi120 in quorum (ranks 0) 2024-02-11T16:06:32.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:31 smithi120 bash[13698]: cluster 2024-02-11T16:06:30.971882+0000 mon.smithi120 (mon.0) 3 : cluster [DBG] monmap e1: 1 mons at {smithi120=[v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0]} removed_ranks: {} 2024-02-11T16:06:32.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:31 smithi120 bash[13698]: cluster 2024-02-11T16:06:30.977560+0000 mon.smithi120 (mon.0) 4 : cluster [DBG] fsmap 2024-02-11T16:06:32.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:31 smithi120 bash[13698]: cluster 2024-02-11T16:06:30.981545+0000 mon.smithi120 (mon.0) 5 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-11T16:06:32.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:31 smithi120 bash[13698]: cluster 2024-02-11T16:06:30.982013+0000 mon.smithi120 (mon.0) 6 : cluster [DBG] mgrmap e1: no daemons active 2024-02-11T16:06:32.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:31 smithi120 bash[13698]: audit 2024-02-11T16:06:31.175526+0000 mon.smithi120 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.120:0/964497217' entity='client.admin' cmd=[{"prefix": "status"}]: dispatch 2024-02-11T16:06:32.860 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:32.860 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: [global] 2024-02-11T16:06:32.860 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: fsid = 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:06:32.860 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mon_host = [v2:172.21.15.120:3300,v1:172.21.15.120:6789] 2024-02-11T16:06:32.860 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-11T16:06:32.860 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-11T16:06:32.861 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-11T16:06:32.861 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-11T16:06:32.861 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:32.861 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: [mgr] 2024-02-11T16:06:32.861 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-11T16:06:32.861 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:32.861 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: [osd] 2024-02-11T16:06:32.861 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-11T16:06:32.861 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-11T16:06:33.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:32 smithi120 bash[13698]: audit 2024-02-11T16:06:32.851410+0000 mon.smithi120 (mon.0) 8 : audit [INF] from='client.? 172.21.15.120:0/3361586169' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-11T16:06:33.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:32 smithi120 bash[13698]: audit 2024-02-11T16:06:32.857108+0000 mon.smithi120 (mon.0) 9 : audit [INF] from='client.? 172.21.15.120:0/3361586169' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-02-11T16:06:33.508 INFO:teuthology.orchestra.run.smithi120.stderr:Generating new minimal ceph.conf... 2024-02-11T16:06:34.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:34 smithi120 bash[13698]: audit 2024-02-11T16:06:34.546262+0000 mon.smithi120 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.120:0/4100114410' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:06:35.163 INFO:teuthology.orchestra.run.smithi120.stderr:Restarting the monitor... 2024-02-11T16:06:35.523 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:35 smithi120 systemd[1]: Stopping Ceph mon.smithi120 for 639b0136-c8f7-11ee-95b9-87774f69a715... 2024-02-11T16:06:35.523 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:35 smithi120 bash[14083]: Error response from daemon: No such container: ceph-639b0136-c8f7-11ee-95b9-87774f69a715-mon.smithi120 2024-02-11T16:06:35.523 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:35 smithi120 bash[13698]: debug 2024-02-11T16:06:35.356+0000 7f289b4cd700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi120 -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-02-11T16:06:35.523 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:35 smithi120 bash[13698]: debug 2024-02-11T16:06:35.356+0000 7f289b4cd700 -1 mon.smithi120@0(leader) e1 *** Got Signal Terminated *** 2024-02-11T16:06:36.034 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:35 smithi120 bash[14119]: ceph-639b0136-c8f7-11ee-95b9-87774f69a715-mon-smithi120 2024-02-11T16:06:36.058 INFO:teuthology.orchestra.run.smithi120.stderr:Setting public_network to 172.21.15.254/32,172.21.0.0/20 in mon config section 2024-02-11T16:06:36.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:36 smithi120 bash[14182]: Error response from daemon: No such container: ceph-639b0136-c8f7-11ee-95b9-87774f69a715-mon-smithi120 2024-02-11T16:06:36.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:36 smithi120 systemd[1]: ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi120.service: Succeeded. 2024-02-11T16:06:36.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:36 smithi120 systemd[1]: Stopped Ceph mon.smithi120 for 639b0136-c8f7-11ee-95b9-87774f69a715. 2024-02-11T16:06:36.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:36 smithi120 systemd[1]: Started Ceph mon.smithi120 for 639b0136-c8f7-11ee-95b9-87774f69a715. 2024-02-11T16:06:37.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.124+0000 7f3664b81880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-11T16:06:37.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.124+0000 7f3664b81880 0 ceph version 16.2.14-530-g5db25abe (5db25abe00e218b6920215c0bef70af7e47c7152) pacific (stable), process ceph-mon, pid 7 2024-02-11T16:06:37.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.124+0000 7f3664b81880 0 pidfile_write: ignore empty --pid-file 2024-02-11T16:06:37.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 0 load: jerasure load: lrc load: isa 2024-02-11T16:06:37.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: RocksDB version: 6.8.1 2024-02-11T16:06:37.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-11T16:06:37.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Compile date Feb 8 2024 2024-02-11T16:06:37.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: DB SUMMARY 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: CURRENT file: CURRENT 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 131 Bytes 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi120/store.db dir, Total Num: 1, files: 000004.sst 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi120/store.db: 000006.log size: 86559 ; 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.error_if_exists: 0 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.create_if_missing: 0 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.paranoid_checks: 1 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.env: 0x55a5e63c3080 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.fs: Posix File System 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.info_log: 0x55a5e78fa560 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.statistics: (nil) 2024-02-11T16:06:37.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.use_fsync: 0 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_log_file_size: 0 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.allow_fallocate: 1 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.use_direct_reads: 0 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.db_log_dir: 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi120/store.db 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_subcompactions: 1 2024-02-11T16:06:37.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_background_flushes: -1 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.write_buffer_manager: 0x55a5e85ee3f0 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-11T16:06:37.408 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-11T16:06:37.409 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-11T16:06:37.409 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-11T16:06:37.410 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-11T16:06:37.410 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.unordered_write: 0 2024-02-11T16:06:37.410 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-11T16:06:37.410 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.row_cache: None 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.wal_filter: None 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.preserve_deletes: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.two_write_queues: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.atomic_flush: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.log_readahead_size: 0 2024-02-11T16:06:37.411 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_background_jobs: 2 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_background_compactions: -1 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.max_open_files: -1 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-11T16:06:37.412 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Compression algorithms supported: 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: kZSTD supported: 0 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: kXpressCompression supported: 0 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: kLZ4Compression supported: 1 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: kBZip2Compression supported: 0 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: kZlibCompression supported: 1 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: kSnappyCompression supported: 1 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.128+0000 7f3664b81880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi120/store.db/MANIFEST-000005 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-11T16:06:37.413 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.merge_operator: 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_filter: None 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a5e789dd10) 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: cache_index_and_filter_blocks: 1 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: pin_top_level_index_and_filter: 1 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: index_type: 0 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: data_block_index_type: 0 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: index_shortening: 1 2024-02-11T16:06:37.414 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: data_block_hash_table_util_ratio: 0.750000 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: hash_index_allow_collision: 1 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: checksum: 1 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: no_block_cache: 0 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: block_cache: 0x55a5e78d4f10 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: block_cache_name: BinnedLRUCache 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: block_cache_options: 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: capacity : 536870912 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: num_shard_bits : 4 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: strict_capacity_limit : 0 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: high_pri_pool_ratio: 0.000 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: block_cache_compressed: (nil) 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: persistent_cache: (nil) 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: block_size: 4096 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: block_size_deviation: 10 2024-02-11T16:06:37.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: block_restart_interval: 16 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: index_block_restart_interval: 1 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: metadata_block_size: 4096 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: partition_filters: 0 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: use_delta_encoding: 1 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: whole_key_filtering: 1 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: verify_compression: 0 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: read_amp_bytes_per_bit: 0 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: format_version: 2 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: enable_index_compression: 1 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: block_align: 0 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compression: NoCompression 2024-02-11T16:06:37.416 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.num_levels: 7 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-11T16:06:37.417 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-11T16:06:37.418 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-11T16:06:37.419 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.table_properties_collectors: 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.inplace_update_support: 0 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.bloom_locality: 0 2024-02-11T16:06:37.420 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.max_successive_merges: 0 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.ttl: 2592000 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.132+0000 7f3664b81880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f3664b81880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi120/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 5, log_number is 4,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f3664b81880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 4 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f3664b81880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707667597138602, "job": 1, "event": "recovery_started", "log_files": [6]} 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f3664b81880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #6 mode 2 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f3664b81880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f3664b81880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707667597139988, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 7, "file_size": 83432, "table_properties": {"data_size": 81699, "index_size": 338, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "filter_size": 581, "raw_key_size": 9331, "raw_average_key_size": 47, "raw_value_size": 76211, "raw_average_value_size": 384, "num_data_blocks": 11, "num_entries": 198, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1707667597, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f3664b81880 4 rocksdb: [version_set.cc:3826] Creating manifest 8 2024-02-11T16:06:37.421 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f3664b81880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707667597140563, "job": 1, "event": "recovery_finished"} 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f3664b81880 4 rocksdb: DB pointer 0x55a5e799d800 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f364b973700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.136+0000 7f364b973700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ** DB Stats ** 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ** Compaction Stats [default] ** 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: 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 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:06:37.422 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: L0 2/0 83.17 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 91.7 0.00 0.00 1 0.001 0 0 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Sum 2/0 83.17 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 91.7 0.00 0.00 1 0.001 0 0 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 91.7 0.00 0.00 1 0.001 0 0 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ** Compaction Stats [default] ** 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: 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 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 91.7 0.00 0.00 1 0.001 0 0 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: AddFile(Total Files): cumulative 0, interval 0 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: AddFile(Keys): cumulative 0, interval 0 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Cumulative compaction: 0.00 GB write, 10.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Interval compaction: 0.00 GB write, 10.50 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:06:37.423 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: 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-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ** File Read Latency Histogram By Level [default] ** 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ** Compaction Stats [default] ** 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: 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 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: L0 2/0 83.17 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 91.7 0.00 0.00 1 0.001 0 0 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Sum 2/0 83.17 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 91.7 0.00 0.00 1 0.001 0 0 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: 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 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ** Compaction Stats [default] ** 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: 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 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 91.7 0.00 0.00 1 0.001 0 0 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-11T16:06:37.424 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: AddFile(Total Files): cumulative 0, interval 0 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: AddFile(Keys): cumulative 0, interval 0 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Cumulative compaction: 0.00 GB write, 10.40 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: 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-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: ** File Read Latency Histogram By Level [default] ** 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.140+0000 7f3664b81880 0 starting mon.smithi120 rank 0 at public addrs [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] at bind addrs [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi120 fsid 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.140+0000 7f3664b81880 1 mon.smithi120@-1(???) e1 preinit fsid 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.140+0000 7f3664b81880 0 mon.smithi120@-1(???).mds e1 new map 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.140+0000 7f3664b81880 0 mon.smithi120@-1(???).mds e1 print_map 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: e1 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: 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} 2024-02-11T16:06:37.425 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: legacy client fscid: -1 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: No filesystems configured 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.140+0000 7f3664b81880 0 mon.smithi120@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.140+0000 7f3664b81880 0 mon.smithi120@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.140+0000 7f3664b81880 0 mon.smithi120@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.140+0000 7f3664b81880 0 mon.smithi120@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: audit 2024-02-11T16:06:34.546262+0000 mon.smithi120 (mon.0) 10 : audit [DBG] from='client.? 172.21.15.120:0/4100114410' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: debug 2024-02-11T16:06:37.140+0000 7f3664b81880 1 mon.smithi120@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: cluster 2024-02-11T16:06:37.149874+0000 mon.smithi120 (mon.0) 1 : cluster [INF] mon.smithi120 is new leader, mons smithi120 in quorum (ranks 0) 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: cluster 2024-02-11T16:06:37.150041+0000 mon.smithi120 (mon.0) 2 : cluster [DBG] monmap e1: 1 mons at {smithi120=[v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0]} removed_ranks: {} 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: cluster 2024-02-11T16:06:37.150691+0000 mon.smithi120 (mon.0) 3 : cluster [DBG] fsmap 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: cluster 2024-02-11T16:06:37.150836+0000 mon.smithi120 (mon.0) 4 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-02-11T16:06:37.426 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:37 smithi120 bash[14220]: cluster 2024-02-11T16:06:37.151992+0000 mon.smithi120 (mon.0) 5 : cluster [DBG] mgrmap e1: no daemons active 2024-02-11T16:06:38.092 INFO:teuthology.orchestra.run.smithi120.stderr:Wrote config to /etc/ceph/ceph.conf 2024-02-11T16:06:38.092 INFO:teuthology.orchestra.run.smithi120.stderr:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-02-11T16:06:38.092 INFO:teuthology.orchestra.run.smithi120.stderr:Creating mgr... 2024-02-11T16:06:38.092 INFO:teuthology.orchestra.run.smithi120.stderr:Verifying port 9283 ... 2024-02-11T16:06:38.320 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Failed to reset failed state of unit ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mgr.smithi120.tpsohu.service: Unit ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mgr.smithi120.tpsohu.service not loaded. 2024-02-11T16:06:38.327 INFO:teuthology.orchestra.run.smithi120.stderr:systemctl: Created symlink /etc/systemd/system/ceph-639b0136-c8f7-11ee-95b9-87774f69a715.target.wants/ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mgr.smithi120.tpsohu.service -> /etc/systemd/system/ceph-639b0136-c8f7-11ee-95b9-87774f69a715@.service. 2024-02-11T16:06:38.514 INFO:teuthology.orchestra.run.smithi120.stderr:firewalld does not appear to be present 2024-02-11T16:06:38.515 INFO:teuthology.orchestra.run.smithi120.stderr:Not possible to enable service . firewalld.service is not available 2024-02-11T16:06:38.515 INFO:teuthology.orchestra.run.smithi120.stderr:firewalld does not appear to be present 2024-02-11T16:06:38.515 INFO:teuthology.orchestra.run.smithi120.stderr:Not possible to open ports <[9283]>. firewalld.service is not available 2024-02-11T16:06:38.515 INFO:teuthology.orchestra.run.smithi120.stderr:Waiting for mgr to start... 2024-02-11T16:06:38.515 INFO:teuthology.orchestra.run.smithi120.stderr:Waiting for mgr... 2024-02-11T16:06:38.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:38 smithi120 bash[14220]: audit 2024-02-11T16:06:37.446792+0000 mon.smithi120 (mon.0) 6 : audit [INF] from='client.? 172.21.15.120:0/916816700' entity='client.admin' 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: { 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "fsid": "639b0136-c8f7-11ee-95b9-87774f69a715", 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "health": { 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "checks": {}, 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "mutes": [] 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "quorum": [ 2024-02-11T16:06:40.035 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 0 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ], 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "smithi120" 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ], 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "quorum_age": 2, 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "monmap": { 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "osdmap": { 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-11T16:06:40.036 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-11T16:06:40.037 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-11T16:06:40.037 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-11T16:06:40.037 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-11T16:06:40.040 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-11T16:06:40.040 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:40.040 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "pgmap": { 2024-02-11T16:06:40.040 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-11T16:06:40.040 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-11T16:06:40.040 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-11T16:06:40.040 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-11T16:06:40.040 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "fsmap": { 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "available": false, 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "modules": [ 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "iostat", 2024-02-11T16:06:40.041 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "nfs", 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "restful" 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ], 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "services": {} 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "servicemap": { 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "modified": "2024-02-11T16:06:30.974722+0000", 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "services": {} 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-11T16:06:40.042 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: } 2024-02-11T16:06:40.238 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:40 smithi120 bash[14220]: audit 2024-02-11T16:06:40.031084+0000 mon.smithi120 (mon.0) 7 : audit [DBG] from='client.? 172.21.15.120:0/2117880093' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-11T16:06:40.660 INFO:teuthology.orchestra.run.smithi120.stderr:mgr not available, waiting (1/15)... 2024-02-11T16:06:43.812 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:43.812 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: { 2024-02-11T16:06:43.812 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "fsid": "639b0136-c8f7-11ee-95b9-87774f69a715", 2024-02-11T16:06:43.812 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "health": { 2024-02-11T16:06:43.812 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "checks": {}, 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "mutes": [] 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "quorum": [ 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 0 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ], 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "smithi120" 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ], 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "quorum_age": 6, 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "monmap": { 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:43.818 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "osdmap": { 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "pgmap": { 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-11T16:06:43.819 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "fsmap": { 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "available": false, 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "modules": [ 2024-02-11T16:06:43.820 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "iostat", 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "nfs", 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "restful" 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ], 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "services": {} 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "servicemap": { 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "modified": "2024-02-11T16:06:30.974722+0000", 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "services": {} 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-11T16:06:43.821 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: } 2024-02-11T16:06:44.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:43 smithi120 bash[14220]: audit 2024-02-11T16:06:43.810452+0000 mon.smithi120 (mon.0) 8 : audit [DBG] from='client.? 172.21.15.120:0/2923066010' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-11T16:06:44.382 INFO:teuthology.orchestra.run.smithi120.stderr:mgr not available, waiting (2/15)... 2024-02-11T16:06:46.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:46 smithi120 bash[14220]: cluster 2024-02-11T16:06:46.280783+0000 mon.smithi120 (mon.0) 9 : cluster [INF] Activating manager daemon smithi120.tpsohu 2024-02-11T16:06:46.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:46 smithi120 bash[14220]: cluster 2024-02-11T16:06:46.286704+0000 mon.smithi120 (mon.0) 10 : cluster [DBG] mgrmap e2: smithi120.tpsohu(active, starting, since 0.00613773s) 2024-02-11T16:06:46.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:46 smithi120 bash[14220]: audit 2024-02-11T16:06:46.288066+0000 mon.smithi120 (mon.0) 11 : audit [DBG] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-11T16:06:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:46 smithi120 bash[14220]: audit 2024-02-11T16:06:46.288382+0000 mon.smithi120 (mon.0) 12 : audit [DBG] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-11T16:06:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:46 smithi120 bash[14220]: audit 2024-02-11T16:06:46.288575+0000 mon.smithi120 (mon.0) 13 : audit [DBG] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-11T16:06:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:46 smithi120 bash[14220]: audit 2024-02-11T16:06:46.288749+0000 mon.smithi120 (mon.0) 14 : audit [DBG] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi120"}]: dispatch 2024-02-11T16:06:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:46 smithi120 bash[14220]: audit 2024-02-11T16:06:46.289501+0000 mon.smithi120 (mon.0) 15 : audit [DBG] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr metadata", "who": "smithi120.tpsohu", "id": "smithi120.tpsohu"}]: dispatch 2024-02-11T16:06:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:46 smithi120 bash[14220]: cluster 2024-02-11T16:06:46.315251+0000 mon.smithi120 (mon.0) 16 : cluster [INF] Manager daemon smithi120.tpsohu is now available 2024-02-11T16:06:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:46 smithi120 bash[14220]: audit 2024-02-11T16:06:46.327654+0000 mon.smithi120 (mon.0) 17 : audit [INF] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' 2024-02-11T16:06:47.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:47 smithi120 bash[14220]: audit 2024-02-11T16:06:46.338060+0000 mon.smithi120 (mon.0) 18 : audit [INF] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.tpsohu/mirror_snapshot_schedule"}]: dispatch 2024-02-11T16:06:47.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:47 smithi120 bash[14220]: audit 2024-02-11T16:06:46.341939+0000 mon.smithi120 (mon.0) 19 : audit [INF] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.tpsohu/trash_purge_schedule"}]: dispatch 2024-02-11T16:06:47.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:47 smithi120 bash[14220]: audit 2024-02-11T16:06:46.346138+0000 mon.smithi120 (mon.0) 20 : audit [INF] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' 2024-02-11T16:06:47.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:47 smithi120 bash[14220]: audit 2024-02-11T16:06:46.348906+0000 mon.smithi120 (mon.0) 21 : audit [INF] from='mgr.14100 172.21.15.120:0/1939231709' entity='mgr.smithi120.tpsohu' 2024-02-11T16:06:47.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:47 smithi120 bash[14220]: cluster 2024-02-11T16:06:47.292888+0000 mon.smithi120 (mon.0) 22 : cluster [DBG] mgrmap e3: smithi120.tpsohu(active, since 1.01233s) 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: { 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "fsid": "639b0136-c8f7-11ee-95b9-87774f69a715", 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "health": { 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "status": "HEALTH_OK", 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "checks": {}, 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "mutes": [] 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "election_epoch": 5, 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "quorum": [ 2024-02-11T16:06:47.808 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 0 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ], 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "quorum_names": [ 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "smithi120" 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ], 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "quorum_age": 10, 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "monmap": { 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "min_mon_release_name": "pacific", 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_mons": 1 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "osdmap": { 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_osds": 0, 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_up_osds": 0, 2024-02-11T16:06:47.809 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "osd_up_since": 0, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_in_osds": 0, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "osd_in_since": 0, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_remapped_pgs": 0 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "pgmap": { 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "pgs_by_state": [], 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_pgs": 0, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_pools": 0, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_objects": 0, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "data_bytes": 0, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "bytes_used": 0, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "bytes_avail": 0, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "bytes_total": 0 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "fsmap": { 2024-02-11T16:06:47.810 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "by_rank": [], 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "up:standby": 0 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "mgrmap": { 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "available": true, 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_standbys": 0, 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "modules": [ 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "iostat", 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "nfs", 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "restful" 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ], 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "services": {} 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "servicemap": { 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 1, 2024-02-11T16:06:47.811 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "modified": "2024-02-11T16:06:30.974722+0000", 2024-02-11T16:06:47.812 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "services": {} 2024-02-11T16:06:47.812 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: }, 2024-02-11T16:06:47.812 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "progress_events": {} 2024-02-11T16:06:47.812 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: } 2024-02-11T16:06:48.422 INFO:teuthology.orchestra.run.smithi120.stderr:mgr is available 2024-02-11T16:06:48.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:48 smithi120 bash[14220]: audit 2024-02-11T16:06:47.799404+0000 mon.smithi120 (mon.0) 23 : audit [DBG] from='client.? 172.21.15.120:0/638961286' entity='client.admin' cmd=[{"prefix": "status", "format": "json-pretty"}]: dispatch 2024-02-11T16:06:49.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:49 smithi120 bash[14220]: cluster 2024-02-11T16:06:48.342662+0000 mon.smithi120 (mon.0) 24 : cluster [DBG] mgrmap e4: smithi120.tpsohu(active, since 2s) 2024-02-11T16:06:49.649 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:49.649 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: [global] 2024-02-11T16:06:49.649 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: fsid = 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:06:49.650 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mon_osd_allow_pg_remap = true 2024-02-11T16:06:49.650 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mon_osd_allow_primary_affinity = true 2024-02-11T16:06:49.650 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mon_warn_on_no_sortbitwise = false 2024-02-11T16:06:49.650 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: osd_crush_chooseleaf_type = 0 2024-02-11T16:06:49.650 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:49.651 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: [mgr] 2024-02-11T16:06:49.651 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: mgr/telemetry/nag = false 2024-02-11T16:06:49.651 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 2024-02-11T16:06:49.651 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: [osd] 2024-02-11T16:06:49.651 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: osd_map_max_advance = 10 2024-02-11T16:06:49.651 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: osd_sloppy_crc = true 2024-02-11T16:06:50.297 INFO:teuthology.orchestra.run.smithi120.stderr:Enabling cephadm module... 2024-02-11T16:06:50.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:50 smithi120 bash[14220]: audit 2024-02-11T16:06:49.646189+0000 mon.smithi120 (mon.0) 25 : audit [INF] from='client.? 172.21.15.120:0/1694457376' entity='client.admin' cmd=[{"prefix": "config assimilate-conf"}]: dispatch 2024-02-11T16:06:52.010 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:51 smithi120 bash[14220]: audit 2024-02-11T16:06:51.660271+0000 mon.smithi120 (mon.0) 26 : audit [INF] from='client.? 172.21.15.120:0/1852245838' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "cephadm"}]: dispatch 2024-02-11T16:06:53.075 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:52 smithi120 bash[14220]: audit 2024-02-11T16:06:51.717449+0000 mon.smithi120 (mon.0) 27 : audit [INF] from='client.? 172.21.15.120:0/1852245838' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-02-11T16:06:53.075 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:52 smithi120 bash[14220]: cluster 2024-02-11T16:06:51.717625+0000 mon.smithi120 (mon.0) 28 : cluster [DBG] mgrmap e5: smithi120.tpsohu(active, since 5s) 2024-02-11T16:06:53.742 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: { 2024-02-11T16:06:53.743 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 5, 2024-02-11T16:06:53.743 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "available": true, 2024-02-11T16:06:53.743 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "active_name": "smithi120.tpsohu", 2024-02-11T16:06:53.743 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-11T16:06:53.743 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: } 2024-02-11T16:06:54.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:53 smithi120 bash[14220]: audit 2024-02-11T16:06:53.740120+0000 mon.smithi120 (mon.0) 29 : audit [DBG] from='client.? 172.21.15.120:0/3198820678' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-11T16:06:54.415 INFO:teuthology.orchestra.run.smithi120.stderr:Waiting for the mgr to restart... 2024-02-11T16:06:54.416 INFO:teuthology.orchestra.run.smithi120.stderr:Waiting for mgr epoch 5... 2024-02-11T16:06:58.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: cluster 2024-02-11T16:06:58.261074+0000 mon.smithi120 (mon.0) 30 : cluster [INF] Active manager daemon smithi120.tpsohu restarted 2024-02-11T16:06:58.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: cluster 2024-02-11T16:06:58.261500+0000 mon.smithi120 (mon.0) 31 : cluster [INF] Activating manager daemon smithi120.tpsohu 2024-02-11T16:06:58.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: cluster 2024-02-11T16:06:58.267254+0000 mon.smithi120 (mon.0) 32 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-02-11T16:06:58.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: cluster 2024-02-11T16:06:58.267428+0000 mon.smithi120 (mon.0) 33 : cluster [DBG] mgrmap e6: smithi120.tpsohu(active, starting, since 0.00609377s) 2024-02-11T16:06:58.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: audit 2024-02-11T16:06:58.268826+0000 mon.smithi120 (mon.0) 34 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi120"}]: dispatch 2024-02-11T16:06:58.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: audit 2024-02-11T16:06:58.270377+0000 mon.smithi120 (mon.0) 35 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr metadata", "who": "smithi120.tpsohu", "id": "smithi120.tpsohu"}]: dispatch 2024-02-11T16:06:58.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: audit 2024-02-11T16:06:58.271343+0000 mon.smithi120 (mon.0) 36 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-11T16:06:58.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: audit 2024-02-11T16:06:58.271573+0000 mon.smithi120 (mon.0) 37 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-11T16:06:58.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: audit 2024-02-11T16:06:58.271753+0000 mon.smithi120 (mon.0) 38 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-11T16:06:58.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: cluster 2024-02-11T16:06:58.274987+0000 mon.smithi120 (mon.0) 39 : cluster [INF] Manager daemon smithi120.tpsohu is now available 2024-02-11T16:06:58.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:58 smithi120 bash[14220]: audit 2024-02-11T16:06:58.291635+0000 mon.smithi120 (mon.0) 40 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:06:59.288 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: { 2024-02-11T16:06:59.288 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "mgrmap_epoch": 7, 2024-02-11T16:06:59.288 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "initialized": true 2024-02-11T16:06:59.288 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: } 2024-02-11T16:06:59.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:59 smithi120 bash[14220]: cephadm 2024-02-11T16:06:58.288968+0000 mgr.smithi120.tpsohu (mgr.14116) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-02-11T16:06:59.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:59 smithi120 bash[14220]: audit 2024-02-11T16:06:58.410924+0000 mon.smithi120 (mon.0) 41 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:06:59.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:59 smithi120 bash[14220]: audit 2024-02-11T16:06:58.412657+0000 mon.smithi120 (mon.0) 42 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:06:59.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:59 smithi120 bash[14220]: audit 2024-02-11T16:06:58.415818+0000 mon.smithi120 (mon.0) 43 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:06:59.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:59 smithi120 bash[14220]: audit 2024-02-11T16:06:58.420078+0000 mon.smithi120 (mon.0) 44 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:06:59.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:59 smithi120 bash[14220]: audit 2024-02-11T16:06:58.442861+0000 mon.smithi120 (mon.0) 45 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.tpsohu/mirror_snapshot_schedule"}]: dispatch 2024-02-11T16:06:59.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:59 smithi120 bash[14220]: audit 2024-02-11T16:06:58.446705+0000 mon.smithi120 (mon.0) 46 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.tpsohu/trash_purge_schedule"}]: dispatch 2024-02-11T16:06:59.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:06:59 smithi120 bash[14220]: cluster 2024-02-11T16:06:59.272716+0000 mon.smithi120 (mon.0) 47 : cluster [DBG] mgrmap e7: smithi120.tpsohu(active, since 1.01138s) 2024-02-11T16:06:59.938 INFO:teuthology.orchestra.run.smithi120.stderr:mgr epoch 5 is available 2024-02-11T16:06:59.938 INFO:teuthology.orchestra.run.smithi120.stderr:Setting orchestrator backend to cephadm... 2024-02-11T16:07:00.662 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:00 smithi120 bash[14220]: audit 2024-02-11T16:06:59.270909+0000 mgr.smithi120.tpsohu (mgr.14116) 2 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-11T16:07:00.662 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:00 smithi120 bash[14220]: audit 2024-02-11T16:06:59.286668+0000 mgr.smithi120.tpsohu (mgr.14116) 3 : audit [DBG] from='client.14120 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-11T16:07:01.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:01 smithi120 bash[14220]: cluster 2024-02-11T16:07:00.419756+0000 mon.smithi120 (mon.0) 48 : cluster [DBG] mgrmap e8: smithi120.tpsohu(active, since 2s) 2024-02-11T16:07:01.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:01 smithi120 bash[14220]: audit 2024-02-11T16:07:01.201305+0000 mon.smithi120 (mon.0) 49 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:01.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:01 smithi120 bash[14220]: audit 2024-02-11T16:07:01.255742+0000 mon.smithi120 (mon.0) 50 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:07:02.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:02 smithi120 bash[14220]: audit 2024-02-11T16:07:01.191272+0000 mgr.smithi120.tpsohu (mgr.14116) 4 : audit [DBG] from='client.14126 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:03.171 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: value unchanged 2024-02-11T16:07:03.808 INFO:teuthology.orchestra.run.smithi120.stderr:Generating ssh key... 2024-02-11T16:07:04.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:03 smithi120 bash[14220]: audit 2024-02-11T16:07:03.169643+0000 mgr.smithi120.tpsohu (mgr.14116) 5 : audit [DBG] from='client.14128 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:06.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:06 smithi120 bash[14220]: audit 2024-02-11T16:07:05.112081+0000 mgr.smithi120.tpsohu (mgr.14116) 6 : audit [DBG] from='client.14130 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:06.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:06 smithi120 bash[14220]: cephadm 2024-02-11T16:07:05.112379+0000 mgr.smithi120.tpsohu (mgr.14116) 7 : cephadm [INF] Generating ssh key... 2024-02-11T16:07:06.864 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:06 smithi120 bash[14220]: audit 2024-02-11T16:07:05.565734+0000 mon.smithi120 (mon.0) 51 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:06.865 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:06 smithi120 bash[14220]: audit 2024-02-11T16:07:05.569138+0000 mon.smithi120 (mon.0) 52 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:07.438 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAeuUlOTjTyXvgxIl1QE6QrFuUgQ+03zDH8gwbb+b9LM/5x2sYWLoqOQVZR+c+Z30zW+JJM2xCBqIKun8EXUD+ZIIg1gsHnKGORB4lsUC8zTAl7XwsCfU2CaP3lUHJ6zdMQ1pQFXOH+ZC/GijEfb3a7D0Hh9XZp18KF66n3Fgj1whczExQoE2V7hyiRd7gL7pEEL9qLf8LSVshZWJggRi5e+H+8OVV/QX8HtaJww8Q57NAgKLZ906wq4vEECiEKHVwuKrCzFctZ7wdD3ySdrqRwwlpQncjreCFO/OX0/jftsh8C8lvGKoz7d97JBISwYOU2gDCbDm+x87Kk4mIXKBKggurrmhu3cJ60ZxfG4/PgfmzoK5gmZOw8iUqHkJ6W05huAaYXBDaUs7nX6b1gn2joNtpUPxBQr4tJS5rEhgGoEFLPYAwwS5F2axT0PhiKtbwQi8PN0rvrKKkNKoSp56X4JIfr1TOGSlqVUkTsTkMw6cmdfuuek10VsSz3/aldWM= ceph-639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:07:07.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:07 smithi120 bash[14220]: audit 2024-02-11T16:07:07.437625+0000 mgr.smithi120.tpsohu (mgr.14116) 8 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:08.055 INFO:teuthology.orchestra.run.smithi120.stderr:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-02-11T16:07:08.055 INFO:teuthology.orchestra.run.smithi120.stderr:Adding key to root@localhost authorized_keys... 2024-02-11T16:07:08.056 INFO:teuthology.orchestra.run.smithi120.stderr:Adding host smithi120... 2024-02-11T16:07:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:09 smithi120 bash[14220]: audit 2024-02-11T16:07:09.423732+0000 mgr.smithi120.tpsohu (mgr.14116) 9 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi120", "addr": "172.21.15.120", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:10.245 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: Added host 'smithi120' with addr '172.21.15.120' 2024-02-11T16:07:11.119 INFO:teuthology.orchestra.run.smithi120.stderr:Deploying mon service with default placement... 2024-02-11T16:07:11.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:11 smithi120 bash[14220]: audit 2024-02-11T16:07:10.243946+0000 mon.smithi120 (mon.0) 53 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:11.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:11 smithi120 bash[14220]: cephadm 2024-02-11T16:07:10.244470+0000 mgr.smithi120.tpsohu (mgr.14116) 10 : cephadm [INF] Added host smithi120 2024-02-11T16:07:11.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:11 smithi120 bash[14220]: audit 2024-02-11T16:07:10.246070+0000 mon.smithi120 (mon.0) 54 : audit [DBG] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:07:12.987 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: Scheduled mon update... 2024-02-11T16:07:13.992 INFO:teuthology.orchestra.run.smithi120.stderr:Deploying mgr service with default placement... 2024-02-11T16:07:14.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:13 smithi120 bash[14220]: audit 2024-02-11T16:07:12.980831+0000 mgr.smithi120.tpsohu (mgr.14116) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:14.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:13 smithi120 bash[14220]: cephadm 2024-02-11T16:07:12.982252+0000 mgr.smithi120.tpsohu (mgr.14116) 12 : cephadm [INF] Saving service mon spec with placement count:5 2024-02-11T16:07:14.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:13 smithi120 bash[14220]: audit 2024-02-11T16:07:12.986123+0000 mon.smithi120 (mon.0) 55 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:14.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:13 smithi120 bash[14220]: audit 2024-02-11T16:07:13.623002+0000 mon.smithi120 (mon.0) 56 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:14.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:13 smithi120 bash[14220]: audit 2024-02-11T16:07:13.860563+0000 mon.smithi120 (mon.0) 57 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:15.346 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: Scheduled mgr update... 2024-02-11T16:07:15.953 INFO:teuthology.orchestra.run.smithi120.stderr:Deploying crash service with default placement... 2024-02-11T16:07:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:16 smithi120 bash[14220]: audit 2024-02-11T16:07:15.338209+0000 mgr.smithi120.tpsohu (mgr.14116) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:16 smithi120 bash[14220]: cephadm 2024-02-11T16:07:15.339949+0000 mgr.smithi120.tpsohu (mgr.14116) 14 : cephadm [INF] Saving service mgr spec with placement count:2 2024-02-11T16:07:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:16 smithi120 bash[14220]: audit 2024-02-11T16:07:15.344862+0000 mon.smithi120 (mon.0) 58 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:17.266 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: Scheduled crash update... 2024-02-11T16:07:17.944 INFO:teuthology.orchestra.run.smithi120.stderr:Deploying prometheus service with default placement... 2024-02-11T16:07:18.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:18 smithi120 bash[14220]: audit 2024-02-11T16:07:17.257184+0000 mgr.smithi120.tpsohu (mgr.14116) 15 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:18.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:18 smithi120 bash[14220]: cephadm 2024-02-11T16:07:17.259529+0000 mgr.smithi120.tpsohu (mgr.14116) 16 : cephadm [INF] Saving service crash spec with placement * 2024-02-11T16:07:18.612 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:18 smithi120 bash[14220]: audit 2024-02-11T16:07:17.264153+0000 mon.smithi120 (mon.0) 59 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:19.232 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: Scheduled prometheus update... 2024-02-11T16:07:19.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:19 smithi120 bash[14220]: cluster 2024-02-11T16:07:18.273266+0000 mgr.smithi120.tpsohu (mgr.14116) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:07:19.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:19 smithi120 bash[14220]: audit 2024-02-11T16:07:18.991482+0000 mon.smithi120 (mon.0) 60 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:19.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:19 smithi120 bash[14220]: audit 2024-02-11T16:07:19.230752+0000 mon.smithi120 (mon.0) 61 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:19.988 INFO:teuthology.orchestra.run.smithi120.stderr:Deploying grafana service with default placement... 2024-02-11T16:07:20.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:20 smithi120 bash[14220]: audit 2024-02-11T16:07:19.225159+0000 mgr.smithi120.tpsohu (mgr.14116) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:20.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:20 smithi120 bash[14220]: cephadm 2024-02-11T16:07:19.226997+0000 mgr.smithi120.tpsohu (mgr.14116) 19 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-02-11T16:07:21.300 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: Scheduled grafana update... 2024-02-11T16:07:21.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:21 smithi120 bash[14220]: cluster 2024-02-11T16:07:20.273736+0000 mgr.smithi120.tpsohu (mgr.14116) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:07:21.935 INFO:teuthology.orchestra.run.smithi120.stderr:Deploying node-exporter service with default placement... 2024-02-11T16:07:22.645 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:22 smithi120 bash[14220]: audit 2024-02-11T16:07:21.294378+0000 mgr.smithi120.tpsohu (mgr.14116) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:22.646 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:22 smithi120 bash[14220]: cephadm 2024-02-11T16:07:21.295761+0000 mgr.smithi120.tpsohu (mgr.14116) 22 : cephadm [INF] Saving service grafana spec with placement count:1 2024-02-11T16:07:22.646 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:22 smithi120 bash[14220]: audit 2024-02-11T16:07:21.298999+0000 mon.smithi120 (mon.0) 62 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:23.231 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: Scheduled node-exporter update... 2024-02-11T16:07:23.573 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:23 smithi120 bash[14220]: cluster 2024-02-11T16:07:22.274201+0000 mgr.smithi120.tpsohu (mgr.14116) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:07:23.573 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:23 smithi120 bash[14220]: audit 2024-02-11T16:07:23.229420+0000 mon.smithi120 (mon.0) 63 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:24.238 INFO:teuthology.orchestra.run.smithi120.stderr:Deploying alertmanager service with default placement... 2024-02-11T16:07:24.630 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:24 smithi120 bash[14220]: audit 2024-02-11T16:07:23.224378+0000 mgr.smithi120.tpsohu (mgr.14116) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:24.630 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:24 smithi120 bash[14220]: cephadm 2024-02-11T16:07:23.226645+0000 mgr.smithi120.tpsohu (mgr.14116) 25 : cephadm [INF] Saving service node-exporter spec with placement * 2024-02-11T16:07:25.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:25 smithi120 bash[14220]: cluster 2024-02-11T16:07:24.274489+0000 mgr.smithi120.tpsohu (mgr.14116) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:07:26.260 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: Scheduled alertmanager update... 2024-02-11T16:07:27.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:27 smithi120 bash[14220]: audit 2024-02-11T16:07:26.252771+0000 mgr.smithi120.tpsohu (mgr.14116) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:27.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:27 smithi120 bash[14220]: cephadm 2024-02-11T16:07:26.254918+0000 mgr.smithi120.tpsohu (mgr.14116) 28 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-02-11T16:07:27.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:27 smithi120 bash[14220]: audit 2024-02-11T16:07:26.257774+0000 mon.smithi120 (mon.0) 64 : audit [INF] from='mgr.14116 172.21.15.120:0/845740566' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:27.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:27 smithi120 bash[14220]: cluster 2024-02-11T16:07:26.274864+0000 mgr.smithi120.tpsohu (mgr.14116) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:07:29.594 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:29 smithi120 bash[14220]: audit 2024-02-11T16:07:28.265928+0000 mon.smithi120 (mon.0) 65 : audit [INF] from='client.? 172.21.15.120:0/3523055421' entity='client.admin' 2024-02-11T16:07:29.594 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:29 smithi120 bash[14220]: cluster 2024-02-11T16:07:28.275144+0000 mgr.smithi120.tpsohu (mgr.14116) 30 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:07:30.862 INFO:teuthology.orchestra.run.smithi120.stderr:Enabling the dashboard module... 2024-02-11T16:07:31.628 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:31 smithi120 bash[14220]: audit 2024-02-11T16:07:30.180253+0000 mon.smithi120 (mon.0) 66 : audit [INF] from='client.? 172.21.15.120:0/3157946409' entity='client.admin' 2024-02-11T16:07:31.628 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:31 smithi120 bash[14220]: cluster 2024-02-11T16:07:30.275570+0000 mgr.smithi120.tpsohu (mgr.14116) 31 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:07:32.623 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:32 smithi120 bash[14220]: audit 2024-02-11T16:07:32.273883+0000 mon.smithi120 (mon.0) 67 : audit [INF] from='client.? 172.21.15.120:0/1931183973' entity='client.admin' cmd=[{"prefix": "mgr module enable", "module": "dashboard"}]: dispatch 2024-02-11T16:07:33.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:33 smithi120 bash[14220]: audit 2024-02-11T16:07:32.329256+0000 mon.smithi120 (mon.0) 68 : audit [INF] from='client.? 172.21.15.120:0/1931183973' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-02-11T16:07:33.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:33 smithi120 bash[14220]: cluster 2024-02-11T16:07:32.329318+0000 mon.smithi120 (mon.0) 69 : cluster [DBG] mgrmap e9: smithi120.tpsohu(active, since 34s) 2024-02-11T16:07:34.469 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: { 2024-02-11T16:07:34.469 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "epoch": 9, 2024-02-11T16:07:34.469 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "available": true, 2024-02-11T16:07:34.470 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "active_name": "smithi120.tpsohu", 2024-02-11T16:07:34.470 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "num_standby": 0 2024-02-11T16:07:34.470 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: } 2024-02-11T16:07:34.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:34 smithi120 bash[14220]: audit 2024-02-11T16:07:34.467590+0000 mon.smithi120 (mon.0) 70 : audit [DBG] from='client.? 172.21.15.120:0/1197227757' entity='client.admin' cmd=[{"prefix": "mgr stat"}]: dispatch 2024-02-11T16:07:35.204 INFO:teuthology.orchestra.run.smithi120.stderr:Waiting for the mgr to restart... 2024-02-11T16:07:35.204 INFO:teuthology.orchestra.run.smithi120.stderr:Waiting for mgr epoch 9... 2024-02-11T16:07:39.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: cluster 2024-02-11T16:07:38.913059+0000 mon.smithi120 (mon.0) 71 : cluster [INF] Active manager daemon smithi120.tpsohu restarted 2024-02-11T16:07:39.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: cluster 2024-02-11T16:07:38.913642+0000 mon.smithi120 (mon.0) 72 : cluster [INF] Activating manager daemon smithi120.tpsohu 2024-02-11T16:07:39.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: cluster 2024-02-11T16:07:38.919899+0000 mon.smithi120 (mon.0) 73 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-02-11T16:07:39.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: cluster 2024-02-11T16:07:38.920065+0000 mon.smithi120 (mon.0) 74 : cluster [DBG] mgrmap e10: smithi120.tpsohu(active, starting, since 0.00661265s) 2024-02-11T16:07:39.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: audit 2024-02-11T16:07:38.921330+0000 mon.smithi120 (mon.0) 75 : audit [DBG] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi120"}]: dispatch 2024-02-11T16:07:39.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: audit 2024-02-11T16:07:38.922753+0000 mon.smithi120 (mon.0) 76 : audit [DBG] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr metadata", "who": "smithi120.tpsohu", "id": "smithi120.tpsohu"}]: dispatch 2024-02-11T16:07:39.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: audit 2024-02-11T16:07:38.924052+0000 mon.smithi120 (mon.0) 77 : audit [DBG] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-11T16:07:39.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: audit 2024-02-11T16:07:38.924226+0000 mon.smithi120 (mon.0) 78 : audit [DBG] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-11T16:07:39.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: audit 2024-02-11T16:07:38.924384+0000 mon.smithi120 (mon.0) 79 : audit [DBG] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-11T16:07:39.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:38 smithi120 bash[14220]: cluster 2024-02-11T16:07:38.945017+0000 mon.smithi120 (mon.0) 80 : cluster [INF] Manager daemon smithi120.tpsohu is now available 2024-02-11T16:07:39.939 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: { 2024-02-11T16:07:39.939 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "mgrmap_epoch": 11, 2024-02-11T16:07:39.939 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: "initialized": true 2024-02-11T16:07:39.939 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: } 2024-02-11T16:07:40.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:39 smithi120 bash[14220]: audit 2024-02-11T16:07:39.087383+0000 mon.smithi120 (mon.0) 81 : audit [DBG] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:07:40.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:39 smithi120 bash[14220]: audit 2024-02-11T16:07:39.089996+0000 mon.smithi120 (mon.0) 82 : audit [DBG] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:07:40.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:39 smithi120 bash[14220]: audit 2024-02-11T16:07:39.134355+0000 mon.smithi120 (mon.0) 83 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.tpsohu/mirror_snapshot_schedule"}]: dispatch 2024-02-11T16:07:40.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:39 smithi120 bash[14220]: audit 2024-02-11T16:07:39.137939+0000 mon.smithi120 (mon.0) 84 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.tpsohu/trash_purge_schedule"}]: dispatch 2024-02-11T16:07:40.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:39 smithi120 bash[14220]: cluster 2024-02-11T16:07:39.923935+0000 mon.smithi120 (mon.0) 85 : cluster [DBG] mgrmap e11: smithi120.tpsohu(active, since 1.01047s) 2024-02-11T16:07:40.681 INFO:teuthology.orchestra.run.smithi120.stderr:mgr epoch 9 is available 2024-02-11T16:07:40.682 INFO:teuthology.orchestra.run.smithi120.stderr:Generating a dashboard self-signed certificate... 2024-02-11T16:07:41.371 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:40 smithi120 bash[14220]: audit 2024-02-11T16:07:39.922955+0000 mgr.smithi120.tpsohu (mgr.14156) 1 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-02-11T16:07:41.371 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:40 smithi120 bash[14220]: audit 2024-02-11T16:07:39.937495+0000 mgr.smithi120.tpsohu (mgr.14156) 2 : audit [DBG] from='client.14160 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-02-11T16:07:42.144 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: Self-signed certificate created 2024-02-11T16:07:42.379 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:41 smithi120 bash[14220]: cluster 2024-02-11T16:07:40.982047+0000 mon.smithi120 (mon.0) 86 : cluster [DBG] mgrmap e12: smithi120.tpsohu(active, since 2s) 2024-02-11T16:07:42.868 INFO:teuthology.orchestra.run.smithi120.stderr:Creating initial admin user... 2024-02-11T16:07:43.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:43 smithi120 bash[14220]: audit 2024-02-11T16:07:41.936991+0000 mgr.smithi120.tpsohu (mgr.14156) 3 : audit [DBG] from='client.14166 -' entity='client.admin' cmd=[{"prefix": "dashboard create-self-signed-cert", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:07:43.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:43 smithi120 bash[14220]: audit 2024-02-11T16:07:42.138399+0000 mon.smithi120 (mon.0) 87 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:43.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:43 smithi120 bash[14220]: audit 2024-02-11T16:07:42.142752+0000 mon.smithi120 (mon.0) 88 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:44.460 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: {"username": "admin", "password": "$2b$12$hS4IcE5pLDwpF5fAIrBkxu1IA4XWLKv9S4T2e2J4AWoS0rbVkunZO", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1707667664, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-02-11T16:07:44.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:44 smithi120 bash[14220]: audit 2024-02-11T16:07:44.213875+0000 mgr.smithi120.tpsohu (mgr.14156) 4 : audit [DBG] from='client.14168 -' 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-02-11T16:07:45.069 INFO:teuthology.orchestra.run.smithi120.stderr:Fetching dashboard port number... 2024-02-11T16:07:45.771 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:45 smithi120 bash[14220]: audit 2024-02-11T16:07:44.457680+0000 mon.smithi120 (mon.0) 89 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:46.339 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: 8443 2024-02-11T16:07:46.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:46 smithi120 bash[14220]: cluster 2024-02-11T16:07:45.462055+0000 mon.smithi120 (mon.0) 90 : cluster [DBG] mgrmap e13: smithi120.tpsohu(active, since 6s) 2024-02-11T16:07:46.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:46 smithi120 bash[14220]: audit 2024-02-11T16:07:45.808436+0000 mon.smithi120 (mon.0) 91 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:07:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:46 smithi120 bash[14220]: audit 2024-02-11T16:07:46.337796+0000 mon.smithi120 (mon.0) 92 : audit [DBG] from='client.? 172.21.15.120:0/1702283882' entity='client.admin' cmd=[{"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"}]: dispatch 2024-02-11T16:07:47.059 INFO:teuthology.orchestra.run.smithi120.stderr:firewalld does not appear to be present 2024-02-11T16:07:47.060 INFO:teuthology.orchestra.run.smithi120.stderr:Not possible to open ports <[8443]>. firewalld.service is not available 2024-02-11T16:07:47.063 INFO:teuthology.orchestra.run.smithi120.stderr:Ceph Dashboard is now available at: 2024-02-11T16:07:47.064 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:47.064 INFO:teuthology.orchestra.run.smithi120.stderr: URL: https://smithi120.front.sepia.ceph.com:8443/ 2024-02-11T16:07:47.064 INFO:teuthology.orchestra.run.smithi120.stderr: User: admin 2024-02-11T16:07:47.064 INFO:teuthology.orchestra.run.smithi120.stderr: Password: 5np2rqf92q 2024-02-11T16:07:47.064 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:47.064 INFO:teuthology.orchestra.run.smithi120.stderr:Enabling autotune for osd_memory_target 2024-02-11T16:07:50.712 INFO:teuthology.orchestra.run.smithi120.stderr:/usr/bin/ceph: set mgr/dashboard/cluster/status 2024-02-11T16:07:51.625 INFO:teuthology.orchestra.run.smithi120.stderr:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-02-11T16:07:51.625 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:51.625 INFO:teuthology.orchestra.run.smithi120.stderr: sudo /home/ubuntu/cephtest/cephadm shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr:Or, if you are only running a single cluster on this host: 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr: sudo /home/ubuntu/cephtest/cephadm shell 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr:Please consider enabling telemetry to help improve Ceph: 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr: ceph telemetry on 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr:For more information see: 2024-02-11T16:07:51.626 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:51.627 INFO:teuthology.orchestra.run.smithi120.stderr: https://docs.ceph.com/en/pacific/mgr/telemetry/ 2024-02-11T16:07:51.627 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:07:51.627 INFO:teuthology.orchestra.run.smithi120.stderr:Bootstrap complete. 2024-02-11T16:07:51.664 INFO:tasks.cephadm:Fetching config... 2024-02-11T16:07:51.664 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:07:51.664 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-02-11T16:07:51.671 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-02-11T16:07:51.672 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:07:51.672 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-02-11T16:07:51.720 INFO:tasks.cephadm:Fetching mon keyring... 2024-02-11T16:07:51.720 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:07:51.720 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/keyring of=/dev/stdout 2024-02-11T16:07:51.776 INFO:tasks.cephadm:Fetching pub ssh key... 2024-02-11T16:07:51.776 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:07:51.776 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-02-11T16:07:51.825 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-02-11T16:07:51.825 DEBUG:teuthology.orchestra.run.smithi120:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAeuUlOTjTyXvgxIl1QE6QrFuUgQ+03zDH8gwbb+b9LM/5x2sYWLoqOQVZR+c+Z30zW+JJM2xCBqIKun8EXUD+ZIIg1gsHnKGORB4lsUC8zTAl7XwsCfU2CaP3lUHJ6zdMQ1pQFXOH+ZC/GijEfb3a7D0Hh9XZp18KF66n3Fgj1whczExQoE2V7hyiRd7gL7pEEL9qLf8LSVshZWJggRi5e+H+8OVV/QX8HtaJww8Q57NAgKLZ906wq4vEECiEKHVwuKrCzFctZ7wdD3ySdrqRwwlpQncjreCFO/OX0/jftsh8C8lvGKoz7d97JBISwYOU2gDCbDm+x87Kk4mIXKBKggurrmhu3cJ60ZxfG4/PgfmzoK5gmZOw8iUqHkJ6W05huAaYXBDaUs7nX6b1gn2joNtpUPxBQr4tJS5rEhgGoEFLPYAwwS5F2axT0PhiKtbwQi8PN0rvrKKkNKoSp56X4JIfr1TOGSlqVUkTsTkMw6cmdfuuek10VsSz3/aldWM= ceph-639b0136-c8f7-11ee-95b9-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-11T16:07:51.888 INFO:teuthology.orchestra.run.smithi120.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAeuUlOTjTyXvgxIl1QE6QrFuUgQ+03zDH8gwbb+b9LM/5x2sYWLoqOQVZR+c+Z30zW+JJM2xCBqIKun8EXUD+ZIIg1gsHnKGORB4lsUC8zTAl7XwsCfU2CaP3lUHJ6zdMQ1pQFXOH+ZC/GijEfb3a7D0Hh9XZp18KF66n3Fgj1whczExQoE2V7hyiRd7gL7pEEL9qLf8LSVshZWJggRi5e+H+8OVV/QX8HtaJww8Q57NAgKLZ906wq4vEECiEKHVwuKrCzFctZ7wdD3ySdrqRwwlpQncjreCFO/OX0/jftsh8C8lvGKoz7d97JBISwYOU2gDCbDm+x87Kk4mIXKBKggurrmhu3cJ60ZxfG4/PgfmzoK5gmZOw8iUqHkJ6W05huAaYXBDaUs7nX6b1gn2joNtpUPxBQr4tJS5rEhgGoEFLPYAwwS5F2axT0PhiKtbwQi8PN0rvrKKkNKoSp56X4JIfr1TOGSlqVUkTsTkMw6cmdfuuek10VsSz3/aldWM= ceph-639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:07:51.898 DEBUG:teuthology.orchestra.run.smithi183:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAeuUlOTjTyXvgxIl1QE6QrFuUgQ+03zDH8gwbb+b9LM/5x2sYWLoqOQVZR+c+Z30zW+JJM2xCBqIKun8EXUD+ZIIg1gsHnKGORB4lsUC8zTAl7XwsCfU2CaP3lUHJ6zdMQ1pQFXOH+ZC/GijEfb3a7D0Hh9XZp18KF66n3Fgj1whczExQoE2V7hyiRd7gL7pEEL9qLf8LSVshZWJggRi5e+H+8OVV/QX8HtaJww8Q57NAgKLZ906wq4vEECiEKHVwuKrCzFctZ7wdD3ySdrqRwwlpQncjreCFO/OX0/jftsh8C8lvGKoz7d97JBISwYOU2gDCbDm+x87Kk4mIXKBKggurrmhu3cJ60ZxfG4/PgfmzoK5gmZOw8iUqHkJ6W05huAaYXBDaUs7nX6b1gn2joNtpUPxBQr4tJS5rEhgGoEFLPYAwwS5F2axT0PhiKtbwQi8PN0rvrKKkNKoSp56X4JIfr1TOGSlqVUkTsTkMw6cmdfuuek10VsSz3/aldWM= ceph-639b0136-c8f7-11ee-95b9-87774f69a715' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-02-11T16:07:51.903 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:51 smithi120 bash[14220]: audit 2024-02-11T16:07:50.708155+0000 mon.smithi120 (mon.0) 93 : audit [INF] from='client.? 172.21.15.120:0/772079026' entity='client.admin' 2024-02-11T16:07:51.922 INFO:teuthology.orchestra.run.smithi183.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAeuUlOTjTyXvgxIl1QE6QrFuUgQ+03zDH8gwbb+b9LM/5x2sYWLoqOQVZR+c+Z30zW+JJM2xCBqIKun8EXUD+ZIIg1gsHnKGORB4lsUC8zTAl7XwsCfU2CaP3lUHJ6zdMQ1pQFXOH+ZC/GijEfb3a7D0Hh9XZp18KF66n3Fgj1whczExQoE2V7hyiRd7gL7pEEL9qLf8LSVshZWJggRi5e+H+8OVV/QX8HtaJww8Q57NAgKLZ906wq4vEECiEKHVwuKrCzFctZ7wdD3ySdrqRwwlpQncjreCFO/OX0/jftsh8C8lvGKoz7d97JBISwYOU2gDCbDm+x87Kk4mIXKBKggurrmhu3cJ60ZxfG4/PgfmzoK5gmZOw8iUqHkJ6W05huAaYXBDaUs7nX6b1gn2joNtpUPxBQr4tJS5rEhgGoEFLPYAwwS5F2axT0PhiKtbwQi8PN0rvrKKkNKoSp56X4JIfr1TOGSlqVUkTsTkMw6cmdfuuek10VsSz3/aldWM= ceph-639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:07:51.933 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-02-11T16:07:56.264 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-02-11T16:07:56.265 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-02-11T16:07:56.657 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:07:56 smithi120 bash[14220]: audit 2024-02-11T16:07:55.277653+0000 mon.smithi120 (mon.0) 94 : audit [INF] from='client.? 172.21.15.120:0/3666659247' entity='client.admin' 2024-02-11T16:08:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:00 smithi120 bash[14220]: cluster 2024-02-11T16:07:58.925873+0000 mgr.smithi120.tpsohu (mgr.14156) 5 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:00 smithi120 bash[14220]: audit 2024-02-11T16:07:59.339715+0000 mon.smithi120 (mon.0) 95 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:00 smithi120 bash[14220]: audit 2024-02-11T16:07:59.648942+0000 mon.smithi120 (mon.0) 96 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:08:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:00 smithi120 bash[14220]: audit 2024-02-11T16:07:59.655795+0000 mon.smithi120 (mon.0) 97 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:00 smithi120 bash[14220]: audit 2024-02-11T16:07:59.846568+0000 mon.smithi120 (mon.0) 98 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:00.677 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi183 2024-02-11T16:08:00.677 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:08:00.677 DEBUG:teuthology.orchestra.run.smithi183:> dd of=/etc/ceph/ceph.conf 2024-02-11T16:08:00.684 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:08:00.685 DEBUG:teuthology.orchestra.run.smithi183:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-11T16:08:00.734 INFO:tasks.cephadm:Adding host smithi183 to orchestrator... 2024-02-11T16:08:00.734 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph orch host add smithi183 2024-02-11T16:08:01.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:01 smithi120 bash[14220]: cephadm 2024-02-11T16:07:59.670238+0000 mgr.smithi120.tpsohu (mgr.14156) 6 : cephadm [INF] Deploying daemon alertmanager.smithi120 on smithi120 2024-02-11T16:08:01.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:01 smithi120 bash[14220]: audit 2024-02-11T16:07:59.841025+0000 mgr.smithi120.tpsohu (mgr.14156) 7 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:08:02.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:02 smithi120 bash[14220]: cluster 2024-02-11T16:08:00.926227+0000 mgr.smithi120.tpsohu (mgr.14156) 8 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:04.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:04 smithi120 bash[14220]: cluster 2024-02-11T16:08:02.926686+0000 mgr.smithi120.tpsohu (mgr.14156) 9 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:06.542 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:06 smithi120 bash[14220]: cluster 2024-02-11T16:08:04.927052+0000 mgr.smithi120.tpsohu (mgr.14156) 10 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:08.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:08 smithi120 bash[14220]: cluster 2024-02-11T16:08:06.927524+0000 mgr.smithi120.tpsohu (mgr.14156) 11 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:08.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:08 smithi120 bash[14220]: audit 2024-02-11T16:08:07.490882+0000 mon.smithi120 (mon.0) 99 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:08.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:08 smithi120 bash[14220]: audit 2024-02-11T16:08:07.494213+0000 mon.smithi120 (mon.0) 100 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-11T16:08:08.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:08 smithi120 bash[14220]: audit 2024-02-11T16:08:07.497319+0000 mon.smithi120 (mon.0) 101 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-11T16:08:08.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:08 smithi120 bash[14220]: audit 2024-02-11T16:08:07.498319+0000 mon.smithi120 (mon.0) 102 : audit [DBG] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:08:09.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:09 smithi120 bash[14220]: cephadm 2024-02-11T16:08:07.498966+0000 mgr.smithi120.tpsohu (mgr.14156) 12 : cephadm [INF] Deploying daemon crash.smithi120 on smithi120 2024-02-11T16:08:09.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:09 smithi120 bash[14220]: audit 2024-02-11T16:08:09.134501+0000 mon.smithi120 (mon.0) 103 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:10 smithi120 bash[14220]: cluster 2024-02-11T16:08:08.928025+0000 mgr.smithi120.tpsohu (mgr.14156) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:10 smithi120 bash[14220]: audit 2024-02-11T16:08:10.180632+0000 mon.smithi120 (mon.0) 104 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:10 smithi120 bash[14220]: audit 2024-02-11T16:08:10.268809+0000 mon.smithi120 (mon.0) 105 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:10 smithi120 bash[14220]: audit 2024-02-11T16:08:10.271044+0000 mon.smithi120 (mon.0) 106 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:10 smithi120 bash[14220]: audit 2024-02-11T16:08:10.273787+0000 mon.smithi120 (mon.0) 107 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-11T16:08:10.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:10 smithi120 bash[14220]: audit 2024-02-11T16:08:10.277444+0000 mon.smithi120 (mon.0) 108 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:11.658 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:11 smithi120 bash[14220]: audit 2024-02-11T16:08:10.274503+0000 mgr.smithi120.tpsohu (mgr.14156) 14 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-02-11T16:08:11.658 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:11 smithi120 bash[14220]: cephadm 2024-02-11T16:08:10.293580+0000 mgr.smithi120.tpsohu (mgr.14156) 15 : cephadm [INF] Deploying daemon grafana.smithi120 on smithi120 2024-02-11T16:08:12.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:12 smithi120 bash[14220]: cluster 2024-02-11T16:08:10.928388+0000 mgr.smithi120.tpsohu (mgr.14156) 16 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:14.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:14 smithi120 bash[14220]: cluster 2024-02-11T16:08:12.928791+0000 mgr.smithi120.tpsohu (mgr.14156) 17 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:14.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:14 smithi120 bash[14220]: audit 2024-02-11T16:08:14.139963+0000 mon.smithi120 (mon.0) 109 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:16 smithi120 bash[14220]: cluster 2024-02-11T16:08:14.929107+0000 mgr.smithi120.tpsohu (mgr.14156) 18 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:18.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:18 smithi120 bash[14220]: cluster 2024-02-11T16:08:16.929456+0000 mgr.smithi120.tpsohu (mgr.14156) 19 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:20.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:20 smithi120 bash[14220]: cluster 2024-02-11T16:08:18.929783+0000 mgr.smithi120.tpsohu (mgr.14156) 20 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:22 smithi120 bash[14220]: cluster 2024-02-11T16:08:20.930180+0000 mgr.smithi120.tpsohu (mgr.14156) 21 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:24.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:24 smithi120 bash[14220]: cluster 2024-02-11T16:08:22.930611+0000 mgr.smithi120.tpsohu (mgr.14156) 22 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:26.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:26 smithi120 bash[14220]: cluster 2024-02-11T16:08:24.930986+0000 mgr.smithi120.tpsohu (mgr.14156) 23 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:28.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:28 smithi120 bash[14220]: cluster 2024-02-11T16:08:26.931447+0000 mgr.smithi120.tpsohu (mgr.14156) 24 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:30.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:30 smithi120 bash[14220]: cluster 2024-02-11T16:08:28.931864+0000 mgr.smithi120.tpsohu (mgr.14156) 25 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:32.347 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:32 smithi120 bash[14220]: cluster 2024-02-11T16:08:30.932259+0000 mgr.smithi120.tpsohu (mgr.14156) 26 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:08:32.348 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:32 smithi120 bash[14220]: audit 2024-02-11T16:08:31.076874+0000 mon.smithi120 (mon.0) 110 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:32.348 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:32 smithi120 bash[14220]: cephadm 2024-02-11T16:08:31.079875+0000 mgr.smithi120.tpsohu (mgr.14156) 27 : cephadm [INF] Deploying daemon node-exporter.smithi120 on smithi120 2024-02-11T16:08:32.348 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:32 smithi120 bash[14220]: audit 2024-02-11T16:08:31.768862+0000 mon.smithi120 (mon.0) 111 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:32.348 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:32 smithi120 bash[14220]: audit 2024-02-11T16:08:31.772658+0000 mon.smithi120 (mon.0) 112 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr module enable", "module": "prometheus"}]: dispatch 2024-02-11T16:08:34.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:33 smithi120 bash[14220]: audit 2024-02-11T16:08:32.770592+0000 mon.smithi120 (mon.0) 113 : audit [INF] from='mgr.14156 172.21.15.120:0/4153280499' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-02-11T16:08:34.032 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:33 smithi120 bash[14220]: cluster 2024-02-11T16:08:32.770670+0000 mon.smithi120 (mon.0) 114 : cluster [DBG] mgrmap e14: smithi120.tpsohu(active, since 53s) 2024-02-11T16:08:39.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: cluster 2024-02-11T16:08:39.432441+0000 mon.smithi120 (mon.0) 115 : cluster [INF] Active manager daemon smithi120.tpsohu restarted 2024-02-11T16:08:39.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: cluster 2024-02-11T16:08:39.432908+0000 mon.smithi120 (mon.0) 116 : cluster [INF] Activating manager daemon smithi120.tpsohu 2024-02-11T16:08:39.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: cluster 2024-02-11T16:08:39.438697+0000 mon.smithi120 (mon.0) 117 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-02-11T16:08:39.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: cluster 2024-02-11T16:08:39.438928+0000 mon.smithi120 (mon.0) 118 : cluster [DBG] mgrmap e15: smithi120.tpsohu(active, starting, since 0.00619676s) 2024-02-11T16:08:39.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: audit 2024-02-11T16:08:39.441675+0000 mon.smithi120 (mon.0) 119 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi120"}]: dispatch 2024-02-11T16:08:39.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: audit 2024-02-11T16:08:39.442609+0000 mon.smithi120 (mon.0) 120 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr metadata", "who": "smithi120.tpsohu", "id": "smithi120.tpsohu"}]: dispatch 2024-02-11T16:08:39.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: audit 2024-02-11T16:08:39.443447+0000 mon.smithi120 (mon.0) 121 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mds metadata"}]: dispatch 2024-02-11T16:08:39.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: audit 2024-02-11T16:08:39.443665+0000 mon.smithi120 (mon.0) 122 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata"}]: dispatch 2024-02-11T16:08:39.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: audit 2024-02-11T16:08:39.443838+0000 mon.smithi120 (mon.0) 123 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata"}]: dispatch 2024-02-11T16:08:39.615 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:39 smithi120 bash[14220]: cluster 2024-02-11T16:08:39.446996+0000 mon.smithi120 (mon.0) 124 : cluster [INF] Manager daemon smithi120.tpsohu is now available 2024-02-11T16:08:40.643 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:40 smithi120 bash[14220]: audit 2024-02-11T16:08:39.575463+0000 mon.smithi120 (mon.0) 125 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:08:40.643 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:40 smithi120 bash[14220]: audit 2024-02-11T16:08:39.580878+0000 mon.smithi120 (mon.0) 126 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:08:40.643 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:40 smithi120 bash[14220]: audit 2024-02-11T16:08:39.601041+0000 mon.smithi120 (mon.0) 127 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:40.643 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:40 smithi120 bash[14220]: audit 2024-02-11T16:08:39.625655+0000 mon.smithi120 (mon.0) 128 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.tpsohu/mirror_snapshot_schedule"}]: dispatch 2024-02-11T16:08:40.644 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:40 smithi120 bash[14220]: audit 2024-02-11T16:08:39.633831+0000 mon.smithi120 (mon.0) 129 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi120.tpsohu/trash_purge_schedule"}]: dispatch 2024-02-11T16:08:40.644 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:40 smithi120 bash[14220]: cluster 2024-02-11T16:08:40.443855+0000 mon.smithi120 (mon.0) 130 : cluster [DBG] mgrmap e16: smithi120.tpsohu(active, since 1.01113s) 2024-02-11T16:08:42.755 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:42 smithi120 bash[14220]: cluster 2024-02-11T16:08:41.495128+0000 mon.smithi120 (mon.0) 131 : cluster [DBG] mgrmap e17: smithi120.tpsohu(active, since 2s) 2024-02-11T16:08:46.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:46 smithi120 bash[14220]: audit 2024-02-11T16:08:45.396484+0000 mon.smithi120 (mon.0) 132 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:46 smithi120 bash[14220]: audit 2024-02-11T16:08:45.666570+0000 mon.smithi120 (mon.0) 133 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd/host:smithi120", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:08:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:46 smithi120 bash[14220]: audit 2024-02-11T16:08:45.667905+0000 mon.smithi120 (mon.0) 134 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:08:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:46 smithi120 bash[14220]: audit 2024-02-11T16:08:45.668851+0000 mon.smithi120 (mon.0) 135 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:08:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:46 smithi120 bash[14220]: cephadm 2024-02-11T16:08:45.670226+0000 mgr.smithi120.tpsohu (mgr.14180) 1 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-02-11T16:08:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:46 smithi120 bash[14220]: cephadm 2024-02-11T16:08:45.707619+0000 mgr.smithi120.tpsohu (mgr.14180) 2 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.client.admin.keyring 2024-02-11T16:08:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:46 smithi120 bash[14220]: audit 2024-02-11T16:08:45.766853+0000 mon.smithi120 (mon.0) 136 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:46 smithi120 bash[14220]: audit 2024-02-11T16:08:45.770629+0000 mon.smithi120 (mon.0) 137 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:46.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:46 smithi120 bash[14220]: cephadm 2024-02-11T16:08:45.787971+0000 mgr.smithi120.tpsohu (mgr.14180) 3 : cephadm [INF] Deploying daemon prometheus.smithi120 on smithi120 2024-02-11T16:08:47.373 INFO:teuthology.orchestra.run.smithi183.stdout:Added host 'smithi183' with addr '172.21.15.183' 2024-02-11T16:08:47.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:47 smithi120 bash[14220]: audit 2024-02-11T16:08:46.530881+0000 mgr.smithi120.tpsohu (mgr.14180) 4 : audit [DBG] from='client.14186 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi183", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:08:47.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:47 smithi120 bash[14220]: audit 2024-02-11T16:08:47.371573+0000 mon.smithi120 (mon.0) 138 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:48.146 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph orch host ls --format=json 2024-02-11T16:08:48.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:48 smithi120 bash[14220]: cephadm 2024-02-11T16:08:47.372190+0000 mgr.smithi120.tpsohu (mgr.14180) 5 : cephadm [INF] Added host smithi183 2024-02-11T16:08:50.890 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-02-11T16:08:50.890 INFO:teuthology.orchestra.run.smithi183.stdout:[{"addr": "172.21.15.120", "hostname": "smithi120", "labels": [], "status": ""}, {"addr": "172.21.15.183", "hostname": "smithi183", "labels": [], "status": ""}] 2024-02-11T16:08:51.552 INFO:tasks.cephadm:Setting crush tunables to default 2024-02-11T16:08:51.552 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd crush tunables default 2024-02-11T16:08:52.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:51 smithi120 bash[14220]: audit 2024-02-11T16:08:50.887882+0000 mgr.smithi120.tpsohu (mgr.14180) 6 : audit [DBG] from='client.14188 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-11T16:08:57.329 INFO:teuthology.orchestra.run.smithi120.stderr:adjusted tunables profile to default 2024-02-11T16:08:57.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:57 smithi120 bash[14220]: audit 2024-02-11T16:08:57.268039+0000 mon.smithi120 (mon.0) 139 : audit [INF] from='client.? 172.21.15.120:0/1284302018' entity='client.admin' cmd=[{"prefix": "osd crush tunables", "profile": "default"}]: dispatch 2024-02-11T16:08:58.441 INFO:tasks.cephadm:Adding mon.smithi120 on smithi120 2024-02-11T16:08:58.442 INFO:tasks.cephadm:Adding mon.smithi183 on smithi183 2024-02-11T16:08:58.442 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph orch apply mon '2;smithi120:172.21.15.120=smithi120;smithi183:172.21.15.183=smithi183' 2024-02-11T16:08:58.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:58 smithi120 bash[14220]: audit 2024-02-11T16:08:57.324309+0000 mon.smithi120 (mon.0) 140 : audit [INF] from='client.? 172.21.15.120:0/1284302018' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-02-11T16:08:58.614 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:58 smithi120 bash[14220]: cluster 2024-02-11T16:08:57.324378+0000 mon.smithi120 (mon.0) 141 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-11T16:08:59.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:59 smithi120 bash[14220]: audit 2024-02-11T16:08:58.593546+0000 mon.smithi120 (mon.0) 142 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:08:59.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:59 smithi120 bash[14220]: audit 2024-02-11T16:08:58.595473+0000 mon.smithi120 (mon.0) 143 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:08:59.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:08:59 smithi120 bash[14220]: audit 2024-02-11T16:08:59.099780+0000 mon.smithi120 (mon.0) 144 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:00.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:00 smithi120 bash[14220]: cluster 2024-02-11T16:08:59.445071+0000 mgr.smithi120.tpsohu (mgr.14180) 7 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:00.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:00 smithi120 bash[14220]: audit 2024-02-11T16:08:59.608853+0000 mon.smithi120 (mon.0) 145 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:01.281 INFO:teuthology.orchestra.run.smithi183.stdout:Scheduled mon update... 2024-02-11T16:09:01.981 DEBUG:teuthology.orchestra.run.smithi183:mon.smithi183> sudo journalctl -f -n 0 -u ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi183.service 2024-02-11T16:09:01.984 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-11T16:09:01.984 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph mon dump -f json 2024-02-11T16:09:02.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:01 smithi120 bash[14220]: audit 2024-02-11T16:09:00.684140+0000 mon.smithi120 (mon.0) 146 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:02.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:01 smithi120 bash[14220]: audit 2024-02-11T16:09:01.279737+0000 mon.smithi120 (mon.0) 147 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:02.252 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:-- Logs begin at Sun 2022-08-14 12:20:24 UTC. -- 2024-02-11T16:09:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:02 smithi120 bash[14220]: audit 2024-02-11T16:09:01.268379+0000 mgr.smithi120.tpsohu (mgr.14180) 8 : audit [DBG] from='client.14192 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi120:172.21.15.120=smithi120;smithi183:172.21.15.183=smithi183", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:09:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:02 smithi120 bash[14220]: cephadm 2024-02-11T16:09:01.274761+0000 mgr.smithi120.tpsohu (mgr.14180) 9 : cephadm [INF] Saving service mon spec with placement smithi120:172.21.15.120=smithi120;smithi183:172.21.15.183=smithi183;count:2 2024-02-11T16:09:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:02 smithi120 bash[14220]: cluster 2024-02-11T16:09:01.445532+0000 mgr.smithi120.tpsohu (mgr.14180) 10 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:05.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:04 smithi120 bash[14220]: cluster 2024-02-11T16:09:03.445997+0000 mgr.smithi120.tpsohu (mgr.14180) 11 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:05.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:04 smithi120 bash[14220]: audit 2024-02-11T16:09:04.379721+0000 mon.smithi120 (mon.0) 148 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:06.213 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-02-11T16:09:06.213 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"639b0136-c8f7-11ee-95b9-87774f69a715","modified":"2024-02-11T16:06:26.352525Z","created":"2024-02-11T16:06:26.352525Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi120","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:3300","nonce":0},{"type":"v1","addr":"172.21.15.120:6789","nonce":0}]},"addr":"172.21.15.120:6789/0","public_addr":"172.21.15.120:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-11T16:09:06.216 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-02-11T16:09:07.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:06 smithi120 bash[14220]: cluster 2024-02-11T16:09:05.446467+0000 mgr.smithi120.tpsohu (mgr.14180) 12 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:07.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:06 smithi120 bash[14220]: audit 2024-02-11T16:09:06.212078+0000 mon.smithi120 (mon.0) 149 : audit [DBG] from='client.? 172.21.15.183:0/1696821454' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-11T16:09:07.910 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-11T16:09:07.910 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph mon dump -f json 2024-02-11T16:09:09.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: cluster 2024-02-11T16:09:07.446893+0000 mgr.smithi120.tpsohu (mgr.14180) 13 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:09.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:07.936137+0000 mon.smithi120 (mon.0) 150 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:09.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:08.357254+0000 mon.smithi120 (mon.0) 151 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:09.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:08.359111+0000 mon.smithi120 (mon.0) 152 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd/host:smithi183", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:09:09.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:08.361134+0000 mon.smithi120 (mon.0) 153 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:09.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:08.362688+0000 mon.smithi120 (mon.0) 154 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:09:09.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:08.595551+0000 mon.smithi120 (mon.0) 155 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:09.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:08.601047+0000 mon.smithi120 (mon.0) 156 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:09.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:08.603922+0000 mon.smithi120 (mon.0) 157 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-11T16:09:09.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:08.607073+0000 mon.smithi120 (mon.0) 158 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-02-11T16:09:09.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:08 smithi120 bash[14220]: audit 2024-02-11T16:09:08.608295+0000 mon.smithi120 (mon.0) 159 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:09 smithi120 bash[14220]: cephadm 2024-02-11T16:09:08.364804+0000 mgr.smithi120.tpsohu (mgr.14180) 14 : cephadm [INF] Updating smithi183:/etc/ceph/ceph.conf 2024-02-11T16:09:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:09 smithi120 bash[14220]: cephadm 2024-02-11T16:09:08.467715+0000 mgr.smithi120.tpsohu (mgr.14180) 15 : cephadm [INF] Updating smithi183:/etc/ceph/ceph.client.admin.keyring 2024-02-11T16:09:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:09 smithi120 bash[14220]: cephadm 2024-02-11T16:09:08.609445+0000 mgr.smithi120.tpsohu (mgr.14180) 16 : cephadm [INF] Deploying daemon crash.smithi183 on smithi183 2024-02-11T16:09:11.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:10 smithi120 bash[14220]: cluster 2024-02-11T16:09:09.447395+0000 mgr.smithi120.tpsohu (mgr.14180) 17 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:11.904 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-02-11T16:09:11.904 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"639b0136-c8f7-11ee-95b9-87774f69a715","modified":"2024-02-11T16:06:26.352525Z","created":"2024-02-11T16:06:26.352525Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi120","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:3300","nonce":0},{"type":"v1","addr":"172.21.15.120:6789","nonce":0}]},"addr":"172.21.15.120:6789/0","public_addr":"172.21.15.120:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-11T16:09:11.907 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-02-11T16:09:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:12 smithi120 bash[14220]: cluster 2024-02-11T16:09:11.447856+0000 mgr.smithi120.tpsohu (mgr.14180) 18 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:12 smithi120 bash[14220]: audit 2024-02-11T16:09:11.903349+0000 mon.smithi120 (mon.0) 160 : audit [DBG] from='client.? 172.21.15.183:0/1568982256' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-11T16:09:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:12 smithi120 bash[14220]: audit 2024-02-11T16:09:12.343595+0000 mon.smithi120 (mon.0) 161 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:13.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:12 smithi120 bash[14220]: audit 2024-02-11T16:09:12.347509+0000 mon.smithi120 (mon.0) 162 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.pltuwd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-11T16:09:13.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:12 smithi120 bash[14220]: audit 2024-02-11T16:09:12.350278+0000 mon.smithi120 (mon.0) 163 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.pltuwd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-02-11T16:09:13.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:12 smithi120 bash[14220]: audit 2024-02-11T16:09:12.351466+0000 mon.smithi120 (mon.0) 164 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-11T16:09:13.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:12 smithi120 bash[14220]: audit 2024-02-11T16:09:12.353027+0000 mon.smithi120 (mon.0) 165 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:14.008 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-11T16:09:14.009 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph mon dump -f json 2024-02-11T16:09:14.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:13 smithi120 bash[14220]: cephadm 2024-02-11T16:09:12.354138+0000 mgr.smithi120.tpsohu (mgr.14180) 19 : cephadm [INF] Deploying daemon mgr.smithi183.pltuwd on smithi183 2024-02-11T16:09:15.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:14 smithi120 bash[14220]: cluster 2024-02-11T16:09:13.448307+0000 mgr.smithi120.tpsohu (mgr.14180) 20 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:15.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:14 smithi120 bash[14220]: audit 2024-02-11T16:09:14.617262+0000 mon.smithi120 (mon.0) 166 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:16 smithi120 bash[14220]: audit 2024-02-11T16:09:15.329764+0000 mon.smithi120 (mon.0) 167 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:16 smithi120 bash[14220]: audit 2024-02-11T16:09:15.334417+0000 mon.smithi120 (mon.0) 168 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-11T16:09:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:16 smithi120 bash[14220]: audit 2024-02-11T16:09:15.335776+0000 mon.smithi120 (mon.0) 169 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:16 smithi120 bash[14220]: cephadm 2024-02-11T16:09:15.336749+0000 mgr.smithi120.tpsohu (mgr.14180) 21 : cephadm [INF] Deploying daemon mon.smithi183 on smithi183 2024-02-11T16:09:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:16 smithi120 bash[14220]: cluster 2024-02-11T16:09:15.448742+0000 mgr.smithi120.tpsohu (mgr.14180) 22 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:18.120 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-02-11T16:09:18.120 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":1,"fsid":"639b0136-c8f7-11ee-95b9-87774f69a715","modified":"2024-02-11T16:06:26.352525Z","created":"2024-02-11T16:06:26.352525Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi120","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:3300","nonce":0},{"type":"v1","addr":"172.21.15.120:6789","nonce":0}]},"addr":"172.21.15.120:6789/0","public_addr":"172.21.15.120:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-02-11T16:09:18.122 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 1 2024-02-11T16:09:18.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:18 smithi120 bash[14220]: cluster 2024-02-11T16:09:17.449154+0000 mgr.smithi120.tpsohu (mgr.14180) 23 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:18.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:18 smithi120 bash[14220]: audit 2024-02-11T16:09:18.119429+0000 mon.smithi120 (mon.0) 170 : audit [DBG] from='client.? 172.21.15.183:0/4066574012' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-11T16:09:20.445 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-02-11T16:09:20.446 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph mon dump -f json 2024-02-11T16:09:20.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:20 smithi120 bash[14220]: cluster 2024-02-11T16:09:19.449565+0000 mgr.smithi120.tpsohu (mgr.14180) 24 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:20.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:20 smithi120 bash[14220]: audit 2024-02-11T16:09:19.623833+0000 mon.smithi120 (mon.0) 171 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:21.301 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:21 smithi183 systemd[1]: Started Ceph mon.smithi183 for 639b0136-c8f7-11ee-95b9-87774f69a715. 2024-02-11T16:09:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:22 smithi120 bash[14220]: audit 2024-02-11T16:09:21.273678+0000 mon.smithi120 (mon.0) 172 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:22 smithi120 bash[14220]: cephadm 2024-02-11T16:09:21.276582+0000 mgr.smithi120.tpsohu (mgr.14180) 25 : cephadm [INF] Deploying daemon node-exporter.smithi183 on smithi183 2024-02-11T16:09:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:22 smithi120 bash[14220]: cluster 2024-02-11T16:09:21.450040+0000 mgr.smithi120.tpsohu (mgr.14180) 26 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:22.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:22 smithi120 bash[14220]: audit 2024-02-11T16:09:21.945965+0000 mon.smithi120 (mon.0) 173 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:22.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:22 smithi120 bash[14220]: audit 2024-02-11T16:09:21.949046+0000 mon.smithi120 (mon.0) 174 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.020+0000 7f7d74348880 0 set uid:gid to 167:167 (ceph:ceph) 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.020+0000 7f7d74348880 0 ceph version 16.2.14-530-g5db25abe (5db25abe00e218b6920215c0bef70af7e47c7152) pacific (stable), process ceph-mon, pid 7 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.020+0000 7f7d74348880 0 pidfile_write: ignore empty --pid-file 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 0 load: jerasure load: lrc load: isa 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: RocksDB version: 6.8.1 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Git sha rocksdb_build_git_sha:@0@ 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Compile date Feb 8 2024 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: DB SUMMARY 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: CURRENT file: CURRENT 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: IDENTITY file: IDENTITY 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: MANIFEST file: MANIFEST-000001 size: 13 Bytes 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi183/store.db dir, Total Num: 0, files: 2024-02-11T16:09:23.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi183/store.db: 000003.log size: 511 ; 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.error_if_exists: 0 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.create_if_missing: 0 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.paranoid_checks: 1 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.env: 0x560bba1c3080 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.fs: Posix File System 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.info_log: 0x560bbb8c8560 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_file_opening_threads: 16 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.statistics: (nil) 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.use_fsync: 0 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_log_file_size: 0 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.log_file_time_to_roll: 0 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.keep_log_file_num: 1000 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.recycle_log_file_num: 0 2024-02-11T16:09:23.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.allow_fallocate: 1 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.allow_mmap_reads: 0 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.allow_mmap_writes: 0 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.use_direct_reads: 0 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.create_missing_column_families: 0 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.db_log_dir: 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.wal_dir: /var/lib/ceph/mon/ceph-smithi183/store.db 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.table_cache_numshardbits: 6 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_subcompactions: 1 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_background_flushes: -1 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-02-11T16:09:23.361 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.advise_random_on_open: 1 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.db_write_buffer_size: 0 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.write_buffer_manager: 0x560bbc5bc3f0 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.new_table_reader_for_compaction_inputs: 0 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.use_adaptive_mutex: 0 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.rate_limiter: (nil) 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.wal_recovery_mode: 2 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.enable_thread_tracking: 0 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.enable_pipelined_write: 0 2024-02-11T16:09:23.362 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.unordered_write: 0 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.row_cache: None 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.wal_filter: None 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.allow_ingest_behind: 0 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.preserve_deletes: 0 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.two_write_queues: 0 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.manual_wal_flush: 0 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.atomic_flush: 0 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-02-11T16:09:23.363 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.persist_stats_to_disk: 0 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.log_readahead_size: 0 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.sst_file_checksum_func: Unknown 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_background_jobs: 2 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_background_compactions: -1 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.delayed_write_rate : 16777216 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_total_wal_size: 0 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.stats_dump_period_sec: 600 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.stats_persist_period_sec: 600 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_open_files: -1 2024-02-11T16:09:23.364 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.bytes_per_sync: 0 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_readahead_size: 0 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Compression algorithms supported: 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: kZSTD supported: 0 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: kXpressCompression supported: 0 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: kLZ4HCCompression supported: 1 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: kLZ4Compression supported: 1 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: kBZip2Compression supported: 0 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: kZlibCompression supported: 1 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: kSnappyCompression supported: 1 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: [version_set.cc:4413] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi183/store.db/MANIFEST-000001 2024-02-11T16:09:23.365 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: [column_family.cc:552] --------------- Options for column family [default]: 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.merge_operator: 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_filter: None 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_filter_factory: None 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.table_factory: BlockBasedTable 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x560bbb86bd10) 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: cache_index_and_filter_blocks: 1 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: cache_index_and_filter_blocks_with_high_priority: 0 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: pin_top_level_index_and_filter: 1 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: index_type: 0 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: data_block_index_type: 0 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: index_shortening: 1 2024-02-11T16:09:23.366 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: data_block_hash_table_util_ratio: 0.750000 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: hash_index_allow_collision: 1 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: checksum: 1 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: no_block_cache: 0 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: block_cache: 0x560bbb8a2f10 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: block_cache_name: BinnedLRUCache 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: block_cache_options: 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: capacity : 536870912 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: num_shard_bits : 4 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: strict_capacity_limit : 0 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: high_pri_pool_ratio: 0.000 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: block_cache_compressed: (nil) 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: persistent_cache: (nil) 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: block_size: 4096 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: block_size_deviation: 10 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: block_restart_interval: 16 2024-02-11T16:09:23.367 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: index_block_restart_interval: 1 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: metadata_block_size: 4096 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: partition_filters: 0 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: use_delta_encoding: 1 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: filter_policy: rocksdb.BuiltinBloomFilter 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: whole_key_filtering: 1 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: verify_compression: 0 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: read_amp_bytes_per_bit: 0 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: format_version: 2 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: enable_index_compression: 1 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: block_align: 0 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.write_buffer_size: 33554432 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_write_buffer_number: 2 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compression: NoCompression 2024-02-11T16:09:23.368 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.bottommost_compression: Disabled 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.prefix_extractor: nullptr 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.num_levels: 7 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compression_opts.window_bits: -14 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compression_opts.level: 32767 2024-02-11T16:09:23.369 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compression_opts.strategy: 0 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compression_opts.enabled: false 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.target_file_size_base: 67108864 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.target_file_size_multiplier: 1 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-02-11T16:09:23.370 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.arena_block_size: 4194304 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.rate_limit_delay_max_milliseconds: 100 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.disable_auto_compactions: 0 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-02-11T16:09:23.371 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.table_properties_collectors: 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.inplace_update_support: 0 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.memtable_huge_page_size: 0 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.bloom_locality: 0 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.max_successive_merges: 0 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.paranoid_file_checks: 0 2024-02-11T16:09:23.372 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.force_consistency_checks: 0 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.report_bg_io_stats: 0 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.ttl: 2592000 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: [version_set.cc:4568] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi183/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-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: [version_set.cc:4577] Column family [default] (ID 0), log number is 0 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707667763030323, "job": 1, "event": "recovery_started", "log_files": [3]} 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.024+0000 7f7d74348880 4 rocksdb: [db_impl/db_impl_open.cc:760] Recovering log #3 mode 2 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.028+0000 7f7d74348880 3 rocksdb: [le/block_based/filter_policy.cc:584] Using legacy Bloom filter with high (20) bits/key. Dramatic filter space and/or accuracy improvement is available with format_version>=5. 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.028+0000 7f7d74348880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707667763031246, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 4, "file_size": 1437, "table_properties": {"data_size": 523, "index_size": 40, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 0, "index_value_is_delta_encoded": 0, "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_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "rocksdb.BuiltinBloomFilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; ", "creation_time": 1707667763, "oldest_key_time": 3, "file_creation_time": 0}} 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.028+0000 7f7d74348880 4 rocksdb: [version_set.cc:3826] Creating manifest 5 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.028+0000 7f7d74348880 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1707667763032059, "job": 1, "event": "recovery_finished"} 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.028+0000 7f7d74348880 4 rocksdb: DB pointer 0x560bbb96b800 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.028+0000 7f7d5b13a700 4 rocksdb: [db_impl/db_impl.cc:850] ------- DUMPING STATS ------- 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.028+0000 7f7d5b13a700 4 rocksdb: [db_impl/db_impl.cc:851] 2024-02-11T16:09:23.373 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ** DB Stats ** 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 MB, 0.00 MB/s 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ** Compaction Stats [default] ** 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: 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 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ** Compaction Stats [default] ** 2024-02-11T16:09:23.374 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: 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 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: AddFile(Total Files): cumulative 0, interval 0 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: AddFile(Keys): cumulative 0, interval 0 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Cumulative compaction: 0.00 GB write, 0.29 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Interval compaction: 0.00 GB write, 0.29 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: 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-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ** File Read Latency Histogram By Level [default] ** 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ** Compaction Stats [default] ** 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: 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 2024-02-11T16:09:23.375 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:09:23.376 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: L0 1/0 1.40 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-02-11T16:09:23.376 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Sum 1/0 1.40 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-02-11T16:09:23.376 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: 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 2024-02-11T16:09:23.376 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ** Compaction Stats [default] ** 2024-02-11T16:09:23.376 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: 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 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.9 0.00 0.00 1 0.001 0 0 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Uptime(secs): 0.0 total, 0.0 interval 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Flush(GB): cumulative 0.000, interval 0.000 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: AddFile(GB): cumulative 0.000, interval 0.000 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: AddFile(Total Files): cumulative 0, interval 0 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: AddFile(L0 Files): cumulative 0, interval 0 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: AddFile(Keys): cumulative 0, interval 0 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Cumulative compaction: 0.00 GB write, 0.29 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: 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-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: ** File Read Latency Histogram By Level [default] ** 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.028+0000 7f7d74348880 0 mon.smithi183 does not exist in monmap, will attempt to join an existing cluster 2024-02-11T16:09:23.377 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.028+0000 7f7d74348880 0 using public_addr v2:172.21.15.183:0/0 -> [v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0] 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.032+0000 7f7d74348880 0 starting mon.smithi183 rank -1 at public addrs [v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0] at bind addrs [v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi183 fsid 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.032+0000 7f7d74348880 1 mon.smithi183@-1(???) e0 preinit fsid 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.068+0000 7f7d5d93f700 0 mon.smithi183@-1(synchronizing).mds e1 new map 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.068+0000 7f7d5d93f700 0 mon.smithi183@-1(synchronizing).mds e1 print_map 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: e1 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: enable_multiple, ever_enabled_multiple: 1,1 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: 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} 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: legacy client fscid: -1 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: No filesystems configured 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.068+0000 7f7d5d93f700 1 mon.smithi183@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.068+0000 7f7d5d93f700 1 mon.smithi183@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.068+0000 7f7d5d93f700 1 mon.smithi183@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.068+0000 7f7d5d93f700 1 mon.smithi183@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-02-11T16:09:23.378 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.068+0000 7f7d5d93f700 1 mon.smithi183@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.068+0000 7f7d5d93f700 1 mon.smithi183@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.068+0000 7f7d5d93f700 1 mon.smithi183@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.072+0000 7f7d5d93f700 0 mon.smithi183@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.072+0000 7f7d5d93f700 0 mon.smithi183@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.072+0000 7f7d5d93f700 0 mon.smithi183@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.072+0000 7f7d5d93f700 0 mon.smithi183@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: audit 2024-02-11T16:09:21.273678+0000 mon.smithi120 (mon.0) 172 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: cephadm 2024-02-11T16:09:21.276582+0000 mgr.smithi120.tpsohu (mgr.14180) 25 : cephadm [INF] Deploying daemon node-exporter.smithi183 on smithi183 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: cluster 2024-02-11T16:09:21.450040+0000 mgr.smithi120.tpsohu (mgr.14180) 26 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: audit 2024-02-11T16:09:21.945965+0000 mon.smithi120 (mon.0) 173 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: audit 2024-02-11T16:09:21.949046+0000 mon.smithi120 (mon.0) 174 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:09:23.379 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:23 smithi183 bash[18593]: debug 2024-02-11T16:09:23.072+0000 7f7d5d93f700 1 mon.smithi183@-1(synchronizing).paxosservice(auth 1..6) refresh upgraded, format 0 -> 3 2024-02-11T16:09:28.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:23.086046+0000 mon.smithi120 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi120"}]: dispatch 2024-02-11T16:09:28.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:23.086458+0000 mon.smithi120 (mon.0) 177 : cluster [INF] mon.smithi120 calling monitor election 2024-02-11T16:09:28.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:23.090287+0000 mon.smithi120 (mon.0) 178 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:23.450508+0000 mgr.smithi120.tpsohu (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:28.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:24.081304+0000 mon.smithi120 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:24.081650+0000 mon.smithi120 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.183:0/229847639' entity='mgr.smithi183.pltuwd' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi183.pltuwd/crt"}]: dispatch 2024-02-11T16:09:28.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:25.081796+0000 mon.smithi120 (mon.0) 181 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:25.082157+0000 mon.smithi183 (mon.1) 1 : cluster [INF] mon.smithi183 calling monitor election 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:25.450867+0000 mgr.smithi120.tpsohu (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:26.081690+0000 mon.smithi120 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:27.081838+0000 mon.smithi120 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:27.451239+0000 mgr.smithi120.tpsohu (mgr.14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:28.081828+0000 mon.smithi120 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:28.113417+0000 mon.smithi120 (mon.0) 185 : cluster [INF] mon.smithi120 is new leader, mons smithi120,smithi183 in quorum (ranks 0,1) 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:28.122817+0000 mon.smithi120 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi120=[v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0],smithi183=[v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0]} removed_ranks: {} 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:28.123528+0000 mon.smithi120 (mon.0) 187 : cluster [DBG] fsmap 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:28.123573+0000 mon.smithi120 (mon.0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:28.123851+0000 mon.smithi120 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi120.tpsohu(active, since 48s) 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:28.124028+0000 mon.smithi120 (mon.0) 190 : cluster [INF] overall HEALTH_OK 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: cluster 2024-02-11T16:09:28.124666+0000 mon.smithi120 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi183.pltuwd started 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:28.126616+0000 mon.smithi120 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.183:0/229847639' entity='mgr.smithi183.pltuwd' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:28.131215+0000 mon.smithi120 (mon.0) 193 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:28.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:28.131466+0000 mon.smithi120 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.183:0/229847639' entity='mgr.smithi183.pltuwd' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi183.pltuwd/key"}]: dispatch 2024-02-11T16:09:28.610 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:28 smithi183 bash[18593]: audit 2024-02-11T16:09:28.132219+0000 mon.smithi120 (mon.0) 195 : audit [DBG] from='mgr.? 172.21.15.183:0/229847639' entity='mgr.smithi183.pltuwd' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-11T16:09:28.629 INFO:teuthology.orchestra.run.smithi183.stdout: 2024-02-11T16:09:28.629 INFO:teuthology.orchestra.run.smithi183.stdout:{"epoch":2,"fsid":"639b0136-c8f7-11ee-95b9-87774f69a715","modified":"2024-02-11T16:09:23.081493Z","created":"2024-02-11T16:06:26.352525Z","min_mon_release":16,"min_mon_release_name":"pacific","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging"],"optional":[]},"mons":[{"rank":0,"name":"smithi120","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:3300","nonce":0},{"type":"v1","addr":"172.21.15.120:6789","nonce":0}]},"addr":"172.21.15.120:6789/0","public_addr":"172.21.15.120:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi183","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:3300","nonce":0},{"type":"v1","addr":"172.21.15.183:6789","nonce":0}]},"addr":"172.21.15.183:6789/0","public_addr":"172.21.15.183:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-02-11T16:09:28.632 INFO:teuthology.orchestra.run.smithi183.stderr:dumped monmap epoch 2 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:23.086046+0000 mon.smithi120 (mon.0) 176 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi120"}]: dispatch 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:23.086458+0000 mon.smithi120 (mon.0) 177 : cluster [INF] mon.smithi120 calling monitor election 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:23.090287+0000 mon.smithi120 (mon.0) 178 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:23.450508+0000 mgr.smithi120.tpsohu (mgr.14180) 27 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:24.081304+0000 mon.smithi120 (mon.0) 179 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:24.081650+0000 mon.smithi120 (mon.0) 180 : audit [DBG] from='mgr.? 172.21.15.183:0/229847639' entity='mgr.smithi183.pltuwd' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi183.pltuwd/crt"}]: dispatch 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:25.081796+0000 mon.smithi120 (mon.0) 181 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:25.082157+0000 mon.smithi183 (mon.1) 1 : cluster [INF] mon.smithi183 calling monitor election 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:25.450867+0000 mgr.smithi120.tpsohu (mgr.14180) 28 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:26.081690+0000 mon.smithi120 (mon.0) 182 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:27.081838+0000 mon.smithi120 (mon.0) 183 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:27.451239+0000 mgr.smithi120.tpsohu (mgr.14180) 29 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:28.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:28.081828+0000 mon.smithi120 (mon.0) 184 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:28.113417+0000 mon.smithi120 (mon.0) 185 : cluster [INF] mon.smithi120 is new leader, mons smithi120,smithi183 in quorum (ranks 0,1) 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:28.122817+0000 mon.smithi120 (mon.0) 186 : cluster [DBG] monmap e2: 2 mons at {smithi120=[v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0],smithi183=[v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0]} removed_ranks: {} 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:28.123528+0000 mon.smithi120 (mon.0) 187 : cluster [DBG] fsmap 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:28.123573+0000 mon.smithi120 (mon.0) 188 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:28.123851+0000 mon.smithi120 (mon.0) 189 : cluster [DBG] mgrmap e17: smithi120.tpsohu(active, since 48s) 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:28.124028+0000 mon.smithi120 (mon.0) 190 : cluster [INF] overall HEALTH_OK 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: cluster 2024-02-11T16:09:28.124666+0000 mon.smithi120 (mon.0) 191 : cluster [DBG] Standby manager daemon smithi183.pltuwd started 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:28.126616+0000 mon.smithi120 (mon.0) 192 : audit [DBG] from='mgr.? 172.21.15.183:0/229847639' entity='mgr.smithi183.pltuwd' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/crt"}]: dispatch 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:28.131215+0000 mon.smithi120 (mon.0) 193 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:28.131466+0000 mon.smithi120 (mon.0) 194 : audit [DBG] from='mgr.? 172.21.15.183:0/229847639' entity='mgr.smithi183.pltuwd' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/smithi183.pltuwd/key"}]: dispatch 2024-02-11T16:09:28.656 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:28 smithi120 bash[14220]: audit 2024-02-11T16:09:28.132219+0000 mon.smithi120 (mon.0) 195 : audit [DBG] from='mgr.? 172.21.15.183:0/229847639' entity='mgr.smithi183.pltuwd' cmd=[{"prefix": "config-key get", "key": "mgr/dashboard/key"}]: dispatch 2024-02-11T16:09:29.378 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-02-11T16:09:29.379 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph config generate-minimal-conf 2024-02-11T16:09:29.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:29 smithi120 bash[14220]: cluster 2024-02-11T16:09:28.191139+0000 mon.smithi120 (mon.0) 196 : cluster [DBG] mgrmap e18: smithi120.tpsohu(active, since 48s), standbys: smithi183.pltuwd 2024-02-11T16:09:29.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:29 smithi120 bash[14220]: audit 2024-02-11T16:09:28.191353+0000 mon.smithi120 (mon.0) 197 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr metadata", "who": "smithi183.pltuwd", "id": "smithi183.pltuwd"}]: dispatch 2024-02-11T16:09:29.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:29 smithi120 bash[14220]: audit 2024-02-11T16:09:28.627713+0000 mon.smithi120 (mon.0) 198 : audit [DBG] from='client.? 172.21.15.183:0/632473137' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-11T16:09:29.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:29 smithi120 bash[14220]: audit 2024-02-11T16:09:29.082194+0000 mon.smithi120 (mon.0) 199 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:29.492 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:29 smithi120 bash[14220]: audit 2024-02-11T16:09:29.159068+0000 mon.smithi120 (mon.0) 200 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:29.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:29 smithi120 bash[14220]: audit 2024-02-11T16:09:29.160580+0000 mon.smithi120 (mon.0) 201 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:29.493 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:29 smithi120 bash[14220]: audit 2024-02-11T16:09:29.161838+0000 mon.smithi120 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:09:29.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:29 smithi183 bash[18593]: cluster 2024-02-11T16:09:28.191139+0000 mon.smithi120 (mon.0) 196 : cluster [DBG] mgrmap e18: smithi120.tpsohu(active, since 48s), standbys: smithi183.pltuwd 2024-02-11T16:09:29.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:29 smithi183 bash[18593]: audit 2024-02-11T16:09:28.191353+0000 mon.smithi120 (mon.0) 197 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr metadata", "who": "smithi183.pltuwd", "id": "smithi183.pltuwd"}]: dispatch 2024-02-11T16:09:29.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:29 smithi183 bash[18593]: audit 2024-02-11T16:09:28.627713+0000 mon.smithi120 (mon.0) 198 : audit [DBG] from='client.? 172.21.15.183:0/632473137' entity='client.admin' cmd=[{"prefix": "mon dump", "format": "json"}]: dispatch 2024-02-11T16:09:29.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:29 smithi183 bash[18593]: audit 2024-02-11T16:09:29.082194+0000 mon.smithi120 (mon.0) 199 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mon metadata", "id": "smithi183"}]: dispatch 2024-02-11T16:09:29.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:29 smithi183 bash[18593]: audit 2024-02-11T16:09:29.159068+0000 mon.smithi120 (mon.0) 200 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:29.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:29 smithi183 bash[18593]: audit 2024-02-11T16:09:29.160580+0000 mon.smithi120 (mon.0) 201 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:29.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:29 smithi183 bash[18593]: audit 2024-02-11T16:09:29.161838+0000 mon.smithi120 (mon.0) 202 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:09:30.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: cephadm 2024-02-11T16:09:29.163705+0000 mgr.smithi120.tpsohu (mgr.14180) 30 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: cephadm 2024-02-11T16:09:29.164299+0000 mgr.smithi120.tpsohu (mgr.14180) 31 : cephadm [INF] Updating smithi183:/etc/ceph/ceph.conf 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: audit 2024-02-11T16:09:29.198766+0000 mon.smithi120 (mon.0) 203 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: audit 2024-02-11T16:09:29.268055+0000 mon.smithi120 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: audit 2024-02-11T16:09:29.274461+0000 mon.smithi120 (mon.0) 205 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: cephadm 2024-02-11T16:09:29.279860+0000 mgr.smithi120.tpsohu (mgr.14180) 32 : cephadm [INF] Reconfiguring mon.smithi120 (unknown last config time)... 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: audit 2024-02-11T16:09:29.280284+0000 mon.smithi120 (mon.0) 206 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: audit 2024-02-11T16:09:29.281531+0000 mon.smithi120 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: audit 2024-02-11T16:09:29.282799+0000 mon.smithi120 (mon.0) 208 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: cephadm 2024-02-11T16:09:29.283703+0000 mgr.smithi120.tpsohu (mgr.14180) 33 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-02-11T16:09:30.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:30 smithi183 bash[18593]: cluster 2024-02-11T16:09:29.451606+0000 mgr.smithi120.tpsohu (mgr.14180) 34 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:30.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: cephadm 2024-02-11T16:09:29.163705+0000 mgr.smithi120.tpsohu (mgr.14180) 30 : cephadm [INF] Updating smithi120:/etc/ceph/ceph.conf 2024-02-11T16:09:30.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: cephadm 2024-02-11T16:09:29.164299+0000 mgr.smithi120.tpsohu (mgr.14180) 31 : cephadm [INF] Updating smithi183:/etc/ceph/ceph.conf 2024-02-11T16:09:30.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: audit 2024-02-11T16:09:29.198766+0000 mon.smithi120 (mon.0) 203 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:30.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: audit 2024-02-11T16:09:29.268055+0000 mon.smithi120 (mon.0) 204 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:30.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: audit 2024-02-11T16:09:29.274461+0000 mon.smithi120 (mon.0) 205 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:30.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: cephadm 2024-02-11T16:09:29.279860+0000 mgr.smithi120.tpsohu (mgr.14180) 32 : cephadm [INF] Reconfiguring mon.smithi120 (unknown last config time)... 2024-02-11T16:09:30.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: audit 2024-02-11T16:09:29.280284+0000 mon.smithi120 (mon.0) 206 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-11T16:09:30.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: audit 2024-02-11T16:09:29.281531+0000 mon.smithi120 (mon.0) 207 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-11T16:09:30.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: audit 2024-02-11T16:09:29.282799+0000 mon.smithi120 (mon.0) 208 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:30.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: cephadm 2024-02-11T16:09:29.283703+0000 mgr.smithi120.tpsohu (mgr.14180) 33 : cephadm [INF] Reconfiguring daemon mon.smithi120 on smithi120 2024-02-11T16:09:30.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:30 smithi120 bash[14220]: cluster 2024-02-11T16:09:29.451606+0000 mgr.smithi120.tpsohu (mgr.14180) 34 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:32.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:32 smithi120 bash[14220]: cluster 2024-02-11T16:09:31.452065+0000 mgr.smithi120.tpsohu (mgr.14180) 35 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:32.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:32 smithi120 bash[14220]: audit 2024-02-11T16:09:32.128167+0000 mon.smithi120 (mon.0) 209 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:32.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:32 smithi120 bash[14220]: audit 2024-02-11T16:09:32.129799+0000 mon.smithi120 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi120.tpsohu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-11T16:09:32.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:32 smithi120 bash[14220]: audit 2024-02-11T16:09:32.131332+0000 mon.smithi120 (mon.0) 211 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-11T16:09:32.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:32 smithi120 bash[14220]: audit 2024-02-11T16:09:32.132445+0000 mon.smithi120 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:32.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:32 smithi183 bash[18593]: cluster 2024-02-11T16:09:31.452065+0000 mgr.smithi120.tpsohu (mgr.14180) 35 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:32.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:32 smithi183 bash[18593]: audit 2024-02-11T16:09:32.128167+0000 mon.smithi120 (mon.0) 209 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:32.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:32 smithi183 bash[18593]: audit 2024-02-11T16:09:32.129799+0000 mon.smithi120 (mon.0) 210 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi120.tpsohu", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-11T16:09:32.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:32 smithi183 bash[18593]: audit 2024-02-11T16:09:32.131332+0000 mon.smithi120 (mon.0) 211 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-11T16:09:32.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:32 smithi183 bash[18593]: audit 2024-02-11T16:09:32.132445+0000 mon.smithi120 (mon.0) 212 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:33.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:33 smithi120 bash[14220]: cephadm 2024-02-11T16:09:32.129226+0000 mgr.smithi120.tpsohu (mgr.14180) 36 : cephadm [INF] Reconfiguring mgr.smithi120.tpsohu (unknown last config time)... 2024-02-11T16:09:33.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:33 smithi120 bash[14220]: cephadm 2024-02-11T16:09:32.133373+0000 mgr.smithi120.tpsohu (mgr.14180) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi120.tpsohu on smithi120 2024-02-11T16:09:33.760 INFO:teuthology.orchestra.run.smithi120.stdout:# minimal ceph.conf for 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:09:33.760 INFO:teuthology.orchestra.run.smithi120.stdout:[global] 2024-02-11T16:09:33.760 INFO:teuthology.orchestra.run.smithi120.stdout: fsid = 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:09:33.760 INFO:teuthology.orchestra.run.smithi120.stdout: mon_host = [v2:172.21.15.120:3300/0,v1:172.21.15.120:6789/0] [v2:172.21.15.183:3300/0,v1:172.21.15.183:6789/0] 2024-02-11T16:09:33.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:33 smithi183 bash[18593]: cephadm 2024-02-11T16:09:32.129226+0000 mgr.smithi120.tpsohu (mgr.14180) 36 : cephadm [INF] Reconfiguring mgr.smithi120.tpsohu (unknown last config time)... 2024-02-11T16:09:33.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:33 smithi183 bash[18593]: cephadm 2024-02-11T16:09:32.133373+0000 mgr.smithi120.tpsohu (mgr.14180) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi120.tpsohu on smithi120 2024-02-11T16:09:34.762 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:34 smithi120 bash[14220]: cluster 2024-02-11T16:09:33.452497+0000 mgr.smithi120.tpsohu (mgr.14180) 38 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:34.762 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:34 smithi120 bash[14220]: audit 2024-02-11T16:09:33.759653+0000 mon.smithi120 (mon.0) 213 : audit [DBG] from='client.? 172.21.15.120:0/251431408' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:34.763 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-02-11T16:09:34.763 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:09:34.763 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.conf 2024-02-11T16:09:34.774 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:09:34.775 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-11T16:09:34.837 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:09:34.837 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/ceph/ceph.conf 2024-02-11T16:09:34.850 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:34 smithi183 bash[18593]: cluster 2024-02-11T16:09:33.452497+0000 mgr.smithi120.tpsohu (mgr.14180) 38 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:34.850 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:34 smithi183 bash[18593]: audit 2024-02-11T16:09:33.759653+0000 mon.smithi120 (mon.0) 213 : audit [DBG] from='client.? 172.21.15.120:0/251431408' entity='client.admin' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:34.854 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:09:34.854 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-02-11T16:09:34.909 INFO:tasks.cephadm:Deploying OSDs... 2024-02-11T16:09:34.909 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:09:34.909 DEBUG:teuthology.orchestra.run.smithi120:> dd if=/scratch_devs of=/dev/stdout 2024-02-11T16:09:34.916 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-11T16:09:34.916 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme1n1 2024-02-11T16:09:34.971 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme1n1 2024-02-11T16:09:34.971 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-11T16:09:34.971 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 522 Links: 1 Device type: 103,2 2024-02-11T16:09:34.971 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-11T16:09:34.971 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-02-11 16:07:53.890717327 +0000 2024-02-11T16:09:34.971 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-02-11 16:05:32.641940183 +0000 2024-02-11T16:09:34.971 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-02-11 16:05:32.641940183 +0000 2024-02-11T16:09:34.972 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-02-11T16:09:34.972 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-11T16:09:35.029 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-02-11T16:09:35.029 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-02-11T16:09:35.029 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000462253 s, 1.1 MB/s 2024-02-11T16:09:35.030 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-11T16:09:35.083 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme2n1 2024-02-11T16:09:35.133 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme2n1 2024-02-11T16:09:35.133 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-11T16:09:35.133 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 530 Links: 1 Device type: 103,4 2024-02-11T16:09:35.133 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-11T16:09:35.133 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-02-11 16:07:53.910716864 +0000 2024-02-11T16:09:35.133 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-02-11 16:05:32.761948936 +0000 2024-02-11T16:09:35.133 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-02-11 16:05:32.761948936 +0000 2024-02-11T16:09:35.134 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-02-11T16:09:35.134 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-11T16:09:35.183 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-02-11T16:09:35.184 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-02-11T16:09:35.184 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000399326 s, 1.3 MB/s 2024-02-11T16:09:35.185 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-11T16:09:35.234 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme3n1 2024-02-11T16:09:35.285 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme3n1 2024-02-11T16:09:35.285 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-11T16:09:35.285 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 538 Links: 1 Device type: 103,6 2024-02-11T16:09:35.285 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-11T16:09:35.285 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-02-11 16:07:53.930716403 +0000 2024-02-11T16:09:35.285 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-02-11 16:05:32.877957396 +0000 2024-02-11T16:09:35.285 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-02-11 16:05:32.877957396 +0000 2024-02-11T16:09:35.285 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-02-11T16:09:35.285 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-11T16:09:35.338 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-02-11T16:09:35.338 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-02-11T16:09:35.339 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000357978 s, 1.4 MB/s 2024-02-11T16:09:35.339 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-11T16:09:35.389 DEBUG:teuthology.orchestra.run.smithi120:> stat /dev/nvme4n1 2024-02-11T16:09:35.434 INFO:teuthology.orchestra.run.smithi120.stdout: File: /dev/nvme4n1 2024-02-11T16:09:35.434 INFO:teuthology.orchestra.run.smithi120.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-11T16:09:35.434 INFO:teuthology.orchestra.run.smithi120.stdout:Device: 5h/5d Inode: 546 Links: 1 Device type: 103,8 2024-02-11T16:09:35.435 INFO:teuthology.orchestra.run.smithi120.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-11T16:09:35.435 INFO:teuthology.orchestra.run.smithi120.stdout:Access: 2024-02-11 16:07:53.950715942 +0000 2024-02-11T16:09:35.435 INFO:teuthology.orchestra.run.smithi120.stdout:Modify: 2024-02-11 16:05:33.001966480 +0000 2024-02-11T16:09:35.435 INFO:teuthology.orchestra.run.smithi120.stdout:Change: 2024-02-11 16:05:33.001966480 +0000 2024-02-11T16:09:35.435 INFO:teuthology.orchestra.run.smithi120.stdout: Birth: - 2024-02-11T16:09:35.435 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-11T16:09:35.491 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records in 2024-02-11T16:09:35.491 INFO:teuthology.orchestra.run.smithi120.stderr:1+0 records out 2024-02-11T16:09:35.491 INFO:teuthology.orchestra.run.smithi120.stderr:512 bytes copied, 0.000420585 s, 1.2 MB/s 2024-02-11T16:09:35.492 DEBUG:teuthology.orchestra.run.smithi120:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-11T16:09:35.547 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:09:35.547 DEBUG:teuthology.orchestra.run.smithi183:> dd if=/scratch_devs of=/dev/stdout 2024-02-11T16:09:35.554 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-02-11T16:09:35.554 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/nvme1n1 2024-02-11T16:09:35.602 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/nvme1n1 2024-02-11T16:09:35.602 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-11T16:09:35.602 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 522 Links: 1 Device type: 103,2 2024-02-11T16:09:35.603 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-11T16:09:35.603 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-02-11 16:09:06.420545260 +0000 2024-02-11T16:09:35.603 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-02-11 16:05:34.283106731 +0000 2024-02-11T16:09:35.603 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-02-11 16:05:34.283106731 +0000 2024-02-11T16:09:35.603 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: - 2024-02-11T16:09:35.603 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-02-11T16:09:35.658 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-02-11T16:09:35.658 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-02-11T16:09:35.658 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000500513 s, 1.0 MB/s 2024-02-11T16:09:35.659 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-02-11T16:09:35.712 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/nvme2n1 2024-02-11T16:09:35.762 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/nvme2n1 2024-02-11T16:09:35.763 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-11T16:09:35.763 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 530 Links: 1 Device type: 103,4 2024-02-11T16:09:35.763 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-11T16:09:35.763 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-02-11 16:09:06.436545339 +0000 2024-02-11T16:09:35.763 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-02-11 16:05:34.395160152 +0000 2024-02-11T16:09:35.763 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-02-11 16:05:34.395160152 +0000 2024-02-11T16:09:35.763 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: - 2024-02-11T16:09:35.763 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-02-11T16:09:35.818 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-02-11T16:09:35.818 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-02-11T16:09:35.818 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000512039 s, 1000 kB/s 2024-02-11T16:09:35.819 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-02-11T16:09:35.872 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/nvme3n1 2024-02-11T16:09:35.922 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/nvme3n1 2024-02-11T16:09:35.922 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-11T16:09:35.922 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 538 Links: 1 Device type: 103,6 2024-02-11T16:09:35.922 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-11T16:09:35.923 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-02-11 16:09:06.452545420 +0000 2024-02-11T16:09:35.923 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-02-11 16:05:34.511215481 +0000 2024-02-11T16:09:35.923 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-02-11 16:05:34.511215481 +0000 2024-02-11T16:09:35.923 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: - 2024-02-11T16:09:35.923 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-02-11T16:09:35.975 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:35 smithi183 bash[18593]: audit 2024-02-11T16:09:34.722503+0000 mon.smithi120 (mon.0) 214 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:35.975 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:35 smithi183 bash[18593]: cephadm 2024-02-11T16:09:34.724034+0000 mgr.smithi120.tpsohu (mgr.14180) 39 : cephadm [INF] Reconfiguring alertmanager.smithi120 (dependencies changed)... 2024-02-11T16:09:35.975 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:35 smithi183 bash[18593]: cephadm 2024-02-11T16:09:34.735868+0000 mgr.smithi120.tpsohu (mgr.14180) 40 : cephadm [INF] Reconfiguring daemon alertmanager.smithi120 on smithi120 2024-02-11T16:09:35.978 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-02-11T16:09:35.978 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-02-11T16:09:35.978 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000478243 s, 1.1 MB/s 2024-02-11T16:09:35.978 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:35 smithi120 bash[14220]: audit 2024-02-11T16:09:34.722503+0000 mon.smithi120 (mon.0) 214 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:35.979 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:35 smithi120 bash[14220]: cephadm 2024-02-11T16:09:34.724034+0000 mgr.smithi120.tpsohu (mgr.14180) 39 : cephadm [INF] Reconfiguring alertmanager.smithi120 (dependencies changed)... 2024-02-11T16:09:35.979 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:35 smithi120 bash[14220]: cephadm 2024-02-11T16:09:34.735868+0000 mgr.smithi120.tpsohu (mgr.14180) 40 : cephadm [INF] Reconfiguring daemon alertmanager.smithi120 on smithi120 2024-02-11T16:09:35.979 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-02-11T16:09:36.032 DEBUG:teuthology.orchestra.run.smithi183:> stat /dev/nvme4n1 2024-02-11T16:09:36.082 INFO:teuthology.orchestra.run.smithi183.stdout: File: /dev/nvme4n1 2024-02-11T16:09:36.082 INFO:teuthology.orchestra.run.smithi183.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-02-11T16:09:36.082 INFO:teuthology.orchestra.run.smithi183.stdout:Device: 5h/5d Inode: 546 Links: 1 Device type: 103,8 2024-02-11T16:09:36.082 INFO:teuthology.orchestra.run.smithi183.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-02-11T16:09:36.083 INFO:teuthology.orchestra.run.smithi183.stdout:Access: 2024-02-11 16:09:06.468545500 +0000 2024-02-11T16:09:36.083 INFO:teuthology.orchestra.run.smithi183.stdout:Modify: 2024-02-11 16:05:34.619266993 +0000 2024-02-11T16:09:36.083 INFO:teuthology.orchestra.run.smithi183.stdout:Change: 2024-02-11 16:05:34.619266993 +0000 2024-02-11T16:09:36.083 INFO:teuthology.orchestra.run.smithi183.stdout: Birth: - 2024-02-11T16:09:36.083 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-02-11T16:09:36.137 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records in 2024-02-11T16:09:36.138 INFO:teuthology.orchestra.run.smithi183.stderr:1+0 records out 2024-02-11T16:09:36.138 INFO:teuthology.orchestra.run.smithi183.stderr:512 bytes copied, 0.000435934 s, 1.2 MB/s 2024-02-11T16:09:36.139 DEBUG:teuthology.orchestra.run.smithi183:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-02-11T16:09:36.188 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph orch apply osd --all-available-devices 2024-02-11T16:09:37.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:36 smithi183 bash[18593]: cluster 2024-02-11T16:09:35.452973+0000 mgr.smithi120.tpsohu (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:37.116 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:36 smithi120 bash[14220]: cluster 2024-02-11T16:09:35.452973+0000 mgr.smithi120.tpsohu (mgr.14180) 41 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:39.048 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:38 smithi183 bash[18593]: cluster 2024-02-11T16:09:37.453456+0000 mgr.smithi120.tpsohu (mgr.14180) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:39.110 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:38 smithi120 bash[14220]: cluster 2024-02-11T16:09:37.453456+0000 mgr.smithi120.tpsohu (mgr.14180) 42 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:39.467 INFO:teuthology.orchestra.run.smithi183.stdout:Scheduled osd.all-available-devices update... 2024-02-11T16:09:40.200 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-02-11T16:09:40.200 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:09:40.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: audit 2024-02-11T16:09:39.317064+0000 mon.smithi120 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:40.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: cephadm 2024-02-11T16:09:39.318422+0000 mgr.smithi120.tpsohu (mgr.14180) 43 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-02-11T16:09:40.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: audit 2024-02-11T16:09:39.318815+0000 mon.smithi120 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-11T16:09:40.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: audit 2024-02-11T16:09:39.320118+0000 mon.smithi120 (mon.0) 217 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:40.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: cephadm 2024-02-11T16:09:39.321274+0000 mgr.smithi120.tpsohu (mgr.14180) 44 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-02-11T16:09:40.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: cluster 2024-02-11T16:09:39.453745+0000 mgr.smithi120.tpsohu (mgr.14180) 45 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:40.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: audit 2024-02-11T16:09:39.457588+0000 mgr.smithi120.tpsohu (mgr.14180) 46 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:09:40.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: cephadm 2024-02-11T16:09:39.461509+0000 mgr.smithi120.tpsohu (mgr.14180) 47 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-02-11T16:09:40.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: cephadm 2024-02-11T16:09:39.461660+0000 mgr.smithi120.tpsohu (mgr.14180) 48 : cephadm [INF] Marking host: smithi183 for OSDSpec preview refresh. 2024-02-11T16:09:40.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: cephadm 2024-02-11T16:09:39.462332+0000 mgr.smithi120.tpsohu (mgr.14180) 49 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-11T16:09:40.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:40 smithi183 bash[18593]: audit 2024-02-11T16:09:39.466514+0000 mon.smithi120 (mon.0) 218 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:40.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: audit 2024-02-11T16:09:39.317064+0000 mon.smithi120 (mon.0) 215 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:40.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: cephadm 2024-02-11T16:09:39.318422+0000 mgr.smithi120.tpsohu (mgr.14180) 43 : cephadm [INF] Reconfiguring crash.smithi120 (monmap changed)... 2024-02-11T16:09:40.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: audit 2024-02-11T16:09:39.318815+0000 mon.smithi120 (mon.0) 216 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi120", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-11T16:09:40.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: audit 2024-02-11T16:09:39.320118+0000 mon.smithi120 (mon.0) 217 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:40.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: cephadm 2024-02-11T16:09:39.321274+0000 mgr.smithi120.tpsohu (mgr.14180) 44 : cephadm [INF] Reconfiguring daemon crash.smithi120 on smithi120 2024-02-11T16:09:40.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: cluster 2024-02-11T16:09:39.453745+0000 mgr.smithi120.tpsohu (mgr.14180) 45 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:40.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: audit 2024-02-11T16:09:39.457588+0000 mgr.smithi120.tpsohu (mgr.14180) 46 : audit [DBG] from='client.24101 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:09:40.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: cephadm 2024-02-11T16:09:39.461509+0000 mgr.smithi120.tpsohu (mgr.14180) 47 : cephadm [INF] Marking host: smithi120 for OSDSpec preview refresh. 2024-02-11T16:09:40.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: cephadm 2024-02-11T16:09:39.461660+0000 mgr.smithi120.tpsohu (mgr.14180) 48 : cephadm [INF] Marking host: smithi183 for OSDSpec preview refresh. 2024-02-11T16:09:40.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: cephadm 2024-02-11T16:09:39.462332+0000 mgr.smithi120.tpsohu (mgr.14180) 49 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-02-11T16:09:40.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:40 smithi120 bash[14220]: audit 2024-02-11T16:09:39.466514+0000 mon.smithi120 (mon.0) 218 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:42.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:42 smithi183 bash[18593]: cluster 2024-02-11T16:09:41.454225+0000 mgr.smithi120.tpsohu (mgr.14180) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:42.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:42 smithi120 bash[14220]: cluster 2024-02-11T16:09:41.454225+0000 mgr.smithi120.tpsohu (mgr.14180) 50 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:44.516 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:44 smithi120 bash[14220]: audit 2024-02-11T16:09:43.159635+0000 mon.smithi120 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:44.516 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:44 smithi120 bash[14220]: cephadm 2024-02-11T16:09:43.160541+0000 mgr.smithi120.tpsohu (mgr.14180) 51 : cephadm [INF] Reconfiguring grafana.smithi120 (dependencies changed)... 2024-02-11T16:09:44.516 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:44 smithi120 bash[14220]: cephadm 2024-02-11T16:09:43.204091+0000 mgr.smithi120.tpsohu (mgr.14180) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi120 on smithi120 2024-02-11T16:09:44.516 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:44 smithi120 bash[14220]: cluster 2024-02-11T16:09:43.454652+0000 mgr.smithi120.tpsohu (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:44.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:44 smithi183 bash[18593]: audit 2024-02-11T16:09:43.159635+0000 mon.smithi120 (mon.0) 219 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:44.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:44 smithi183 bash[18593]: cephadm 2024-02-11T16:09:43.160541+0000 mgr.smithi120.tpsohu (mgr.14180) 51 : cephadm [INF] Reconfiguring grafana.smithi120 (dependencies changed)... 2024-02-11T16:09:44.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:44 smithi183 bash[18593]: cephadm 2024-02-11T16:09:43.204091+0000 mgr.smithi120.tpsohu (mgr.14180) 52 : cephadm [INF] Reconfiguring daemon grafana.smithi120 on smithi120 2024-02-11T16:09:44.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:44 smithi183 bash[18593]: cluster 2024-02-11T16:09:43.454652+0000 mgr.smithi120.tpsohu (mgr.14180) 53 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:44.901 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:09:45.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:45 smithi120 bash[14220]: audit 2024-02-11T16:09:44.901041+0000 mon.smithi120 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.120:0/1862512307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:09:45.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:45 smithi183 bash[18593]: audit 2024-02-11T16:09:44.901041+0000 mon.smithi120 (mon.0) 220 : audit [DBG] from='client.? 172.21.15.120:0/1862512307' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:09:45.961 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-02-11T16:09:46.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:46 smithi120 bash[14220]: cluster 2024-02-11T16:09:45.455030+0000 mgr.smithi120.tpsohu (mgr.14180) 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:46.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:46 smithi183 bash[18593]: cluster 2024-02-11T16:09:45.455030+0000 mgr.smithi120.tpsohu (mgr.14180) 54 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:46.962 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:09:48.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:48 smithi183 bash[18593]: cluster 2024-02-11T16:09:47.455426+0000 mgr.smithi120.tpsohu (mgr.14180) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:48.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:48 smithi120 bash[14220]: cluster 2024-02-11T16:09:47.455426+0000 mgr.smithi120.tpsohu (mgr.14180) 55 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:50.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:50 smithi183 bash[18593]: audit 2024-02-11T16:09:49.304800+0000 mon.smithi120 (mon.0) 221 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:50.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:50 smithi183 bash[18593]: cephadm 2024-02-11T16:09:49.306475+0000 mgr.smithi120.tpsohu (mgr.14180) 56 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-02-11T16:09:50.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:50 smithi183 bash[18593]: cephadm 2024-02-11T16:09:49.314464+0000 mgr.smithi120.tpsohu (mgr.14180) 57 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-02-11T16:09:50.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:50 smithi183 bash[18593]: cluster 2024-02-11T16:09:49.455812+0000 mgr.smithi120.tpsohu (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:50.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:50 smithi120 bash[14220]: audit 2024-02-11T16:09:49.304800+0000 mon.smithi120 (mon.0) 221 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:50.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:50 smithi120 bash[14220]: cephadm 2024-02-11T16:09:49.306475+0000 mgr.smithi120.tpsohu (mgr.14180) 56 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-02-11T16:09:50.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:50 smithi120 bash[14220]: cephadm 2024-02-11T16:09:49.314464+0000 mgr.smithi120.tpsohu (mgr.14180) 57 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-02-11T16:09:50.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:50 smithi120 bash[14220]: cluster 2024-02-11T16:09:49.455812+0000 mgr.smithi120.tpsohu (mgr.14180) 58 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:51.612 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:09:52.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:52 smithi183 bash[18593]: cluster 2024-02-11T16:09:51.456158+0000 mgr.smithi120.tpsohu (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:52.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:52 smithi183 bash[18593]: audit 2024-02-11T16:09:51.611928+0000 mon.smithi120 (mon.0) 222 : audit [DBG] from='client.? 172.21.15.120:0/388841474' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:09:52.926 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:52 smithi120 bash[14220]: cluster 2024-02-11T16:09:51.456158+0000 mgr.smithi120.tpsohu (mgr.14180) 59 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:52.926 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:52 smithi120 bash[14220]: audit 2024-02-11T16:09:51.611928+0000 mon.smithi120 (mon.0) 222 : audit [DBG] from='client.? 172.21.15.120:0/388841474' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:09:52.953 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-02-11T16:09:53.954 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:09:54.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:54 smithi183 bash[18593]: cluster 2024-02-11T16:09:53.456567+0000 mgr.smithi120.tpsohu (mgr.14180) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:54.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:54 smithi120 bash[14220]: cluster 2024-02-11T16:09:53.456567+0000 mgr.smithi120.tpsohu (mgr.14180) 60 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:56.807 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:56 smithi120 bash[14220]: cluster 2024-02-11T16:09:55.456906+0000 mgr.smithi120.tpsohu (mgr.14180) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:56.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:56 smithi183 bash[18593]: cluster 2024-02-11T16:09:55.456906+0000 mgr.smithi120.tpsohu (mgr.14180) 61 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:58.079 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:57 smithi120 bash[14220]: audit 2024-02-11T16:09:56.788676+0000 mon.smithi120 (mon.0) 223 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:58.079 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:57 smithi120 bash[14220]: cephadm 2024-02-11T16:09:56.789902+0000 mgr.smithi120.tpsohu (mgr.14180) 62 : cephadm [INF] Reconfiguring crash.smithi183 (monmap changed)... 2024-02-11T16:09:58.080 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:57 smithi120 bash[14220]: audit 2024-02-11T16:09:56.790441+0000 mon.smithi120 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-11T16:09:58.080 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:57 smithi120 bash[14220]: audit 2024-02-11T16:09:56.791814+0000 mon.smithi120 (mon.0) 225 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:58.080 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:57 smithi120 bash[14220]: cephadm 2024-02-11T16:09:56.793009+0000 mgr.smithi120.tpsohu (mgr.14180) 63 : cephadm [INF] Reconfiguring daemon crash.smithi183 on smithi183 2024-02-11T16:09:58.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:57 smithi183 bash[18593]: audit 2024-02-11T16:09:56.788676+0000 mon.smithi120 (mon.0) 223 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:09:58.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:57 smithi183 bash[18593]: cephadm 2024-02-11T16:09:56.789902+0000 mgr.smithi120.tpsohu (mgr.14180) 62 : cephadm [INF] Reconfiguring crash.smithi183 (monmap changed)... 2024-02-11T16:09:58.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:57 smithi183 bash[18593]: audit 2024-02-11T16:09:56.790441+0000 mon.smithi120 (mon.0) 224 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.crash.smithi183", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]: dispatch 2024-02-11T16:09:58.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:57 smithi183 bash[18593]: audit 2024-02-11T16:09:56.791814+0000 mon.smithi120 (mon.0) 225 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:09:58.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:57 smithi183 bash[18593]: cephadm 2024-02-11T16:09:56.793009+0000 mgr.smithi120.tpsohu (mgr.14180) 63 : cephadm [INF] Reconfiguring daemon crash.smithi183 on smithi183 2024-02-11T16:09:58.473 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:09:59.090 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:58 smithi183 bash[18593]: cluster 2024-02-11T16:09:57.457267+0000 mgr.smithi120.tpsohu (mgr.14180) 64 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:59.090 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:58 smithi183 bash[18593]: audit 2024-02-11T16:09:58.472669+0000 mon.smithi120 (mon.0) 226 : audit [DBG] from='client.? 172.21.15.120:0/3693673227' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:09:59.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:58 smithi120 bash[14220]: cluster 2024-02-11T16:09:57.457267+0000 mgr.smithi120.tpsohu (mgr.14180) 64 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:09:59.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:58 smithi120 bash[14220]: audit 2024-02-11T16:09:58.472669+0000 mon.smithi120 (mon.0) 226 : audit [DBG] from='client.? 172.21.15.120:0/3693673227' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:09:59.166 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-02-11T16:10:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:59 smithi120 bash[14220]: audit 2024-02-11T16:09:58.877924+0000 mon.smithi120 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:59 smithi120 bash[14220]: cephadm 2024-02-11T16:09:58.879178+0000 mgr.smithi120.tpsohu (mgr.14180) 65 : cephadm [INF] Reconfiguring mgr.smithi183.pltuwd (monmap changed)... 2024-02-11T16:10:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:59 smithi120 bash[14220]: audit 2024-02-11T16:09:58.879664+0000 mon.smithi120 (mon.0) 228 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.pltuwd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-11T16:10:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:59 smithi120 bash[14220]: audit 2024-02-11T16:09:58.881068+0000 mon.smithi120 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-11T16:10:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:59 smithi120 bash[14220]: audit 2024-02-11T16:09:58.882094+0000 mon.smithi120 (mon.0) 230 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:59 smithi120 bash[14220]: cephadm 2024-02-11T16:09:58.883032+0000 mgr.smithi120.tpsohu (mgr.14180) 66 : cephadm [INF] Reconfiguring daemon mgr.smithi183.pltuwd on smithi183 2024-02-11T16:10:00.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:09:59 smithi120 bash[14220]: cluster 2024-02-11T16:09:59.457818+0000 mgr.smithi120.tpsohu (mgr.14180) 67 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:00.167 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:00.300 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:59 smithi183 bash[18593]: audit 2024-02-11T16:09:58.877924+0000 mon.smithi120 (mon.0) 227 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:00.300 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:59 smithi183 bash[18593]: cephadm 2024-02-11T16:09:58.879178+0000 mgr.smithi120.tpsohu (mgr.14180) 65 : cephadm [INF] Reconfiguring mgr.smithi183.pltuwd (monmap changed)... 2024-02-11T16:10:00.300 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:59 smithi183 bash[18593]: audit 2024-02-11T16:09:58.879664+0000 mon.smithi120 (mon.0) 228 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "mgr.smithi183.pltuwd", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]: dispatch 2024-02-11T16:10:00.300 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:59 smithi183 bash[18593]: audit 2024-02-11T16:09:58.881068+0000 mon.smithi120 (mon.0) 229 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "mgr services"}]: dispatch 2024-02-11T16:10:00.301 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:59 smithi183 bash[18593]: audit 2024-02-11T16:09:58.882094+0000 mon.smithi120 (mon.0) 230 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:00.301 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:59 smithi183 bash[18593]: cephadm 2024-02-11T16:09:58.883032+0000 mgr.smithi120.tpsohu (mgr.14180) 66 : cephadm [INF] Reconfiguring daemon mgr.smithi183.pltuwd on smithi183 2024-02-11T16:10:00.301 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:09:59 smithi183 bash[18593]: cluster 2024-02-11T16:09:59.457818+0000 mgr.smithi120.tpsohu (mgr.14180) 67 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:01.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:00 smithi120 bash[14220]: cluster 2024-02-11T16:10:00.000172+0000 mon.smithi120 (mon.0) 231 : cluster [INF] overall HEALTH_OK 2024-02-11T16:10:01.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:00 smithi120 bash[14220]: audit 2024-02-11T16:10:00.791019+0000 mon.smithi120 (mon.0) 232 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:01.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:00 smithi120 bash[14220]: cephadm 2024-02-11T16:10:00.792208+0000 mgr.smithi120.tpsohu (mgr.14180) 68 : cephadm [INF] Reconfiguring mon.smithi183 (monmap changed)... 2024-02-11T16:10:01.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:00 smithi120 bash[14220]: audit 2024-02-11T16:10:00.792705+0000 mon.smithi120 (mon.0) 233 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-11T16:10:01.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:00 smithi120 bash[14220]: audit 2024-02-11T16:10:00.794067+0000 mon.smithi120 (mon.0) 234 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-11T16:10:01.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:00 smithi120 bash[14220]: audit 2024-02-11T16:10:00.795125+0000 mon.smithi120 (mon.0) 235 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:01.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:00 smithi120 bash[14220]: cephadm 2024-02-11T16:10:00.796076+0000 mgr.smithi120.tpsohu (mgr.14180) 69 : cephadm [INF] Reconfiguring daemon mon.smithi183 on smithi183 2024-02-11T16:10:01.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:00 smithi183 bash[18593]: cluster 2024-02-11T16:10:00.000172+0000 mon.smithi120 (mon.0) 231 : cluster [INF] overall HEALTH_OK 2024-02-11T16:10:01.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:00 smithi183 bash[18593]: audit 2024-02-11T16:10:00.791019+0000 mon.smithi120 (mon.0) 232 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:01.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:00 smithi183 bash[18593]: cephadm 2024-02-11T16:10:00.792208+0000 mgr.smithi120.tpsohu (mgr.14180) 68 : cephadm [INF] Reconfiguring mon.smithi183 (monmap changed)... 2024-02-11T16:10:01.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:00 smithi183 bash[18593]: audit 2024-02-11T16:10:00.792705+0000 mon.smithi120 (mon.0) 233 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "mon."}]: dispatch 2024-02-11T16:10:01.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:00 smithi183 bash[18593]: audit 2024-02-11T16:10:00.794067+0000 mon.smithi120 (mon.0) 234 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config get", "who": "mon", "key": "public_network"}]: dispatch 2024-02-11T16:10:01.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:00 smithi183 bash[18593]: audit 2024-02-11T16:10:00.795125+0000 mon.smithi120 (mon.0) 235 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:01.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:00 smithi183 bash[18593]: cephadm 2024-02-11T16:10:00.796076+0000 mgr.smithi120.tpsohu (mgr.14180) 69 : cephadm [INF] Reconfiguring daemon mon.smithi183 on smithi183 2024-02-11T16:10:02.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:01 smithi183 bash[18593]: cluster 2024-02-11T16:10:01.458271+0000 mgr.smithi120.tpsohu (mgr.14180) 70 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:02.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:01 smithi120 bash[14220]: cluster 2024-02-11T16:10:01.458271+0000 mgr.smithi120.tpsohu (mgr.14180) 70 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:03.223 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:03.970 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.708840+0000 mon.smithi120 (mon.0) 236 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:03.970 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.715626+0000 mon.smithi120 (mon.0) 237 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-11T16:10:03.970 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.716415+0000 mgr.smithi120.tpsohu (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-11T16:10:03.970 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.718150+0000 mon.smithi120 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"}]: dispatch 2024-02-11T16:10:03.970 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.718849+0000 mgr.smithi120.tpsohu (mgr.14180) 72 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.723687+0000 mon.smithi120 (mon.0) 239 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.732222+0000 mon.smithi120 (mon.0) 240 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.732778+0000 mgr.smithi120.tpsohu (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.742844+0000 mon.smithi120 (mon.0) 241 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.743580+0000 mgr.smithi120.tpsohu (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.749967+0000 mon.smithi120 (mon.0) 242 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.759048+0000 mon.smithi120 (mon.0) 243 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.759763+0000 mgr.smithi120.tpsohu (mgr.14180) 75 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.769036+0000 mon.smithi120 (mon.0) 244 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.769609+0000 mgr.smithi120.tpsohu (mgr.14180) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.775244+0000 mon.smithi120 (mon.0) 245 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:02.777871+0000 mon.smithi120 (mon.0) 246 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:10:03.971 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:03 smithi120 bash[14220]: audit 2024-02-11T16:10:03.222279+0000 mon.smithi120 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.120:0/645467522' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:03.972 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-02-11T16:10:04.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.708840+0000 mon.smithi120 (mon.0) 236 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.715626+0000 mon.smithi120 (mon.0) 237 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.716415+0000 mgr.smithi120.tpsohu (mgr.14180) 71 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.718150+0000 mon.smithi120 (mon.0) 238 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"}]: dispatch 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.718849+0000 mgr.smithi120.tpsohu (mgr.14180) 72 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi120.front.sepia.ceph.com:9093"}]: dispatch 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.723687+0000 mon.smithi120 (mon.0) 239 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.732222+0000 mon.smithi120 (mon.0) 240 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.732778+0000 mgr.smithi120.tpsohu (mgr.14180) 73 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.742844+0000 mon.smithi120 (mon.0) 241 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"}]: dispatch 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.743580+0000 mgr.smithi120.tpsohu (mgr.14180) 74 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi120.front.sepia.ceph.com:3000"}]: dispatch 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.749967+0000 mon.smithi120 (mon.0) 242 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.759048+0000 mon.smithi120 (mon.0) 243 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-11T16:10:04.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.759763+0000 mgr.smithi120.tpsohu (mgr.14180) 75 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-11T16:10:04.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.769036+0000 mon.smithi120 (mon.0) 244 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"}]: dispatch 2024-02-11T16:10:04.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.769609+0000 mgr.smithi120.tpsohu (mgr.14180) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi120.front.sepia.ceph.com:9095"}]: dispatch 2024-02-11T16:10:04.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.775244+0000 mon.smithi120 (mon.0) 245 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:04.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:02.777871+0000 mon.smithi120 (mon.0) 246 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:10:04.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:03 smithi183 bash[18593]: audit 2024-02-11T16:10:03.222279+0000 mon.smithi120 (mon.0) 247 : audit [DBG] from='client.? 172.21.15.120:0/645467522' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:04.973 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:05.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:04 smithi183 bash[18593]: cluster 2024-02-11T16:10:03.458649+0000 mgr.smithi120.tpsohu (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:05.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:04 smithi120 bash[14220]: cluster 2024-02-11T16:10:03.458649+0000 mgr.smithi120.tpsohu (mgr.14180) 77 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:07.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:06 smithi183 bash[18593]: cluster 2024-02-11T16:10:05.458934+0000 mgr.smithi120.tpsohu (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:07.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:06 smithi120 bash[14220]: cluster 2024-02-11T16:10:05.458934+0000 mgr.smithi120.tpsohu (mgr.14180) 78 : cluster [DBG] pgmap v37: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:08.119 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:08.864 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-02-11T16:10:09.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:08 smithi183 bash[18593]: cluster 2024-02-11T16:10:07.459311+0000 mgr.smithi120.tpsohu (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:09.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:08 smithi183 bash[18593]: audit 2024-02-11T16:10:08.047286+0000 mon.smithi120 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:09.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:08 smithi183 bash[18593]: audit 2024-02-11T16:10:08.053815+0000 mon.smithi120 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:09.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:08 smithi183 bash[18593]: audit 2024-02-11T16:10:08.118654+0000 mon.smithi120 (mon.0) 250 : audit [DBG] from='client.? 172.21.15.120:0/4191032594' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:09.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:08 smithi183 bash[18593]: audit 2024-02-11T16:10:08.559655+0000 mon.smithi120 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:09.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:08 smithi120 bash[14220]: cluster 2024-02-11T16:10:07.459311+0000 mgr.smithi120.tpsohu (mgr.14180) 79 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:09.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:08 smithi120 bash[14220]: audit 2024-02-11T16:10:08.047286+0000 mon.smithi120 (mon.0) 248 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:09.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:08 smithi120 bash[14220]: audit 2024-02-11T16:10:08.053815+0000 mon.smithi120 (mon.0) 249 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:09.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:08 smithi120 bash[14220]: audit 2024-02-11T16:10:08.118654+0000 mon.smithi120 (mon.0) 250 : audit [DBG] from='client.? 172.21.15.120:0/4191032594' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:09.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:08 smithi120 bash[14220]: audit 2024-02-11T16:10:08.559655+0000 mon.smithi120 (mon.0) 251 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:09.866 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:10.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:09 smithi183 bash[18593]: audit 2024-02-11T16:10:08.835614+0000 mon.smithi120 (mon.0) 252 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:10.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:09 smithi183 bash[18593]: audit 2024-02-11T16:10:08.837109+0000 mon.smithi120 (mon.0) 253 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:10.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:09 smithi183 bash[18593]: audit 2024-02-11T16:10:08.837979+0000 mon.smithi120 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:10:10.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:09 smithi183 bash[18593]: audit 2024-02-11T16:10:08.844875+0000 mon.smithi120 (mon.0) 255 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:10.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:09 smithi183 bash[18593]: audit 2024-02-11T16:10:08.852774+0000 mon.smithi120 (mon.0) 256 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:10:10.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:09 smithi183 bash[18593]: audit 2024-02-11T16:10:08.859035+0000 mon.smithi120 (mon.0) 257 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-11T16:10:10.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:09 smithi183 bash[18593]: audit 2024-02-11T16:10:08.861956+0000 mon.smithi120 (mon.0) 258 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-11T16:10:10.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:09 smithi183 bash[18593]: audit 2024-02-11T16:10:08.862229+0000 mon.smithi120 (mon.0) 259 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:10.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:09 smithi183 bash[18593]: audit 2024-02-11T16:10:08.863137+0000 mon.smithi120 (mon.0) 260 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:09 smithi120 bash[14220]: audit 2024-02-11T16:10:08.835614+0000 mon.smithi120 (mon.0) 252 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:09 smithi120 bash[14220]: audit 2024-02-11T16:10:08.837109+0000 mon.smithi120 (mon.0) 253 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:09 smithi120 bash[14220]: audit 2024-02-11T16:10:08.837979+0000 mon.smithi120 (mon.0) 254 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:10:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:09 smithi120 bash[14220]: audit 2024-02-11T16:10:08.844875+0000 mon.smithi120 (mon.0) 255 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:09 smithi120 bash[14220]: audit 2024-02-11T16:10:08.852774+0000 mon.smithi120 (mon.0) 256 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:10:10.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:09 smithi120 bash[14220]: audit 2024-02-11T16:10:08.859035+0000 mon.smithi120 (mon.0) 257 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-11T16:10:10.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:09 smithi120 bash[14220]: audit 2024-02-11T16:10:08.861956+0000 mon.smithi120 (mon.0) 258 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-11T16:10:10.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:09 smithi120 bash[14220]: audit 2024-02-11T16:10:08.862229+0000 mon.smithi120 (mon.0) 259 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:10.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:09 smithi120 bash[14220]: audit 2024-02-11T16:10:08.863137+0000 mon.smithi120 (mon.0) 260 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:11.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:10 smithi183 bash[18593]: cluster 2024-02-11T16:10:09.459772+0000 mgr.smithi120.tpsohu (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:11.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:10 smithi120 bash[14220]: cluster 2024-02-11T16:10:09.459772+0000 mgr.smithi120.tpsohu (mgr.14180) 80 : cluster [DBG] pgmap v39: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:12.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:11 smithi120 bash[14220]: cluster 2024-02-11T16:10:11.460210+0000 mgr.smithi120.tpsohu (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:12.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:11 smithi183 bash[18593]: cluster 2024-02-11T16:10:11.460210+0000 mgr.smithi120.tpsohu (mgr.14180) 81 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:12.640 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:12 smithi120 bash[14220]: audit 2024-02-11T16:10:12.639626+0000 mon.smithi120 (mon.0) 261 : audit [DBG] from='client.? 172.21.15.120:0/3036116770' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:13.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:12 smithi183 bash[18593]: audit 2024-02-11T16:10:12.639626+0000 mon.smithi120 (mon.0) 261 : audit [DBG] from='client.? 172.21.15.120:0/3036116770' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:13.462 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":5,"num_osds":0,"num_up_osds":0,"osd_up_since":0,"num_in_osds":0,"osd_in_since":0,"num_remapped_pgs":0} 2024-02-11T16:10:14.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:13 smithi183 bash[18593]: cluster 2024-02-11T16:10:13.460621+0000 mgr.smithi120.tpsohu (mgr.14180) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:14.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:13 smithi120 bash[14220]: cluster 2024-02-11T16:10:13.460621+0000 mgr.smithi120.tpsohu (mgr.14180) 82 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:14.463 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:16.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:16 smithi120 bash[14220]: cluster 2024-02-11T16:10:15.461046+0000 mgr.smithi120.tpsohu (mgr.14180) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:16.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:16 smithi183 bash[18593]: cluster 2024-02-11T16:10:15.461046+0000 mgr.smithi120.tpsohu (mgr.14180) 83 : cluster [DBG] pgmap v42: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:18.803 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:18.850 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:18 smithi120 bash[14220]: cluster 2024-02-11T16:10:17.461513+0000 mgr.smithi120.tpsohu (mgr.14180) 84 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:18.850 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:18 smithi120 bash[14220]: audit 2024-02-11T16:10:17.711379+0000 mon.smithi183 (mon.1) 2 : audit [INF] from='client.? 172.21.15.183:0/2591637172' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3c2091d9-120b-4244-ba21-2cb171c1e209"}]: dispatch 2024-02-11T16:10:18.851 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:18 smithi120 bash[14220]: audit 2024-02-11T16:10:17.713326+0000 mon.smithi120 (mon.0) 262 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3c2091d9-120b-4244-ba21-2cb171c1e209"}]: dispatch 2024-02-11T16:10:18.851 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:18 smithi120 bash[14220]: audit 2024-02-11T16:10:17.721341+0000 mon.smithi120 (mon.0) 263 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3c2091d9-120b-4244-ba21-2cb171c1e209"}]': finished 2024-02-11T16:10:18.851 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:18 smithi120 bash[14220]: cluster 2024-02-11T16:10:17.721462+0000 mon.smithi120 (mon.0) 264 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-11T16:10:18.851 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:18 smithi120 bash[14220]: audit 2024-02-11T16:10:17.721676+0000 mon.smithi120 (mon.0) 265 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:18.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:18 smithi183 bash[18593]: cluster 2024-02-11T16:10:17.461513+0000 mgr.smithi120.tpsohu (mgr.14180) 84 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:18.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:18 smithi183 bash[18593]: audit 2024-02-11T16:10:17.711379+0000 mon.smithi183 (mon.1) 2 : audit [INF] from='client.? 172.21.15.183:0/2591637172' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3c2091d9-120b-4244-ba21-2cb171c1e209"}]: dispatch 2024-02-11T16:10:18.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:18 smithi183 bash[18593]: audit 2024-02-11T16:10:17.713326+0000 mon.smithi120 (mon.0) 262 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3c2091d9-120b-4244-ba21-2cb171c1e209"}]: dispatch 2024-02-11T16:10:18.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:18 smithi183 bash[18593]: audit 2024-02-11T16:10:17.721341+0000 mon.smithi120 (mon.0) 263 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3c2091d9-120b-4244-ba21-2cb171c1e209"}]': finished 2024-02-11T16:10:18.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:18 smithi183 bash[18593]: cluster 2024-02-11T16:10:17.721462+0000 mon.smithi120 (mon.0) 264 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-02-11T16:10:18.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:18 smithi183 bash[18593]: audit 2024-02-11T16:10:17.721676+0000 mon.smithi120 (mon.0) 265 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:19.605 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":6,"num_osds":1,"num_up_osds":0,"osd_up_since":0,"num_in_osds":1,"osd_in_since":1707667817,"num_remapped_pgs":0} 2024-02-11T16:10:19.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:19 smithi183 bash[18593]: audit 2024-02-11T16:10:18.802905+0000 mon.smithi120 (mon.0) 266 : audit [DBG] from='client.? 172.21.15.120:0/3291314589' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:19.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:19 smithi183 bash[18593]: audit 2024-02-11T16:10:19.373585+0000 mon.smithi183 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.183:0/3673733056' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:19.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:19 smithi120 bash[14220]: audit 2024-02-11T16:10:18.802905+0000 mon.smithi120 (mon.0) 266 : audit [DBG] from='client.? 172.21.15.120:0/3291314589' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:19.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:19 smithi120 bash[14220]: audit 2024-02-11T16:10:19.373585+0000 mon.smithi183 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.183:0/3673733056' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:20.606 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:20.800 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:20 smithi120 bash[14220]: cluster 2024-02-11T16:10:19.461928+0000 mgr.smithi120.tpsohu (mgr.14180) 85 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:20.801 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:20 smithi120 bash[14220]: audit 2024-02-11T16:10:20.060450+0000 mon.smithi120 (mon.0) 267 : audit [INF] from='client.? 172.21.15.120:0/2969665656' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2726d3b6-6ac5-48a9-9a88-5ffe4de464ef"}]: dispatch 2024-02-11T16:10:20.801 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:20 smithi120 bash[14220]: audit 2024-02-11T16:10:20.066319+0000 mon.smithi120 (mon.0) 268 : audit [INF] from='client.? 172.21.15.120:0/2969665656' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2726d3b6-6ac5-48a9-9a88-5ffe4de464ef"}]': finished 2024-02-11T16:10:20.801 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:20 smithi120 bash[14220]: cluster 2024-02-11T16:10:20.066378+0000 mon.smithi120 (mon.0) 269 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-11T16:10:20.801 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:20 smithi120 bash[14220]: audit 2024-02-11T16:10:20.066545+0000 mon.smithi120 (mon.0) 270 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:20.801 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:20 smithi120 bash[14220]: audit 2024-02-11T16:10:20.067231+0000 mon.smithi120 (mon.0) 271 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:20.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:20 smithi183 bash[18593]: cluster 2024-02-11T16:10:19.461928+0000 mgr.smithi120.tpsohu (mgr.14180) 85 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:20.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:20 smithi183 bash[18593]: audit 2024-02-11T16:10:20.060450+0000 mon.smithi120 (mon.0) 267 : audit [INF] from='client.? 172.21.15.120:0/2969665656' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "2726d3b6-6ac5-48a9-9a88-5ffe4de464ef"}]: dispatch 2024-02-11T16:10:20.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:20 smithi183 bash[18593]: audit 2024-02-11T16:10:20.066319+0000 mon.smithi120 (mon.0) 268 : audit [INF] from='client.? 172.21.15.120:0/2969665656' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "2726d3b6-6ac5-48a9-9a88-5ffe4de464ef"}]': finished 2024-02-11T16:10:20.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:20 smithi183 bash[18593]: cluster 2024-02-11T16:10:20.066378+0000 mon.smithi120 (mon.0) 269 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-02-11T16:10:20.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:20 smithi183 bash[18593]: audit 2024-02-11T16:10:20.066545+0000 mon.smithi120 (mon.0) 270 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:20.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:20 smithi183 bash[18593]: audit 2024-02-11T16:10:20.067231+0000 mon.smithi120 (mon.0) 271 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:22.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:22 smithi183 bash[18593]: cluster 2024-02-11T16:10:21.462368+0000 mgr.smithi120.tpsohu (mgr.14180) 86 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:22.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:22 smithi183 bash[18593]: audit 2024-02-11T16:10:22.148405+0000 mon.smithi183 (mon.1) 4 : audit [INF] from='client.? 172.21.15.183:0/3611918259' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1af3e654-aa0d-4310-9075-1307c31f8cb6"}]: dispatch 2024-02-11T16:10:22.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:22 smithi183 bash[18593]: audit 2024-02-11T16:10:22.149976+0000 mon.smithi120 (mon.0) 272 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1af3e654-aa0d-4310-9075-1307c31f8cb6"}]: dispatch 2024-02-11T16:10:22.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:22 smithi183 bash[18593]: audit 2024-02-11T16:10:22.155345+0000 mon.smithi120 (mon.0) 273 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1af3e654-aa0d-4310-9075-1307c31f8cb6"}]': finished 2024-02-11T16:10:22.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:22 smithi183 bash[18593]: cluster 2024-02-11T16:10:22.155425+0000 mon.smithi120 (mon.0) 274 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-11T16:10:22.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:22 smithi183 bash[18593]: audit 2024-02-11T16:10:22.155524+0000 mon.smithi120 (mon.0) 275 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:22.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:22 smithi183 bash[18593]: audit 2024-02-11T16:10:22.155752+0000 mon.smithi120 (mon.0) 276 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:22.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:22 smithi183 bash[18593]: audit 2024-02-11T16:10:22.155923+0000 mon.smithi120 (mon.0) 277 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:22.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:22 smithi183 bash[18593]: audit 2024-02-11T16:10:22.382669+0000 mon.smithi120 (mon.0) 278 : audit [DBG] from='client.? 172.21.15.120:0/9659551' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:22 smithi120 bash[14220]: cluster 2024-02-11T16:10:21.462368+0000 mgr.smithi120.tpsohu (mgr.14180) 86 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:22 smithi120 bash[14220]: audit 2024-02-11T16:10:22.148405+0000 mon.smithi183 (mon.1) 4 : audit [INF] from='client.? 172.21.15.183:0/3611918259' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1af3e654-aa0d-4310-9075-1307c31f8cb6"}]: dispatch 2024-02-11T16:10:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:22 smithi120 bash[14220]: audit 2024-02-11T16:10:22.149976+0000 mon.smithi120 (mon.0) 272 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "1af3e654-aa0d-4310-9075-1307c31f8cb6"}]: dispatch 2024-02-11T16:10:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:22 smithi120 bash[14220]: audit 2024-02-11T16:10:22.155345+0000 mon.smithi120 (mon.0) 273 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "1af3e654-aa0d-4310-9075-1307c31f8cb6"}]': finished 2024-02-11T16:10:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:22 smithi120 bash[14220]: cluster 2024-02-11T16:10:22.155425+0000 mon.smithi120 (mon.0) 274 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-02-11T16:10:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:22 smithi120 bash[14220]: audit 2024-02-11T16:10:22.155524+0000 mon.smithi120 (mon.0) 275 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:22.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:22 smithi120 bash[14220]: audit 2024-02-11T16:10:22.155752+0000 mon.smithi120 (mon.0) 276 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:22.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:22 smithi120 bash[14220]: audit 2024-02-11T16:10:22.155923+0000 mon.smithi120 (mon.0) 277 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:22.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:22 smithi120 bash[14220]: audit 2024-02-11T16:10:22.382669+0000 mon.smithi120 (mon.0) 278 : audit [DBG] from='client.? 172.21.15.120:0/9659551' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:24.147 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:24.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:24 smithi183 bash[18593]: cluster 2024-02-11T16:10:23.462691+0000 mgr.smithi120.tpsohu (mgr.14180) 87 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:24.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:24 smithi183 bash[18593]: audit 2024-02-11T16:10:23.713116+0000 mon.smithi183 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.183:0/4016450973' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:24.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:24 smithi183 bash[18593]: audit 2024-02-11T16:10:24.146032+0000 mon.smithi120 (mon.0) 279 : audit [DBG] from='client.? 172.21.15.120:0/109664328' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:24.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:24 smithi120 bash[14220]: cluster 2024-02-11T16:10:23.462691+0000 mgr.smithi120.tpsohu (mgr.14180) 87 : cluster [DBG] pgmap v49: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:24.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:24 smithi120 bash[14220]: audit 2024-02-11T16:10:23.713116+0000 mon.smithi183 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.183:0/4016450973' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:24.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:24 smithi120 bash[14220]: audit 2024-02-11T16:10:24.146032+0000 mon.smithi120 (mon.0) 279 : audit [DBG] from='client.? 172.21.15.120:0/109664328' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:24.883 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":8,"num_osds":3,"num_up_osds":0,"osd_up_since":0,"num_in_osds":3,"osd_in_since":1707667822,"num_remapped_pgs":0} 2024-02-11T16:10:25.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:25 smithi120 bash[14220]: audit 2024-02-11T16:10:25.151711+0000 mon.smithi120 (mon.0) 280 : audit [INF] from='client.? 172.21.15.120:0/2980748446' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "003769f8-7dea-4cd7-b654-2536afc45dc3"}]: dispatch 2024-02-11T16:10:25.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:25 smithi120 bash[14220]: audit 2024-02-11T16:10:25.159413+0000 mon.smithi120 (mon.0) 281 : audit [INF] from='client.? 172.21.15.120:0/2980748446' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "003769f8-7dea-4cd7-b654-2536afc45dc3"}]': finished 2024-02-11T16:10:25.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:25 smithi120 bash[14220]: cluster 2024-02-11T16:10:25.159564+0000 mon.smithi120 (mon.0) 282 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-11T16:10:25.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:25 smithi120 bash[14220]: audit 2024-02-11T16:10:25.159866+0000 mon.smithi120 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:25.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:25 smithi120 bash[14220]: audit 2024-02-11T16:10:25.160534+0000 mon.smithi120 (mon.0) 284 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:25.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:25 smithi120 bash[14220]: audit 2024-02-11T16:10:25.160849+0000 mon.smithi120 (mon.0) 285 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:25.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:25 smithi120 bash[14220]: audit 2024-02-11T16:10:25.161252+0000 mon.smithi120 (mon.0) 286 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:25.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:25 smithi183 bash[18593]: audit 2024-02-11T16:10:25.151711+0000 mon.smithi120 (mon.0) 280 : audit [INF] from='client.? 172.21.15.120:0/2980748446' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "003769f8-7dea-4cd7-b654-2536afc45dc3"}]: dispatch 2024-02-11T16:10:25.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:25 smithi183 bash[18593]: audit 2024-02-11T16:10:25.159413+0000 mon.smithi120 (mon.0) 281 : audit [INF] from='client.? 172.21.15.120:0/2980748446' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "003769f8-7dea-4cd7-b654-2536afc45dc3"}]': finished 2024-02-11T16:10:25.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:25 smithi183 bash[18593]: cluster 2024-02-11T16:10:25.159564+0000 mon.smithi120 (mon.0) 282 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-02-11T16:10:25.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:25 smithi183 bash[18593]: audit 2024-02-11T16:10:25.159866+0000 mon.smithi120 (mon.0) 283 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:25.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:25 smithi183 bash[18593]: audit 2024-02-11T16:10:25.160534+0000 mon.smithi120 (mon.0) 284 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:25.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:25 smithi183 bash[18593]: audit 2024-02-11T16:10:25.160849+0000 mon.smithi120 (mon.0) 285 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:25.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:25 smithi183 bash[18593]: audit 2024-02-11T16:10:25.161252+0000 mon.smithi120 (mon.0) 286 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:25.884 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:26.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: cluster 2024-02-11T16:10:25.463026+0000 mgr.smithi120.tpsohu (mgr.14180) 88 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:26.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: audit 2024-02-11T16:10:26.514123+0000 mon.smithi183 (mon.1) 6 : audit [INF] from='client.? 172.21.15.183:0/2724410581' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c2c1d8e3-852b-448e-8686-1eb377c2c1cc"}]: dispatch 2024-02-11T16:10:26.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: audit 2024-02-11T16:10:26.516088+0000 mon.smithi120 (mon.0) 287 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c2c1d8e3-852b-448e-8686-1eb377c2c1cc"}]: dispatch 2024-02-11T16:10:26.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: audit 2024-02-11T16:10:26.525805+0000 mon.smithi120 (mon.0) 288 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c2c1d8e3-852b-448e-8686-1eb377c2c1cc"}]': finished 2024-02-11T16:10:26.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: cluster 2024-02-11T16:10:26.525927+0000 mon.smithi120 (mon.0) 289 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-11T16:10:26.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: audit 2024-02-11T16:10:26.526165+0000 mon.smithi120 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:26.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: audit 2024-02-11T16:10:26.526730+0000 mon.smithi120 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:26.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: audit 2024-02-11T16:10:26.526996+0000 mon.smithi120 (mon.0) 292 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:26.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: audit 2024-02-11T16:10:26.527252+0000 mon.smithi120 (mon.0) 293 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:26.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:26 smithi183 bash[18593]: audit 2024-02-11T16:10:26.527498+0000 mon.smithi120 (mon.0) 294 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: cluster 2024-02-11T16:10:25.463026+0000 mgr.smithi120.tpsohu (mgr.14180) 88 : cluster [DBG] pgmap v51: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: audit 2024-02-11T16:10:26.514123+0000 mon.smithi183 (mon.1) 6 : audit [INF] from='client.? 172.21.15.183:0/2724410581' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c2c1d8e3-852b-448e-8686-1eb377c2c1cc"}]: dispatch 2024-02-11T16:10:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: audit 2024-02-11T16:10:26.516088+0000 mon.smithi120 (mon.0) 287 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "c2c1d8e3-852b-448e-8686-1eb377c2c1cc"}]: dispatch 2024-02-11T16:10:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: audit 2024-02-11T16:10:26.525805+0000 mon.smithi120 (mon.0) 288 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "c2c1d8e3-852b-448e-8686-1eb377c2c1cc"}]': finished 2024-02-11T16:10:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: cluster 2024-02-11T16:10:26.525927+0000 mon.smithi120 (mon.0) 289 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-02-11T16:10:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: audit 2024-02-11T16:10:26.526165+0000 mon.smithi120 (mon.0) 290 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: audit 2024-02-11T16:10:26.526730+0000 mon.smithi120 (mon.0) 291 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: audit 2024-02-11T16:10:26.526996+0000 mon.smithi120 (mon.0) 292 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: audit 2024-02-11T16:10:26.527252+0000 mon.smithi120 (mon.0) 293 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:26.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:26 smithi120 bash[14220]: audit 2024-02-11T16:10:26.527498+0000 mon.smithi120 (mon.0) 294 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:27.819 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:27 smithi120 bash[14220]: audit 2024-02-11T16:10:27.299933+0000 mon.smithi120 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.120:0/3973897758' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:27.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:27 smithi183 bash[18593]: audit 2024-02-11T16:10:27.299933+0000 mon.smithi120 (mon.0) 295 : audit [DBG] from='client.? 172.21.15.120:0/3973897758' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:28.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:28 smithi183 bash[18593]: cluster 2024-02-11T16:10:27.463429+0000 mgr.smithi120.tpsohu (mgr.14180) 89 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:28.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:28 smithi183 bash[18593]: audit 2024-02-11T16:10:28.097397+0000 mon.smithi183 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.183:0/3170577718' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:28.906 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:28 smithi120 bash[14220]: cluster 2024-02-11T16:10:27.463429+0000 mgr.smithi120.tpsohu (mgr.14180) 89 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:28.906 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:28 smithi120 bash[14220]: audit 2024-02-11T16:10:28.097397+0000 mon.smithi183 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.183:0/3170577718' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:29.430 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:29.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:29 smithi183 bash[18593]: audit 2024-02-11T16:10:29.428361+0000 mon.smithi120 (mon.0) 296 : audit [DBG] from='client.? 172.21.15.120:0/514750517' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:29.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:29 smithi120 bash[14220]: audit 2024-02-11T16:10:29.428361+0000 mon.smithi120 (mon.0) 296 : audit [DBG] from='client.? 172.21.15.120:0/514750517' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:30.178 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":10,"num_osds":5,"num_up_osds":0,"osd_up_since":0,"num_in_osds":5,"osd_in_since":1707667826,"num_remapped_pgs":0} 2024-02-11T16:10:30.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: cluster 2024-02-11T16:10:29.463864+0000 mgr.smithi120.tpsohu (mgr.14180) 90 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:30.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: audit 2024-02-11T16:10:30.074414+0000 mon.smithi120 (mon.0) 297 : audit [INF] from='client.? 172.21.15.120:0/4148353377' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f7161d06-6017-45b3-82c1-e998875ee374"}]: dispatch 2024-02-11T16:10:30.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: audit 2024-02-11T16:10:30.079517+0000 mon.smithi120 (mon.0) 298 : audit [INF] from='client.? 172.21.15.120:0/4148353377' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f7161d06-6017-45b3-82c1-e998875ee374"}]': finished 2024-02-11T16:10:30.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: cluster 2024-02-11T16:10:30.079597+0000 mon.smithi120 (mon.0) 299 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-11T16:10:30.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: audit 2024-02-11T16:10:30.079784+0000 mon.smithi120 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:30.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: audit 2024-02-11T16:10:30.080271+0000 mon.smithi120 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:30.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: audit 2024-02-11T16:10:30.080485+0000 mon.smithi120 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:30.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: audit 2024-02-11T16:10:30.080699+0000 mon.smithi120 (mon.0) 303 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:30.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: audit 2024-02-11T16:10:30.080921+0000 mon.smithi120 (mon.0) 304 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:30.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:30 smithi183 bash[18593]: audit 2024-02-11T16:10:30.081128+0000 mon.smithi120 (mon.0) 305 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:30.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: cluster 2024-02-11T16:10:29.463864+0000 mgr.smithi120.tpsohu (mgr.14180) 90 : cluster [DBG] pgmap v54: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:30.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: audit 2024-02-11T16:10:30.074414+0000 mon.smithi120 (mon.0) 297 : audit [INF] from='client.? 172.21.15.120:0/4148353377' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "f7161d06-6017-45b3-82c1-e998875ee374"}]: dispatch 2024-02-11T16:10:30.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: audit 2024-02-11T16:10:30.079517+0000 mon.smithi120 (mon.0) 298 : audit [INF] from='client.? 172.21.15.120:0/4148353377' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "f7161d06-6017-45b3-82c1-e998875ee374"}]': finished 2024-02-11T16:10:30.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: cluster 2024-02-11T16:10:30.079597+0000 mon.smithi120 (mon.0) 299 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-02-11T16:10:30.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: audit 2024-02-11T16:10:30.079784+0000 mon.smithi120 (mon.0) 300 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:30.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: audit 2024-02-11T16:10:30.080271+0000 mon.smithi120 (mon.0) 301 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:30.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: audit 2024-02-11T16:10:30.080485+0000 mon.smithi120 (mon.0) 302 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:30.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: audit 2024-02-11T16:10:30.080699+0000 mon.smithi120 (mon.0) 303 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:30.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: audit 2024-02-11T16:10:30.080921+0000 mon.smithi120 (mon.0) 304 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:30.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:30 smithi120 bash[14220]: audit 2024-02-11T16:10:30.081128+0000 mon.smithi120 (mon.0) 305 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:31.179 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:31.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.903210+0000 mon.smithi183 (mon.1) 8 : audit [INF] from='client.? 172.21.15.183:0/1103283043' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "24ad111b-d805-4655-8b67-2e9ad34cbcca"}]: dispatch 2024-02-11T16:10:31.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.904885+0000 mon.smithi120 (mon.0) 306 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "24ad111b-d805-4655-8b67-2e9ad34cbcca"}]: dispatch 2024-02-11T16:10:31.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.912425+0000 mon.smithi120 (mon.0) 307 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "24ad111b-d805-4655-8b67-2e9ad34cbcca"}]': finished 2024-02-11T16:10:31.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: cluster 2024-02-11T16:10:30.912598+0000 mon.smithi120 (mon.0) 308 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-11T16:10:31.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.912865+0000 mon.smithi120 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:31.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.913245+0000 mon.smithi120 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:31.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.913464+0000 mon.smithi120 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:31.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.913705+0000 mon.smithi120 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:31.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.913917+0000 mon.smithi120 (mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:31.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.914212+0000 mon.smithi120 (mon.0) 314 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:31.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:31 smithi120 bash[14220]: audit 2024-02-11T16:10:30.914490+0000 mon.smithi120 (mon.0) 315 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:31.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.903210+0000 mon.smithi183 (mon.1) 8 : audit [INF] from='client.? 172.21.15.183:0/1103283043' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "24ad111b-d805-4655-8b67-2e9ad34cbcca"}]: dispatch 2024-02-11T16:10:31.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.904885+0000 mon.smithi120 (mon.0) 306 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "24ad111b-d805-4655-8b67-2e9ad34cbcca"}]: dispatch 2024-02-11T16:10:31.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.912425+0000 mon.smithi120 (mon.0) 307 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "24ad111b-d805-4655-8b67-2e9ad34cbcca"}]': finished 2024-02-11T16:10:31.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: cluster 2024-02-11T16:10:30.912598+0000 mon.smithi120 (mon.0) 308 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-02-11T16:10:31.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.912865+0000 mon.smithi120 (mon.0) 309 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:31.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.913245+0000 mon.smithi120 (mon.0) 310 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:31.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.913464+0000 mon.smithi120 (mon.0) 311 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:31.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.913705+0000 mon.smithi120 (mon.0) 312 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:31.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.913917+0000 mon.smithi120 (mon.0) 313 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:31.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.914212+0000 mon.smithi120 (mon.0) 314 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:31.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:31 smithi183 bash[18593]: audit 2024-02-11T16:10:30.914490+0000 mon.smithi120 (mon.0) 315 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:32.810 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:32 smithi120 bash[14220]: cluster 2024-02-11T16:10:31.464348+0000 mgr.smithi120.tpsohu (mgr.14180) 91 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:32.810 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:32 smithi120 bash[14220]: audit 2024-02-11T16:10:31.656023+0000 mon.smithi120 (mon.0) 316 : audit [DBG] from='client.? 172.21.15.120:0/1466325706' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:32.810 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:32 smithi120 bash[14220]: audit 2024-02-11T16:10:32.425496+0000 mon.smithi183 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.183:0/147999519' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:32.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:32 smithi183 bash[18593]: cluster 2024-02-11T16:10:31.464348+0000 mgr.smithi120.tpsohu (mgr.14180) 91 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:32.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:32 smithi183 bash[18593]: audit 2024-02-11T16:10:31.656023+0000 mon.smithi120 (mon.0) 316 : audit [DBG] from='client.? 172.21.15.120:0/1466325706' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:32.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:32 smithi183 bash[18593]: audit 2024-02-11T16:10:32.425496+0000 mon.smithi183 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.183:0/147999519' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:34.431 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:34.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: cluster 2024-02-11T16:10:33.464820+0000 mgr.smithi120.tpsohu (mgr.14180) 92 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:34.728 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.428414+0000 mon.smithi120 (mon.0) 317 : audit [INF] from='client.? 172.21.15.120:0/2167609209' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3492b139-3601-4090-8f8e-a98cb49c3ce8"}]: dispatch 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.430596+0000 mon.smithi120 (mon.0) 318 : audit [DBG] from='client.? 172.21.15.120:0/1599371899' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.434700+0000 mon.smithi120 (mon.0) 319 : audit [INF] from='client.? 172.21.15.120:0/2167609209' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3492b139-3601-4090-8f8e-a98cb49c3ce8"}]': finished 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: cluster 2024-02-11T16:10:34.434749+0000 mon.smithi120 (mon.0) 320 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.434953+0000 mon.smithi120 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.435801+0000 mon.smithi120 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.436383+0000 mon.smithi120 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.436928+0000 mon.smithi120 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.437459+0000 mon.smithi120 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.437990+0000 mon.smithi120 (mon.0) 326 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.438561+0000 mon.smithi120 (mon.0) 327 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:34.729 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:34 smithi120 bash[14220]: audit 2024-02-11T16:10:34.438854+0000 mon.smithi120 (mon.0) 328 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:10:34.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: cluster 2024-02-11T16:10:33.464820+0000 mgr.smithi120.tpsohu (mgr.14180) 92 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:34.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.428414+0000 mon.smithi120 (mon.0) 317 : audit [INF] from='client.? 172.21.15.120:0/2167609209' entity='client.bootstrap-osd' cmd=[{"prefix": "osd new", "uuid": "3492b139-3601-4090-8f8e-a98cb49c3ce8"}]: dispatch 2024-02-11T16:10:34.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.430596+0000 mon.smithi120 (mon.0) 318 : audit [DBG] from='client.? 172.21.15.120:0/1599371899' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:34.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.434700+0000 mon.smithi120 (mon.0) 319 : audit [INF] from='client.? 172.21.15.120:0/2167609209' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3492b139-3601-4090-8f8e-a98cb49c3ce8"}]': finished 2024-02-11T16:10:34.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: cluster 2024-02-11T16:10:34.434749+0000 mon.smithi120 (mon.0) 320 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-02-11T16:10:34.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.434953+0000 mon.smithi120 (mon.0) 321 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:34.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.435801+0000 mon.smithi120 (mon.0) 322 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:34.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.436383+0000 mon.smithi120 (mon.0) 323 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:34.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.436928+0000 mon.smithi120 (mon.0) 324 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:34.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.437459+0000 mon.smithi120 (mon.0) 325 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:34.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.437990+0000 mon.smithi120 (mon.0) 326 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:34.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.438561+0000 mon.smithi120 (mon.0) 327 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:34.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:34 smithi183 bash[18593]: audit 2024-02-11T16:10:34.438854+0000 mon.smithi120 (mon.0) 328 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:10:35.412 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":12,"num_osds":7,"num_up_osds":0,"osd_up_since":0,"num_in_osds":7,"osd_in_since":1707667830,"num_remapped_pgs":0} 2024-02-11T16:10:36.413 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:36.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:36 smithi183 bash[18593]: cluster 2024-02-11T16:10:35.465260+0000 mgr.smithi120.tpsohu (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:36.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:36 smithi183 bash[18593]: audit 2024-02-11T16:10:36.399698+0000 mon.smithi120 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.120:0/3749379158' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:36.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:36 smithi120 bash[14220]: cluster 2024-02-11T16:10:35.465260+0000 mgr.smithi120.tpsohu (mgr.14180) 93 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:36.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:36 smithi120 bash[14220]: audit 2024-02-11T16:10:36.399698+0000 mon.smithi120 (mon.0) 329 : audit [DBG] from='client.? 172.21.15.120:0/3749379158' entity='client.bootstrap-osd' cmd=[{"prefix": "mon getmap"}]: dispatch 2024-02-11T16:10:38.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:38 smithi183 bash[18593]: cluster 2024-02-11T16:10:37.465692+0000 mgr.smithi120.tpsohu (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:38.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:38 smithi120 bash[14220]: cluster 2024-02-11T16:10:37.465692+0000 mgr.smithi120.tpsohu (mgr.14180) 94 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:39.582 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:39.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:39 smithi183 bash[18593]: audit 2024-02-11T16:10:39.581480+0000 mon.smithi120 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.120:0/3084568459' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:39.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:39 smithi120 bash[14220]: audit 2024-02-11T16:10:39.581480+0000 mon.smithi120 (mon.0) 330 : audit [DBG] from='client.? 172.21.15.120:0/3084568459' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:40.439 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1707667834,"num_remapped_pgs":0} 2024-02-11T16:10:40.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:40 smithi183 bash[18593]: cluster 2024-02-11T16:10:39.465961+0000 mgr.smithi120.tpsohu (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:40.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:40 smithi120 bash[14220]: cluster 2024-02-11T16:10:39.465961+0000 mgr.smithi120.tpsohu (mgr.14180) 95 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:41.440 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:42.850 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:42 smithi120 bash[14220]: cluster 2024-02-11T16:10:41.466325+0000 mgr.smithi120.tpsohu (mgr.14180) 96 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:42.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:42 smithi183 bash[18593]: cluster 2024-02-11T16:10:41.466325+0000 mgr.smithi120.tpsohu (mgr.14180) 96 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:44.521 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:44.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:44 smithi183 bash[18593]: cluster 2024-02-11T16:10:43.466853+0000 mgr.smithi120.tpsohu (mgr.14180) 97 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:44.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:44 smithi183 bash[18593]: audit 2024-02-11T16:10:44.034245+0000 mon.smithi120 (mon.0) 331 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-11T16:10:44.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:44 smithi183 bash[18593]: audit 2024-02-11T16:10:44.035900+0000 mon.smithi120 (mon.0) 332 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:44.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:44 smithi183 bash[18593]: audit 2024-02-11T16:10:44.519510+0000 mon.smithi183 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.120:0/4192593661' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:44.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:44 smithi120 bash[14220]: cluster 2024-02-11T16:10:43.466853+0000 mgr.smithi120.tpsohu (mgr.14180) 97 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:44.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:44 smithi120 bash[14220]: audit 2024-02-11T16:10:44.034245+0000 mon.smithi120 (mon.0) 331 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.0"}]: dispatch 2024-02-11T16:10:44.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:44 smithi120 bash[14220]: audit 2024-02-11T16:10:44.035900+0000 mon.smithi120 (mon.0) 332 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:44.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:44 smithi120 bash[14220]: audit 2024-02-11T16:10:44.519510+0000 mon.smithi183 (mon.1) 10 : audit [DBG] from='client.? 172.21.15.120:0/4192593661' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:45.559 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1707667834,"num_remapped_pgs":0} 2024-02-11T16:10:45.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:45 smithi183 bash[18593]: cephadm 2024-02-11T16:10:44.037394+0000 mgr.smithi120.tpsohu (mgr.14180) 98 : cephadm [INF] Deploying daemon osd.0 on smithi183 2024-02-11T16:10:45.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:45 smithi120 bash[14220]: cephadm 2024-02-11T16:10:44.037394+0000 mgr.smithi120.tpsohu (mgr.14180) 98 : cephadm [INF] Deploying daemon osd.0 on smithi183 2024-02-11T16:10:46.560 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:46.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:46 smithi120 bash[14220]: cluster 2024-02-11T16:10:45.467240+0000 mgr.smithi120.tpsohu (mgr.14180) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:47.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:46 smithi183 bash[18593]: cluster 2024-02-11T16:10:45.467240+0000 mgr.smithi120.tpsohu (mgr.14180) 99 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:48.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:48 smithi120 bash[14220]: cluster 2024-02-11T16:10:47.467716+0000 mgr.smithi120.tpsohu (mgr.14180) 100 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:48.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:48 smithi120 bash[14220]: audit 2024-02-11T16:10:48.379679+0000 mon.smithi120 (mon.0) 333 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:48.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:48 smithi120 bash[14220]: audit 2024-02-11T16:10:48.380843+0000 mon.smithi120 (mon.0) 334 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-11T16:10:48.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:48 smithi120 bash[14220]: audit 2024-02-11T16:10:48.381709+0000 mon.smithi120 (mon.0) 335 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:48.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:48 smithi183 bash[18593]: cluster 2024-02-11T16:10:47.467716+0000 mgr.smithi120.tpsohu (mgr.14180) 100 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:48.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:48 smithi183 bash[18593]: audit 2024-02-11T16:10:48.379679+0000 mon.smithi120 (mon.0) 333 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:48.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:48 smithi183 bash[18593]: audit 2024-02-11T16:10:48.380843+0000 mon.smithi120 (mon.0) 334 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.2"}]: dispatch 2024-02-11T16:10:48.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:48 smithi183 bash[18593]: audit 2024-02-11T16:10:48.381709+0000 mon.smithi120 (mon.0) 335 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:49.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:49 smithi120 bash[14220]: cephadm 2024-02-11T16:10:48.382450+0000 mgr.smithi120.tpsohu (mgr.14180) 101 : cephadm [INF] Deploying daemon osd.2 on smithi183 2024-02-11T16:10:49.924 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:49 smithi183 bash[18593]: cephadm 2024-02-11T16:10:48.382450+0000 mgr.smithi120.tpsohu (mgr.14180) 101 : cephadm [INF] Deploying daemon osd.2 on smithi183 2024-02-11T16:10:50.746 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:50 smithi183 bash[18593]: cluster 2024-02-11T16:10:49.468187+0000 mgr.smithi120.tpsohu (mgr.14180) 102 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:50.746 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:50 smithi183 bash[18593]: audit 2024-02-11T16:10:49.848049+0000 mon.smithi120 (mon.0) 336 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-11T16:10:50.746 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:50 smithi183 bash[18593]: audit 2024-02-11T16:10:49.849293+0000 mon.smithi120 (mon.0) 337 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:50.746 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:50 smithi183 bash[18593]: cephadm 2024-02-11T16:10:49.850064+0000 mgr.smithi120.tpsohu (mgr.14180) 103 : cephadm [INF] Deploying daemon osd.1 on smithi120 2024-02-11T16:10:50.800 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:50.826 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:50 smithi120 bash[14220]: cluster 2024-02-11T16:10:49.468187+0000 mgr.smithi120.tpsohu (mgr.14180) 102 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:50.827 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:50 smithi120 bash[14220]: audit 2024-02-11T16:10:49.848049+0000 mon.smithi120 (mon.0) 336 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.1"}]: dispatch 2024-02-11T16:10:50.827 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:50 smithi120 bash[14220]: audit 2024-02-11T16:10:49.849293+0000 mon.smithi120 (mon.0) 337 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:50.827 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:50 smithi120 bash[14220]: cephadm 2024-02-11T16:10:49.850064+0000 mgr.smithi120.tpsohu (mgr.14180) 103 : cephadm [INF] Deploying daemon osd.1 on smithi120 2024-02-11T16:10:51.819 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1707667834,"num_remapped_pgs":0} 2024-02-11T16:10:51.897 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:51 smithi120 bash[14220]: audit 2024-02-11T16:10:50.799312+0000 mon.smithi120 (mon.0) 338 : audit [DBG] from='client.? 172.21.15.120:0/30964761' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:51.984 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:51 smithi183 bash[18593]: audit 2024-02-11T16:10:50.799312+0000 mon.smithi120 (mon.0) 338 : audit [DBG] from='client.? 172.21.15.120:0/30964761' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:52.820 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:52.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:52 smithi183 bash[18593]: cluster 2024-02-11T16:10:51.468650+0000 mgr.smithi120.tpsohu (mgr.14180) 104 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:52.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:52 smithi120 bash[14220]: cluster 2024-02-11T16:10:51.468650+0000 mgr.smithi120.tpsohu (mgr.14180) 104 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:54.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:54 smithi183 bash[18593]: cluster 2024-02-11T16:10:53.469121+0000 mgr.smithi120.tpsohu (mgr.14180) 105 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:54.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:54 smithi183 bash[18593]: audit 2024-02-11T16:10:53.583866+0000 mon.smithi120 (mon.0) 339 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:54.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:54 smithi183 bash[18593]: audit 2024-02-11T16:10:53.585192+0000 mon.smithi120 (mon.0) 340 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-11T16:10:54.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:54 smithi183 bash[18593]: audit 2024-02-11T16:10:53.586256+0000 mon.smithi120 (mon.0) 341 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:54 smithi183 bash[18593]: cephadm 2024-02-11T16:10:53.587108+0000 mgr.smithi120.tpsohu (mgr.14180) 106 : cephadm [INF] Deploying daemon osd.4 on smithi183 2024-02-11T16:10:54.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:54 smithi120 bash[14220]: cluster 2024-02-11T16:10:53.469121+0000 mgr.smithi120.tpsohu (mgr.14180) 105 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:54.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:54 smithi120 bash[14220]: audit 2024-02-11T16:10:53.583866+0000 mon.smithi120 (mon.0) 339 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:54.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:54 smithi120 bash[14220]: audit 2024-02-11T16:10:53.585192+0000 mon.smithi120 (mon.0) 340 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.4"}]: dispatch 2024-02-11T16:10:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:54 smithi120 bash[14220]: audit 2024-02-11T16:10:53.586256+0000 mon.smithi120 (mon.0) 341 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:54 smithi120 bash[14220]: cephadm 2024-02-11T16:10:53.587108+0000 mgr.smithi120.tpsohu (mgr.14180) 106 : cephadm [INF] Deploying daemon osd.4 on smithi183 2024-02-11T16:10:56.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:56 smithi183 bash[18593]: cluster 2024-02-11T16:10:55.469555+0000 mgr.smithi120.tpsohu (mgr.14180) 107 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:56.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:56 smithi183 bash[18593]: audit 2024-02-11T16:10:55.961505+0000 mon.smithi183 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.183:6800/4173450850,v1:172.21.15.183:6801/4173450850]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-11T16:10:56.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:56 smithi183 bash[18593]: audit 2024-02-11T16:10:55.963062+0000 mon.smithi120 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-11T16:10:56.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:56 smithi183 bash[18593]: audit 2024-02-11T16:10:55.980968+0000 mon.smithi120 (mon.0) 343 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:56.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:56 smithi183 bash[18593]: audit 2024-02-11T16:10:55.982229+0000 mon.smithi120 (mon.0) 344 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-11T16:10:56.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:56 smithi183 bash[18593]: audit 2024-02-11T16:10:55.983317+0000 mon.smithi120 (mon.0) 345 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:56.935 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:56 smithi120 bash[14220]: cluster 2024-02-11T16:10:55.469555+0000 mgr.smithi120.tpsohu (mgr.14180) 107 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:56.935 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:56 smithi120 bash[14220]: audit 2024-02-11T16:10:55.961505+0000 mon.smithi183 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.183:6800/4173450850,v1:172.21.15.183:6801/4173450850]' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-11T16:10:56.935 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:56 smithi120 bash[14220]: audit 2024-02-11T16:10:55.963062+0000 mon.smithi120 (mon.0) 342 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]: dispatch 2024-02-11T16:10:56.935 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:56 smithi120 bash[14220]: audit 2024-02-11T16:10:55.980968+0000 mon.smithi120 (mon.0) 343 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:56.935 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:56 smithi120 bash[14220]: audit 2024-02-11T16:10:55.982229+0000 mon.smithi120 (mon.0) 344 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.3"}]: dispatch 2024-02-11T16:10:56.935 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:56 smithi120 bash[14220]: audit 2024-02-11T16:10:55.983317+0000 mon.smithi120 (mon.0) 345 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:57.514 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:10:57.816 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: cephadm 2024-02-11T16:10:55.984274+0000 mgr.smithi120.tpsohu (mgr.14180) 108 : cephadm [INF] Deploying daemon osd.3 on smithi120 2024-02-11T16:10:57.816 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.595542+0000 mon.smithi120 (mon.0) 346 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-11T16:10:57.816 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: cluster 2024-02-11T16:10:56.595609+0000 mon.smithi120 (mon.0) 347 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-11T16:10:57.816 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.595742+0000 mon.smithi120 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:57.816 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.595993+0000 mon.smithi183 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.183:6800/4173450850,v1:172.21.15.183:6801/4173450850]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:10:57.816 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.596073+0000 mon.smithi120 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:57.817 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.596335+0000 mon.smithi120 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:57.817 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.596578+0000 mon.smithi120 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:57.817 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.596818+0000 mon.smithi120 (mon.0) 352 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:57.817 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.597044+0000 mon.smithi120 (mon.0) 353 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:57.817 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.597290+0000 mon.smithi120 (mon.0) 354 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:57.817 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.597580+0000 mon.smithi120 (mon.0) 355 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:10:57.817 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:56.597896+0000 mon.smithi120 (mon.0) 356 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:10:57.817 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:57 smithi120 bash[14220]: audit 2024-02-11T16:10:57.512380+0000 mon.smithi183 (mon.1) 13 : audit [DBG] from='client.? 172.21.15.120:0/4192756731' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:57.852 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: cephadm 2024-02-11T16:10:55.984274+0000 mgr.smithi120.tpsohu (mgr.14180) 108 : cephadm [INF] Deploying daemon osd.3 on smithi120 2024-02-11T16:10:57.852 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.595542+0000 mon.smithi120 (mon.0) 346 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-02-11T16:10:57.852 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: cluster 2024-02-11T16:10:56.595609+0000 mon.smithi120 (mon.0) 347 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-02-11T16:10:57.852 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.595742+0000 mon.smithi120 (mon.0) 348 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:57.852 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.595993+0000 mon.smithi183 (mon.1) 12 : audit [INF] from='osd.0 [v2:172.21.15.183:6800/4173450850,v1:172.21.15.183:6801/4173450850]' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:10:57.853 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.596073+0000 mon.smithi120 (mon.0) 349 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:57.853 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.596335+0000 mon.smithi120 (mon.0) 350 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:57.853 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.596578+0000 mon.smithi120 (mon.0) 351 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:57.853 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.596818+0000 mon.smithi120 (mon.0) 352 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:57.853 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.597044+0000 mon.smithi120 (mon.0) 353 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:57.853 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.597290+0000 mon.smithi120 (mon.0) 354 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:57.853 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.597580+0000 mon.smithi120 (mon.0) 355 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:10:57.853 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:56.597896+0000 mon.smithi120 (mon.0) 356 : audit [INF] from='osd.0 ' entity='osd.0' cmd=[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:10:57.853 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:57 smithi183 bash[18593]: audit 2024-02-11T16:10:57.512380+0000 mon.smithi183 (mon.1) 13 : audit [DBG] from='client.? 172.21.15.120:0/4192756731' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:10:58.779 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":14,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1707667834,"num_remapped_pgs":0} 2024-02-11T16:10:58.882 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: cluster 2024-02-11T16:10:57.469882+0000 mgr.smithi120.tpsohu (mgr.14180) 109 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:58.882 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.597798+0000 mon.smithi120 (mon.0) 357 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-02-11T16:10:58.882 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: cluster 2024-02-11T16:10:57.597860+0000 mon.smithi120 (mon.0) 358 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-11T16:10:58.882 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.598317+0000 mon.smithi120 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:58.882 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.599221+0000 mon.smithi120 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:58.882 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.599579+0000 mon.smithi120 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:58.882 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.600015+0000 mon.smithi120 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:58.883 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.603729+0000 mon.smithi120 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:58.883 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.603991+0000 mon.smithi120 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:58.883 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.604281+0000 mon.smithi120 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:58.883 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.604616+0000 mon.smithi120 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:10:58.883 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:58 smithi183 bash[18593]: audit 2024-02-11T16:10:57.605637+0000 mon.smithi120 (mon.0) 367 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:58.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: cluster 2024-02-11T16:10:57.469882+0000 mgr.smithi120.tpsohu (mgr.14180) 109 : cluster [DBG] pgmap v72: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:10:58.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.597798+0000 mon.smithi120 (mon.0) 357 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-02-11T16:10:58.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: cluster 2024-02-11T16:10:57.597860+0000 mon.smithi120 (mon.0) 358 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-02-11T16:10:58.890 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.598317+0000 mon.smithi120 (mon.0) 359 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:58.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.599221+0000 mon.smithi120 (mon.0) 360 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:58.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.599579+0000 mon.smithi120 (mon.0) 361 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:58.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.600015+0000 mon.smithi120 (mon.0) 362 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:58.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.603729+0000 mon.smithi120 (mon.0) 363 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:58.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.603991+0000 mon.smithi120 (mon.0) 364 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:58.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.604281+0000 mon.smithi120 (mon.0) 365 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:58.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.604616+0000 mon.smithi120 (mon.0) 366 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:10:58.891 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:58 smithi120 bash[14220]: audit 2024-02-11T16:10:57.605637+0000 mon.smithi120 (mon.0) 367 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: cluster 2024-02-11T16:10:56.932229+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: cluster 2024-02-11T16:10:56.932307+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: cluster 2024-02-11T16:10:58.605309+0000 mon.smithi120 (mon.0) 368 : cluster [INF] osd.0 [v2:172.21.15.183:6800/4173450850,v1:172.21.15.183:6801/4173450850] boot 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: cluster 2024-02-11T16:10:58.605381+0000 mon.smithi120 (mon.0) 369 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:58.605928+0000 mon.smithi120 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:58.606403+0000 mon.smithi120 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:58.606673+0000 mon.smithi120 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:58.606939+0000 mon.smithi120 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:58.607177+0000 mon.smithi120 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:59.670 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:58.607459+0000 mon.smithi120 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:59.671 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:58.607616+0000 mon.smithi120 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:59.671 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:58.607756+0000 mon.smithi120 (mon.0) 377 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:10:59.671 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:59.426915+0000 mon.smithi120 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:59.671 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:59.428534+0000 mon.smithi120 (mon.0) 379 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-11T16:10:59.671 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:10:59 smithi183 bash[18593]: audit 2024-02-11T16:10:59.429862+0000 mon.smithi120 (mon.0) 380 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:10:59.780 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:10:59.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: cluster 2024-02-11T16:10:56.932229+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:10:59.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: cluster 2024-02-11T16:10:56.932307+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:10:59.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: cluster 2024-02-11T16:10:58.605309+0000 mon.smithi120 (mon.0) 368 : cluster [INF] osd.0 [v2:172.21.15.183:6800/4173450850,v1:172.21.15.183:6801/4173450850] boot 2024-02-11T16:10:59.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: cluster 2024-02-11T16:10:58.605381+0000 mon.smithi120 (mon.0) 369 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-02-11T16:10:59.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:58.605928+0000 mon.smithi120 (mon.0) 370 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 0}]: dispatch 2024-02-11T16:10:59.882 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:58.606403+0000 mon.smithi120 (mon.0) 371 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:10:59.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:58.606673+0000 mon.smithi120 (mon.0) 372 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:10:59.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:58.606939+0000 mon.smithi120 (mon.0) 373 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:10:59.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:58.607177+0000 mon.smithi120 (mon.0) 374 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:10:59.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:58.607459+0000 mon.smithi120 (mon.0) 375 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:10:59.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:58.607616+0000 mon.smithi120 (mon.0) 376 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:10:59.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:58.607756+0000 mon.smithi120 (mon.0) 377 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:10:59.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:59.426915+0000 mon.smithi120 (mon.0) 378 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:10:59.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:59.428534+0000 mon.smithi120 (mon.0) 379 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.6"}]: dispatch 2024-02-11T16:10:59.883 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:10:59 smithi120 bash[14220]: audit 2024-02-11T16:10:59.429862+0000 mon.smithi120 (mon.0) 380 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:00.884 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: cephadm 2024-02-11T16:10:59.430904+0000 mgr.smithi120.tpsohu (mgr.14180) 110 : cephadm [INF] Deploying daemon osd.6 on smithi183 2024-02-11T16:11:00.884 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: cluster 2024-02-11T16:10:59.470263+0000 mgr.smithi120.tpsohu (mgr.14180) 111 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:11:00.884 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: cluster 2024-02-11T16:10:59.624668+0000 mon.smithi120 (mon.0) 381 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-11T16:11:00.884 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: audit 2024-02-11T16:10:59.624826+0000 mon.smithi120 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:00.884 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: audit 2024-02-11T16:10:59.625259+0000 mon.smithi120 (mon.0) 383 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:00.884 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: audit 2024-02-11T16:10:59.625519+0000 mon.smithi120 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:00.885 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: audit 2024-02-11T16:10:59.625691+0000 mon.smithi120 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:00.885 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: audit 2024-02-11T16:10:59.625894+0000 mon.smithi120 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:00.885 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: audit 2024-02-11T16:10:59.626081+0000 mon.smithi120 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:00.885 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:00 smithi183 bash[18593]: audit 2024-02-11T16:10:59.626254+0000 mon.smithi120 (mon.0) 388 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:00.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: cephadm 2024-02-11T16:10:59.430904+0000 mgr.smithi120.tpsohu (mgr.14180) 110 : cephadm [INF] Deploying daemon osd.6 on smithi183 2024-02-11T16:11:00.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: cluster 2024-02-11T16:10:59.470263+0000 mgr.smithi120.tpsohu (mgr.14180) 111 : cluster [DBG] pgmap v75: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-02-11T16:11:00.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: cluster 2024-02-11T16:10:59.624668+0000 mon.smithi120 (mon.0) 381 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-02-11T16:11:00.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: audit 2024-02-11T16:10:59.624826+0000 mon.smithi120 (mon.0) 382 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:00.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: audit 2024-02-11T16:10:59.625259+0000 mon.smithi120 (mon.0) 383 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:00.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: audit 2024-02-11T16:10:59.625519+0000 mon.smithi120 (mon.0) 384 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:00.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: audit 2024-02-11T16:10:59.625691+0000 mon.smithi120 (mon.0) 385 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:00.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: audit 2024-02-11T16:10:59.625894+0000 mon.smithi120 (mon.0) 386 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:00.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: audit 2024-02-11T16:10:59.626081+0000 mon.smithi120 (mon.0) 387 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:00.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:00 smithi120 bash[14220]: audit 2024-02-11T16:10:59.626254+0000 mon.smithi120 (mon.0) 388 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:02.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:02 smithi120 bash[14220]: cluster 2024-02-11T16:11:01.470633+0000 mgr.smithi120.tpsohu (mgr.14180) 112 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-11T16:11:02.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:02 smithi120 bash[14220]: audit 2024-02-11T16:11:01.743266+0000 mon.smithi183 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.183:6808/1830397092,v1:172.21.15.183:6809/1830397092]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-11T16:11:02.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:02 smithi120 bash[14220]: audit 2024-02-11T16:11:01.744941+0000 mon.smithi120 (mon.0) 389 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-11T16:11:03.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:02 smithi183 bash[18593]: cluster 2024-02-11T16:11:01.470633+0000 mgr.smithi120.tpsohu (mgr.14180) 112 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-11T16:11:03.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:02 smithi183 bash[18593]: audit 2024-02-11T16:11:01.743266+0000 mon.smithi183 (mon.1) 14 : audit [INF] from='osd.2 [v2:172.21.15.183:6808/1830397092,v1:172.21.15.183:6809/1830397092]' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-11T16:11:03.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:02 smithi183 bash[18593]: audit 2024-02-11T16:11:01.744941+0000 mon.smithi120 (mon.0) 389 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]: dispatch 2024-02-11T16:11:03.856 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.636363+0000 mon.smithi120 (mon.0) 390 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-11T16:11:03.856 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: cluster 2024-02-11T16:11:02.636443+0000 mon.smithi120 (mon.0) 391 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-11T16:11:03.857 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.636467+0000 mon.smithi183 (mon.1) 15 : audit [INF] from='osd.2 [v2:172.21.15.183:6808/1830397092,v1:172.21.15.183:6809/1830397092]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:03.857 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.636646+0000 mon.smithi120 (mon.0) 392 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:03.857 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.637116+0000 mon.smithi120 (mon.0) 393 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:03.857 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.637368+0000 mon.smithi120 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:03.857 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.637621+0000 mon.smithi120 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:03.857 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.638003+0000 mon.smithi120 (mon.0) 396 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:03.857 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.638336+0000 mon.smithi120 (mon.0) 397 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:03.857 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.638706+0000 mon.smithi120 (mon.0) 398 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:03.857 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:03 smithi120 bash[14220]: audit 2024-02-11T16:11:02.638967+0000 mon.smithi120 (mon.0) 399 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:04.064 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.636363+0000 mon.smithi120 (mon.0) 390 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-02-11T16:11:04.064 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: cluster 2024-02-11T16:11:02.636443+0000 mon.smithi120 (mon.0) 391 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-02-11T16:11:04.064 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.636467+0000 mon.smithi183 (mon.1) 15 : audit [INF] from='osd.2 [v2:172.21.15.183:6808/1830397092,v1:172.21.15.183:6809/1830397092]' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:04.064 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.636646+0000 mon.smithi120 (mon.0) 392 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:04.065 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.637116+0000 mon.smithi120 (mon.0) 393 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:04.065 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.637368+0000 mon.smithi120 (mon.0) 394 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:04.065 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.637621+0000 mon.smithi120 (mon.0) 395 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:04.065 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.638003+0000 mon.smithi120 (mon.0) 396 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:04.065 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.638336+0000 mon.smithi120 (mon.0) 397 : audit [INF] from='osd.2 ' entity='osd.2' cmd=[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:04.065 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.638706+0000 mon.smithi120 (mon.0) 398 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:04.065 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:03 smithi183 bash[18593]: audit 2024-02-11T16:11:02.638967+0000 mon.smithi120 (mon.0) 399 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:04.694 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: cluster 2024-02-11T16:11:03.471027+0000 mgr.smithi120.tpsohu (mgr.14180) 113 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-11T16:11:04.694 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.638396+0000 mon.smithi120 (mon.0) 400 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-02-11T16:11:04.694 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: cluster 2024-02-11T16:11:03.638464+0000 mon.smithi120 (mon.0) 401 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-11T16:11:04.694 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.638849+0000 mon.smithi120 (mon.0) 402 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:04.694 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.639227+0000 mon.smithi120 (mon.0) 403 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.639444+0000 mon.smithi120 (mon.0) 404 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.639655+0000 mon.smithi120 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.639858+0000 mon.smithi120 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.640060+0000 mon.smithi120 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.640284+0000 mon.smithi120 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.646094+0000 mon.smithi120 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.828442+0000 mon.smithi120 (mon.0) 410 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.829785+0000 mon.smithi120 (mon.0) 411 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: audit 2024-02-11T16:11:03.830897+0000 mon.smithi120 (mon.0) 412 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:04.695 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:04 smithi183 bash[18593]: cephadm 2024-02-11T16:11:03.831972+0000 mgr.smithi120.tpsohu (mgr.14180) 114 : cephadm [INF] Deploying daemon osd.5 on smithi120 2024-02-11T16:11:04.733 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:11:04.912 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: cluster 2024-02-11T16:11:03.471027+0000 mgr.smithi120.tpsohu (mgr.14180) 113 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.638396+0000 mon.smithi120 (mon.0) 400 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: cluster 2024-02-11T16:11:03.638464+0000 mon.smithi120 (mon.0) 401 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.638849+0000 mon.smithi120 (mon.0) 402 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.639227+0000 mon.smithi120 (mon.0) 403 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.639444+0000 mon.smithi120 (mon.0) 404 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.639655+0000 mon.smithi120 (mon.0) 405 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.639858+0000 mon.smithi120 (mon.0) 406 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.640060+0000 mon.smithi120 (mon.0) 407 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.640284+0000 mon.smithi120 (mon.0) 408 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.646094+0000 mon.smithi120 (mon.0) 409 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.828442+0000 mon.smithi120 (mon.0) 410 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.829785+0000 mon.smithi120 (mon.0) 411 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.5"}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: audit 2024-02-11T16:11:03.830897+0000 mon.smithi120 (mon.0) 412 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:04.913 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:04 smithi120 bash[14220]: cephadm 2024-02-11T16:11:03.831972+0000 mgr.smithi120.tpsohu (mgr.14180) 114 : cephadm [INF] Deploying daemon osd.5 on smithi120 2024-02-11T16:11:05.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: cluster 2024-02-11T16:11:02.786195+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: cluster 2024-02-11T16:11:02.786269+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:04.650286+0000 mon.smithi120 (mon.0) 413 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: cluster 2024-02-11T16:11:04.657234+0000 mon.smithi120 (mon.0) 414 : cluster [INF] osd.2 [v2:172.21.15.183:6808/1830397092,v1:172.21.15.183:6809/1830397092] boot 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: cluster 2024-02-11T16:11:04.657263+0000 mon.smithi120 (mon.0) 415 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:04.657351+0000 mon.smithi120 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:04.657645+0000 mon.smithi120 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:04.657869+0000 mon.smithi120 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:04.658059+0000 mon.smithi120 (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:04.658246+0000 mon.smithi120 (mon.0) 420 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:04.658434+0000 mon.smithi120 (mon.0) 421 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:04.658649+0000 mon.smithi120 (mon.0) 422 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:04.732522+0000 mon.smithi120 (mon.0) 423 : audit [DBG] from='client.? 172.21.15.120:0/2896545217' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:05.264242+0000 mon.smithi120 (mon.0) 424 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-11T16:11:05.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:05 smithi183 bash[18593]: audit 2024-02-11T16:11:05.501637+0000 mon.smithi120 (mon.0) 425 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:05.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: cluster 2024-02-11T16:11:02.786195+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:05.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: cluster 2024-02-11T16:11:02.786269+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:05.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:04.650286+0000 mon.smithi120 (mon.0) 413 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:05.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: cluster 2024-02-11T16:11:04.657234+0000 mon.smithi120 (mon.0) 414 : cluster [INF] osd.2 [v2:172.21.15.183:6808/1830397092,v1:172.21.15.183:6809/1830397092] boot 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: cluster 2024-02-11T16:11:04.657263+0000 mon.smithi120 (mon.0) 415 : cluster [DBG] osdmap e20: 8 total, 2 up, 8 in 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:04.657351+0000 mon.smithi120 (mon.0) 416 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:04.657645+0000 mon.smithi120 (mon.0) 417 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 2}]: dispatch 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:04.657869+0000 mon.smithi120 (mon.0) 418 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:04.658059+0000 mon.smithi120 (mon.0) 419 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:04.658246+0000 mon.smithi120 (mon.0) 420 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:04.658434+0000 mon.smithi120 (mon.0) 421 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:04.658649+0000 mon.smithi120 (mon.0) 422 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:04.732522+0000 mon.smithi120 (mon.0) 423 : audit [DBG] from='client.? 172.21.15.120:0/2896545217' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:05.264242+0000 mon.smithi120 (mon.0) 424 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967]' entity='osd.1' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]: dispatch 2024-02-11T16:11:05.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:05 smithi120 bash[14220]: audit 2024-02-11T16:11:05.501637+0000 mon.smithi120 (mon.0) 425 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:06.311 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":20,"num_osds":8,"num_up_osds":2,"osd_up_since":1707667864,"num_in_osds":8,"osd_in_since":1707667834,"num_remapped_pgs":0} 2024-02-11T16:11:06.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: cluster 2024-02-11T16:11:05.471343+0000 mgr.smithi120.tpsohu (mgr.14180) 115 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-11T16:11:06.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: audit 2024-02-11T16:11:05.658924+0000 mon.smithi120 (mon.0) 426 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-11T16:11:06.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: cluster 2024-02-11T16:11:05.658989+0000 mon.smithi120 (mon.0) 427 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-11T16:11:06.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: audit 2024-02-11T16:11:05.659114+0000 mon.smithi120 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:06.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: audit 2024-02-11T16:11:05.659388+0000 mon.smithi120 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:06.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: audit 2024-02-11T16:11:05.659554+0000 mon.smithi120 (mon.0) 430 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:06.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: audit 2024-02-11T16:11:05.659749+0000 mon.smithi120 (mon.0) 431 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:06.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: audit 2024-02-11T16:11:05.659954+0000 mon.smithi120 (mon.0) 432 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]: dispatch 2024-02-11T16:11:06.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: audit 2024-02-11T16:11:05.660202+0000 mon.smithi120 (mon.0) 433 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:06.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:06 smithi183 bash[18593]: audit 2024-02-11T16:11:05.660388+0000 mon.smithi120 (mon.0) 434 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:06.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: cluster 2024-02-11T16:11:05.471343+0000 mgr.smithi120.tpsohu (mgr.14180) 115 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 290 MiB used, 89 GiB / 89 GiB avail 2024-02-11T16:11:06.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: audit 2024-02-11T16:11:05.658924+0000 mon.smithi120 (mon.0) 426 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-02-11T16:11:06.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: cluster 2024-02-11T16:11:05.658989+0000 mon.smithi120 (mon.0) 427 : cluster [DBG] osdmap e21: 8 total, 2 up, 8 in 2024-02-11T16:11:06.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: audit 2024-02-11T16:11:05.659114+0000 mon.smithi120 (mon.0) 428 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:06.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: audit 2024-02-11T16:11:05.659388+0000 mon.smithi120 (mon.0) 429 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:06.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: audit 2024-02-11T16:11:05.659554+0000 mon.smithi120 (mon.0) 430 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:06.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: audit 2024-02-11T16:11:05.659749+0000 mon.smithi120 (mon.0) 431 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:06.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: audit 2024-02-11T16:11:05.659954+0000 mon.smithi120 (mon.0) 432 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967]' entity='osd.1' cmd=[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]: dispatch 2024-02-11T16:11:06.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: audit 2024-02-11T16:11:05.660202+0000 mon.smithi120 (mon.0) 433 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:06.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:06 smithi120 bash[14220]: audit 2024-02-11T16:11:05.660388+0000 mon.smithi120 (mon.0) 434 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:07.312 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:11:08.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:06.663721+0000 mon.smithi120 (mon.0) 435 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-02-11T16:11:08.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: cluster 2024-02-11T16:11:06.663876+0000 mon.smithi120 (mon.0) 436 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-11T16:11:08.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:06.664469+0000 mon.smithi120 (mon.0) 437 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:08.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:06.664839+0000 mon.smithi120 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:08.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:06.665594+0000 mon.smithi120 (mon.0) 439 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:08.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:06.665864+0000 mon.smithi120 (mon.0) 440 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:08.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:06.669796+0000 mon.smithi120 (mon.0) 441 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:08.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:06.670163+0000 mon.smithi120 (mon.0) 442 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:08.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:06.670474+0000 mon.smithi120 (mon.0) 443 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:08.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:07.512161+0000 mon.smithi183 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.183:6816/3583284973,v1:172.21.15.183:6817/3583284973]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-11T16:11:08.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:08 smithi183 bash[18593]: audit 2024-02-11T16:11:07.513535+0000 mon.smithi120 (mon.0) 444 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-11T16:11:08.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:06.663721+0000 mon.smithi120 (mon.0) 435 : audit [INF] from='osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-02-11T16:11:08.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: cluster 2024-02-11T16:11:06.663876+0000 mon.smithi120 (mon.0) 436 : cluster [DBG] osdmap e22: 8 total, 2 up, 8 in 2024-02-11T16:11:08.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:06.664469+0000 mon.smithi120 (mon.0) 437 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:08.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:06.664839+0000 mon.smithi120 (mon.0) 438 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:08.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:06.665594+0000 mon.smithi120 (mon.0) 439 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:08.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:06.665864+0000 mon.smithi120 (mon.0) 440 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:08.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:06.669796+0000 mon.smithi120 (mon.0) 441 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:08.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:06.670163+0000 mon.smithi120 (mon.0) 442 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:08.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:06.670474+0000 mon.smithi120 (mon.0) 443 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:08.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:07.512161+0000 mon.smithi183 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.183:6816/3583284973,v1:172.21.15.183:6817/3583284973]' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-11T16:11:08.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:08 smithi120 bash[14220]: audit 2024-02-11T16:11:07.513535+0000 mon.smithi120 (mon.0) 444 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]: dispatch 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: cluster 2024-02-11T16:11:06.249397+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: cluster 2024-02-11T16:11:06.249483+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: cluster 2024-02-11T16:11:07.471624+0000 mgr.smithi120.tpsohu (mgr.14180) 116 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: cluster 2024-02-11T16:11:07.676292+0000 mon.smithi120 (mon.0) 445 : cluster [INF] osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967] boot 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:07.676435+0000 mon.smithi120 (mon.0) 446 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: cluster 2024-02-11T16:11:07.676619+0000 mon.smithi120 (mon.0) 447 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:07.676821+0000 mon.smithi183 (mon.1) 17 : audit [INF] from='osd.4 [v2:172.21.15.183:6816/3583284973,v1:172.21.15.183:6817/3583284973]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:07.677198+0000 mon.smithi120 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:07.677985+0000 mon.smithi120 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:07.678322+0000 mon.smithi120 (mon.0) 450 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:07.678585+0000 mon.smithi120 (mon.0) 451 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:07.678787+0000 mon.smithi120 (mon.0) 452 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:07.679024+0000 mon.smithi120 (mon.0) 453 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:07.679414+0000 mon.smithi120 (mon.0) 454 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.153767+0000 mon.smithi120 (mon.0) 455 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.674322+0000 mon.smithi120 (mon.0) 456 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.674421+0000 mon.smithi120 (mon.0) 457 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: cluster 2024-02-11T16:11:08.674497+0000 mon.smithi120 (mon.0) 458 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.674727+0000 mon.smithi120 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.675537+0000 mon.smithi120 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.676057+0000 mon.smithi120 (mon.0) 461 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.676594+0000 mon.smithi120 (mon.0) 462 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.677047+0000 mon.smithi120 (mon.0) 463 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.678135+0000 mon.smithi120 (mon.0) 464 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-11T16:11:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:09 smithi183 bash[18593]: audit 2024-02-11T16:11:08.682446+0000 mon.smithi120 (mon.0) 465 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:09.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: cluster 2024-02-11T16:11:06.249397+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:09.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: cluster 2024-02-11T16:11:06.249483+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:09.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: cluster 2024-02-11T16:11:07.471624+0000 mgr.smithi120.tpsohu (mgr.14180) 116 : cluster [DBG] pgmap v85: 0 pgs: ; 0 B data, 581 MiB used, 178 GiB / 179 GiB avail 2024-02-11T16:11:09.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: cluster 2024-02-11T16:11:07.676292+0000 mon.smithi120 (mon.0) 445 : cluster [INF] osd.1 [v2:172.21.15.120:6802/2435994967,v1:172.21.15.120:6803/2435994967] boot 2024-02-11T16:11:09.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:07.676435+0000 mon.smithi120 (mon.0) 446 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-02-11T16:11:09.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: cluster 2024-02-11T16:11:07.676619+0000 mon.smithi120 (mon.0) 447 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-02-11T16:11:09.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:07.676821+0000 mon.smithi183 (mon.1) 17 : audit [INF] from='osd.4 [v2:172.21.15.183:6816/3583284973,v1:172.21.15.183:6817/3583284973]' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:09.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:07.677198+0000 mon.smithi120 (mon.0) 448 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 1}]: dispatch 2024-02-11T16:11:09.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:07.677985+0000 mon.smithi120 (mon.0) 449 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:09.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:07.678322+0000 mon.smithi120 (mon.0) 450 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:09.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:07.678585+0000 mon.smithi120 (mon.0) 451 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:09.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:07.678787+0000 mon.smithi120 (mon.0) 452 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:09.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:07.679024+0000 mon.smithi120 (mon.0) 453 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:09.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:07.679414+0000 mon.smithi120 (mon.0) 454 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]: dispatch 2024-02-11T16:11:09.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.153767+0000 mon.smithi120 (mon.0) 455 : audit [INF] from='osd.4 ' entity='osd.4' cmd=[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:09.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.674322+0000 mon.smithi120 (mon.0) 456 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pool create", "format": "json", "pool": "device_health_metrics", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32}]': finished 2024-02-11T16:11:09.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.674421+0000 mon.smithi120 (mon.0) 457 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-02-11T16:11:09.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: cluster 2024-02-11T16:11:08.674497+0000 mon.smithi120 (mon.0) 458 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-02-11T16:11:09.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.674727+0000 mon.smithi120 (mon.0) 459 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:09.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.675537+0000 mon.smithi120 (mon.0) 460 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:09.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.676057+0000 mon.smithi120 (mon.0) 461 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:09.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.676594+0000 mon.smithi120 (mon.0) 462 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:09.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.677047+0000 mon.smithi120 (mon.0) 463 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:09.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.678135+0000 mon.smithi120 (mon.0) 464 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]: dispatch 2024-02-11T16:11:09.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:09 smithi120 bash[14220]: audit 2024-02-11T16:11:08.682446+0000 mon.smithi120 (mon.0) 465 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:10.768 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: cluster 2024-02-11T16:11:08.481114+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:10.768 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: cluster 2024-02-11T16:11:08.481246+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:10.768 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: cluster 2024-02-11T16:11:09.472140+0000 mgr.smithi120.tpsohu (mgr.14180) 117 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-11T16:11:10.768 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: audit 2024-02-11T16:11:09.677295+0000 mon.smithi120 (mon.0) 466 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-11T16:11:10.768 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: cluster 2024-02-11T16:11:09.677377+0000 mon.smithi120 (mon.0) 467 : cluster [INF] osd.4 [v2:172.21.15.183:6816/3583284973,v1:172.21.15.183:6817/3583284973] boot 2024-02-11T16:11:10.768 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: cluster 2024-02-11T16:11:09.677452+0000 mon.smithi120 (mon.0) 468 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-02-11T16:11:10.768 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: audit 2024-02-11T16:11:09.677707+0000 mon.smithi120 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:10.768 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: audit 2024-02-11T16:11:09.678440+0000 mon.smithi120 (mon.0) 470 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:10.768 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: audit 2024-02-11T16:11:09.679069+0000 mon.smithi120 (mon.0) 471 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:10.769 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: audit 2024-02-11T16:11:09.679683+0000 mon.smithi120 (mon.0) 472 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:10.769 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:10 smithi120 bash[14220]: audit 2024-02-11T16:11:09.680219+0000 mon.smithi120 (mon.0) 473 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:11.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: cluster 2024-02-11T16:11:08.481114+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:11.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: cluster 2024-02-11T16:11:08.481246+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: cluster 2024-02-11T16:11:09.472140+0000 mgr.smithi120.tpsohu (mgr.14180) 117 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 871 MiB used, 267 GiB / 268 GiB avail 2024-02-11T16:11:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: audit 2024-02-11T16:11:09.677295+0000 mon.smithi120 (mon.0) 466 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": "device_health_metrics", "app": "mgr_devicehealth"}]': finished 2024-02-11T16:11:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: cluster 2024-02-11T16:11:09.677377+0000 mon.smithi120 (mon.0) 467 : cluster [INF] osd.4 [v2:172.21.15.183:6816/3583284973,v1:172.21.15.183:6817/3583284973] boot 2024-02-11T16:11:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: cluster 2024-02-11T16:11:09.677452+0000 mon.smithi120 (mon.0) 468 : cluster [DBG] osdmap e25: 8 total, 4 up, 8 in 2024-02-11T16:11:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: audit 2024-02-11T16:11:09.677707+0000 mon.smithi120 (mon.0) 469 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: audit 2024-02-11T16:11:09.678440+0000 mon.smithi120 (mon.0) 470 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 4}]: dispatch 2024-02-11T16:11:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: audit 2024-02-11T16:11:09.679069+0000 mon.smithi120 (mon.0) 471 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: audit 2024-02-11T16:11:09.679683+0000 mon.smithi120 (mon.0) 472 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:10 smithi183 bash[18593]: audit 2024-02-11T16:11:09.680219+0000 mon.smithi120 (mon.0) 473 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:11.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:11 smithi183 bash[18593]: cluster 2024-02-11T16:11:10.681015+0000 mon.smithi120 (mon.0) 474 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-02-11T16:11:11.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:11 smithi183 bash[18593]: audit 2024-02-11T16:11:10.681761+0000 mon.smithi120 (mon.0) 475 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:11.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:11 smithi183 bash[18593]: audit 2024-02-11T16:11:10.682197+0000 mon.smithi120 (mon.0) 476 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:11.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:11 smithi183 bash[18593]: audit 2024-02-11T16:11:10.682541+0000 mon.smithi120 (mon.0) 477 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:11.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:11 smithi183 bash[18593]: audit 2024-02-11T16:11:10.682833+0000 mon.smithi120 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:12.065 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:11 smithi120 bash[14220]: cluster 2024-02-11T16:11:10.681015+0000 mon.smithi120 (mon.0) 474 : cluster [DBG] osdmap e26: 8 total, 4 up, 8 in 2024-02-11T16:11:12.065 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:11 smithi120 bash[14220]: audit 2024-02-11T16:11:10.681761+0000 mon.smithi120 (mon.0) 475 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:12.065 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:11 smithi120 bash[14220]: audit 2024-02-11T16:11:10.682197+0000 mon.smithi120 (mon.0) 476 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:12.065 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:11 smithi120 bash[14220]: audit 2024-02-11T16:11:10.682541+0000 mon.smithi120 (mon.0) 477 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:12.066 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:11 smithi120 bash[14220]: audit 2024-02-11T16:11:10.682833+0000 mon.smithi120 (mon.0) 478 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:12.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:12 smithi183 bash[18593]: cluster 2024-02-11T16:11:11.472706+0000 mgr.smithi120.tpsohu (mgr.14180) 118 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-11T16:11:12.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:12 smithi183 bash[18593]: audit 2024-02-11T16:11:12.357090+0000 mon.smithi120 (mon.0) 479 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:12.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:12 smithi183 bash[18593]: audit 2024-02-11T16:11:12.358283+0000 mon.smithi120 (mon.0) 480 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-11T16:11:12.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:12 smithi183 bash[18593]: audit 2024-02-11T16:11:12.359227+0000 mon.smithi120 (mon.0) 481 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:12.843 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:12 smithi183 bash[18593]: audit 2024-02-11T16:11:12.478038+0000 mon.smithi183 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.183:6824/2199607138,v1:172.21.15.183:6825/2199607138]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-11T16:11:12.844 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:12 smithi183 bash[18593]: audit 2024-02-11T16:11:12.479693+0000 mon.smithi120 (mon.0) 482 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-11T16:11:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:12 smithi120 bash[14220]: cluster 2024-02-11T16:11:11.472706+0000 mgr.smithi120.tpsohu (mgr.14180) 118 : cluster [DBG] pgmap v91: 1 pgs: 1 active+clean; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-11T16:11:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:12 smithi120 bash[14220]: audit 2024-02-11T16:11:12.357090+0000 mon.smithi120 (mon.0) 479 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:12 smithi120 bash[14220]: audit 2024-02-11T16:11:12.358283+0000 mon.smithi120 (mon.0) 480 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "osd.7"}]: dispatch 2024-02-11T16:11:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:12 smithi120 bash[14220]: audit 2024-02-11T16:11:12.359227+0000 mon.smithi120 (mon.0) 481 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:12 smithi120 bash[14220]: audit 2024-02-11T16:11:12.478038+0000 mon.smithi183 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.183:6824/2199607138,v1:172.21.15.183:6825/2199607138]' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-11T16:11:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:12 smithi120 bash[14220]: audit 2024-02-11T16:11:12.479693+0000 mon.smithi120 (mon.0) 482 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]: dispatch 2024-02-11T16:11:13.223 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:11:13.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: cephadm 2024-02-11T16:11:12.359978+0000 mgr.smithi120.tpsohu (mgr.14180) 119 : cephadm [INF] Deploying daemon osd.7 on smithi120 2024-02-11T16:11:13.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: audit 2024-02-11T16:11:13.222444+0000 mon.smithi120 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.120:0/4265707735' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:13.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: audit 2024-02-11T16:11:13.360010+0000 mon.smithi120 (mon.0) 484 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-11T16:11:13.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: cluster 2024-02-11T16:11:13.360108+0000 mon.smithi120 (mon.0) 485 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-11T16:11:13.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: audit 2024-02-11T16:11:13.360365+0000 mon.smithi120 (mon.0) 486 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:13.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: audit 2024-02-11T16:11:13.361157+0000 mon.smithi120 (mon.0) 487 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:13.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: audit 2024-02-11T16:11:13.361662+0000 mon.smithi120 (mon.0) 488 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:13.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: audit 2024-02-11T16:11:13.362137+0000 mon.smithi120 (mon.0) 489 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:13.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: audit 2024-02-11T16:11:13.362240+0000 mon.smithi183 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.183:6824/2199607138,v1:172.21.15.183:6825/2199607138]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:13.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:13 smithi183 bash[18593]: audit 2024-02-11T16:11:13.363712+0000 mon.smithi120 (mon.0) 490 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:13.953 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: cephadm 2024-02-11T16:11:12.359978+0000 mgr.smithi120.tpsohu (mgr.14180) 119 : cephadm [INF] Deploying daemon osd.7 on smithi120 2024-02-11T16:11:13.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: audit 2024-02-11T16:11:13.222444+0000 mon.smithi120 (mon.0) 483 : audit [DBG] from='client.? 172.21.15.120:0/4265707735' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:13.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: audit 2024-02-11T16:11:13.360010+0000 mon.smithi120 (mon.0) 484 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-02-11T16:11:13.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: cluster 2024-02-11T16:11:13.360108+0000 mon.smithi120 (mon.0) 485 : cluster [DBG] osdmap e27: 8 total, 4 up, 8 in 2024-02-11T16:11:13.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: audit 2024-02-11T16:11:13.360365+0000 mon.smithi120 (mon.0) 486 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:13.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: audit 2024-02-11T16:11:13.361157+0000 mon.smithi120 (mon.0) 487 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:13.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: audit 2024-02-11T16:11:13.361662+0000 mon.smithi120 (mon.0) 488 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:13.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: audit 2024-02-11T16:11:13.362137+0000 mon.smithi120 (mon.0) 489 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:13.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: audit 2024-02-11T16:11:13.362240+0000 mon.smithi183 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.183:6824/2199607138,v1:172.21.15.183:6825/2199607138]' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:13.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:13 smithi120 bash[14220]: audit 2024-02-11T16:11:13.363712+0000 mon.smithi120 (mon.0) 490 : audit [INF] from='osd.6 ' entity='osd.6' cmd=[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]: dispatch 2024-02-11T16:11:14.680 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":26,"num_osds":8,"num_up_osds":4,"osd_up_since":1707667869,"num_in_osds":8,"osd_in_since":1707667834,"num_remapped_pgs":0} 2024-02-11T16:11:14.954 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: cluster 2024-02-11T16:11:13.473233+0000 mgr.smithi120.tpsohu (mgr.14180) 120 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: audit 2024-02-11T16:11:13.805300+0000 mon.smithi120 (mon.0) 491 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: audit 2024-02-11T16:11:14.367531+0000 mon.smithi120 (mon.0) 492 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: audit 2024-02-11T16:11:14.367609+0000 mon.smithi120 (mon.0) 493 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: cluster 2024-02-11T16:11:14.367653+0000 mon.smithi120 (mon.0) 494 : cluster [DBG] osdmap e28: 8 total, 4 up, 8 in 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: audit 2024-02-11T16:11:14.367820+0000 mon.smithi120 (mon.0) 495 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: audit 2024-02-11T16:11:14.368294+0000 mon.smithi120 (mon.0) 496 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: audit 2024-02-11T16:11:14.368584+0000 mon.smithi120 (mon.0) 497 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]: dispatch 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: audit 2024-02-11T16:11:14.368958+0000 mon.smithi120 (mon.0) 498 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: audit 2024-02-11T16:11:14.369214+0000 mon.smithi120 (mon.0) 499 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:14.955 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:14 smithi120 bash[14220]: audit 2024-02-11T16:11:14.375999+0000 mon.smithi120 (mon.0) 500 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:14.982 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: cluster 2024-02-11T16:11:13.473233+0000 mgr.smithi120.tpsohu (mgr.14180) 120 : cluster [DBG] pgmap v93: 1 pgs: 1 active+clean; 0 B data, 1.1 GiB used, 356 GiB / 358 GiB avail 2024-02-11T16:11:14.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: audit 2024-02-11T16:11:13.805300+0000 mon.smithi120 (mon.0) 491 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467]' entity='osd.3' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]: dispatch 2024-02-11T16:11:14.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: audit 2024-02-11T16:11:14.367531+0000 mon.smithi120 (mon.0) 492 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi183", "root=default"]}]': finished 2024-02-11T16:11:14.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: audit 2024-02-11T16:11:14.367609+0000 mon.smithi120 (mon.0) 493 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-02-11T16:11:14.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: cluster 2024-02-11T16:11:14.367653+0000 mon.smithi120 (mon.0) 494 : cluster [DBG] osdmap e28: 8 total, 4 up, 8 in 2024-02-11T16:11:14.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: audit 2024-02-11T16:11:14.367820+0000 mon.smithi120 (mon.0) 495 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:14.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: audit 2024-02-11T16:11:14.368294+0000 mon.smithi120 (mon.0) 496 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:14.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: audit 2024-02-11T16:11:14.368584+0000 mon.smithi120 (mon.0) 497 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467]' entity='osd.3' cmd=[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]: dispatch 2024-02-11T16:11:14.983 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: audit 2024-02-11T16:11:14.368958+0000 mon.smithi120 (mon.0) 498 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:15.072 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: audit 2024-02-11T16:11:14.369214+0000 mon.smithi120 (mon.0) 499 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:15.072 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:14 smithi183 bash[18593]: audit 2024-02-11T16:11:14.375999+0000 mon.smithi120 (mon.0) 500 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:15.682 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: cluster 2024-02-11T16:11:13.429877+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: cluster 2024-02-11T16:11:13.429958+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: audit 2024-02-11T16:11:15.369288+0000 mon.smithi120 (mon.0) 501 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: cluster 2024-02-11T16:11:15.369384+0000 mon.smithi120 (mon.0) 502 : cluster [INF] osd.6 [v2:172.21.15.183:6824/2199607138,v1:172.21.15.183:6825/2199607138] boot 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: cluster 2024-02-11T16:11:15.369427+0000 mon.smithi120 (mon.0) 503 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: audit 2024-02-11T16:11:15.369561+0000 mon.smithi120 (mon.0) 504 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: audit 2024-02-11T16:11:15.369901+0000 mon.smithi120 (mon.0) 505 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: audit 2024-02-11T16:11:15.370453+0000 mon.smithi120 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: audit 2024-02-11T16:11:15.370701+0000 mon.smithi120 (mon.0) 507 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:16.564 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: audit 2024-02-11T16:11:15.377370+0000 mon.smithi120 (mon.0) 508 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:16.565 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: cluster 2024-02-11T16:11:15.473742+0000 mgr.smithi120.tpsohu (mgr.14180) 121 : cluster [DBG] pgmap v96: 1 pgs: 1 peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-11T16:11:16.565 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:16 smithi120 bash[14220]: audit 2024-02-11T16:11:15.773244+0000 mon.smithi120 (mon.0) 509 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:16.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: cluster 2024-02-11T16:11:13.429877+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:16.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: cluster 2024-02-11T16:11:13.429958+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:16.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: audit 2024-02-11T16:11:15.369288+0000 mon.smithi120 (mon.0) 501 : audit [INF] from='osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-02-11T16:11:16.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: cluster 2024-02-11T16:11:15.369384+0000 mon.smithi120 (mon.0) 502 : cluster [INF] osd.6 [v2:172.21.15.183:6824/2199607138,v1:172.21.15.183:6825/2199607138] boot 2024-02-11T16:11:16.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: cluster 2024-02-11T16:11:15.369427+0000 mon.smithi120 (mon.0) 503 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-02-11T16:11:16.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: audit 2024-02-11T16:11:15.369561+0000 mon.smithi120 (mon.0) 504 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:16.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: audit 2024-02-11T16:11:15.369901+0000 mon.smithi120 (mon.0) 505 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:16.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: audit 2024-02-11T16:11:15.370453+0000 mon.smithi120 (mon.0) 506 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 6}]: dispatch 2024-02-11T16:11:16.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: audit 2024-02-11T16:11:15.370701+0000 mon.smithi120 (mon.0) 507 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:16.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: audit 2024-02-11T16:11:15.377370+0000 mon.smithi120 (mon.0) 508 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:16.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: cluster 2024-02-11T16:11:15.473742+0000 mgr.smithi120.tpsohu (mgr.14180) 121 : cluster [DBG] pgmap v96: 1 pgs: 1 peering; 0 B data, 1.4 GiB used, 446 GiB / 447 GiB avail 2024-02-11T16:11:16.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:16 smithi183 bash[18593]: audit 2024-02-11T16:11:15.773244+0000 mon.smithi120 (mon.0) 509 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:17.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: cluster 2024-02-11T16:11:14.824152+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:17.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: cluster 2024-02-11T16:11:14.824234+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:17.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: audit 2024-02-11T16:11:16.373809+0000 mon.smithi120 (mon.0) 510 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:17.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: cluster 2024-02-11T16:11:16.382365+0000 mon.smithi120 (mon.0) 511 : cluster [INF] osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467] boot 2024-02-11T16:11:17.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: cluster 2024-02-11T16:11:16.382433+0000 mon.smithi120 (mon.0) 512 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-02-11T16:11:17.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: audit 2024-02-11T16:11:16.383244+0000 mon.smithi120 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:17.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: audit 2024-02-11T16:11:16.383608+0000 mon.smithi120 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:17.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: audit 2024-02-11T16:11:16.383874+0000 mon.smithi120 (mon.0) 515 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:17.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: cluster 2024-02-11T16:11:17.196359+0000 mon.smithi120 (mon.0) 516 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-02-11T16:11:17.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: audit 2024-02-11T16:11:17.196596+0000 mon.smithi120 (mon.0) 517 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:17.655 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:17 smithi120 bash[14220]: audit 2024-02-11T16:11:17.197421+0000 mon.smithi120 (mon.0) 518 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:17.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: cluster 2024-02-11T16:11:14.824152+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:17.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: cluster 2024-02-11T16:11:14.824234+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:17.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: audit 2024-02-11T16:11:16.373809+0000 mon.smithi120 (mon.0) 510 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:17.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: cluster 2024-02-11T16:11:16.382365+0000 mon.smithi120 (mon.0) 511 : cluster [INF] osd.3 [v2:172.21.15.120:6810/2325712467,v1:172.21.15.120:6811/2325712467] boot 2024-02-11T16:11:17.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: cluster 2024-02-11T16:11:16.382433+0000 mon.smithi120 (mon.0) 512 : cluster [DBG] osdmap e30: 8 total, 6 up, 8 in 2024-02-11T16:11:17.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: audit 2024-02-11T16:11:16.383244+0000 mon.smithi120 (mon.0) 513 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 3}]: dispatch 2024-02-11T16:11:17.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: audit 2024-02-11T16:11:16.383608+0000 mon.smithi120 (mon.0) 514 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:17.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: audit 2024-02-11T16:11:16.383874+0000 mon.smithi120 (mon.0) 515 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:17.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: cluster 2024-02-11T16:11:17.196359+0000 mon.smithi120 (mon.0) 516 : cluster [DBG] osdmap e31: 8 total, 6 up, 8 in 2024-02-11T16:11:17.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: audit 2024-02-11T16:11:17.196596+0000 mon.smithi120 (mon.0) 517 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:17.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:17 smithi183 bash[18593]: audit 2024-02-11T16:11:17.197421+0000 mon.smithi120 (mon.0) 518 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:18.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:18 smithi120 bash[14220]: cluster 2024-02-11T16:11:17.474410+0000 mgr.smithi120.tpsohu (mgr.14180) 122 : cluster [DBG] pgmap v99: 1 pgs: 1 peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:18.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:18 smithi120 bash[14220]: cluster 2024-02-11T16:11:18.200347+0000 mon.smithi120 (mon.0) 519 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-02-11T16:11:18.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:18 smithi120 bash[14220]: audit 2024-02-11T16:11:18.200685+0000 mon.smithi120 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:18.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:18 smithi120 bash[14220]: audit 2024-02-11T16:11:18.201713+0000 mon.smithi120 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:18.859 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:18 smithi183 bash[18593]: cluster 2024-02-11T16:11:17.474410+0000 mgr.smithi120.tpsohu (mgr.14180) 122 : cluster [DBG] pgmap v99: 1 pgs: 1 peering; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:18.859 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:18 smithi183 bash[18593]: cluster 2024-02-11T16:11:18.200347+0000 mon.smithi120 (mon.0) 519 : cluster [DBG] osdmap e32: 8 total, 6 up, 8 in 2024-02-11T16:11:18.859 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:18 smithi183 bash[18593]: audit 2024-02-11T16:11:18.200685+0000 mon.smithi120 (mon.0) 520 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:18.859 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:18 smithi183 bash[18593]: audit 2024-02-11T16:11:18.201713+0000 mon.smithi120 (mon.0) 521 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:20.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:20 smithi183 bash[18593]: cluster 2024-02-11T16:11:19.474944+0000 mgr.smithi120.tpsohu (mgr.14180) 123 : cluster [DBG] pgmap v101: 1 pgs: 1 activating; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:20.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:20 smithi120 bash[14220]: cluster 2024-02-11T16:11:19.474944+0000 mgr.smithi120.tpsohu (mgr.14180) 123 : cluster [DBG] pgmap v101: 1 pgs: 1 activating; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:21.269 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:11:22.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:22 smithi183 bash[18593]: audit 2024-02-11T16:11:21.051105+0000 mon.smithi120 (mon.0) 522 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:22.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:22 smithi183 bash[18593]: audit 2024-02-11T16:11:21.268866+0000 mon.smithi120 (mon.0) 523 : audit [DBG] from='client.? 172.21.15.120:0/4109538263' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:22.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:22 smithi183 bash[18593]: cluster 2024-02-11T16:11:21.475489+0000 mgr.smithi120.tpsohu (mgr.14180) 124 : cluster [DBG] pgmap v102: 1 pgs: 1 activating; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:22.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:22 smithi120 bash[14220]: audit 2024-02-11T16:11:21.051105+0000 mon.smithi120 (mon.0) 522 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:22.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:22 smithi120 bash[14220]: audit 2024-02-11T16:11:21.268866+0000 mon.smithi120 (mon.0) 523 : audit [DBG] from='client.? 172.21.15.120:0/4109538263' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:22.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:22 smithi120 bash[14220]: cluster 2024-02-11T16:11:21.475489+0000 mgr.smithi120.tpsohu (mgr.14180) 124 : cluster [DBG] pgmap v102: 1 pgs: 1 activating; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:22.495 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":32,"num_osds":8,"num_up_osds":6,"osd_up_since":1707667876,"num_in_osds":8,"osd_in_since":1707667834,"num_remapped_pgs":0} 2024-02-11T16:11:23.236 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:23 smithi120 bash[14220]: audit 2024-02-11T16:11:22.949824+0000 mon.smithi120 (mon.0) 524 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-11T16:11:23.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:23 smithi183 bash[18593]: audit 2024-02-11T16:11:22.949824+0000 mon.smithi120 (mon.0) 524 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430]' entity='osd.5' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]: dispatch 2024-02-11T16:11:23.496 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:11:24.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:24 smithi183 bash[18593]: audit 2024-02-11T16:11:23.067449+0000 mon.smithi120 (mon.0) 525 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-11T16:11:24.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:24 smithi183 bash[18593]: cluster 2024-02-11T16:11:23.067535+0000 mon.smithi120 (mon.0) 526 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-02-11T16:11:24.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:24 smithi183 bash[18593]: audit 2024-02-11T16:11:23.067704+0000 mon.smithi120 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:24.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:24 smithi183 bash[18593]: audit 2024-02-11T16:11:23.068258+0000 mon.smithi120 (mon.0) 528 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:24.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:24 smithi183 bash[18593]: audit 2024-02-11T16:11:23.068634+0000 mon.smithi120 (mon.0) 529 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]: dispatch 2024-02-11T16:11:24.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:24 smithi183 bash[18593]: cluster 2024-02-11T16:11:23.476010+0000 mgr.smithi120.tpsohu (mgr.14180) 125 : cluster [DBG] pgmap v104: 1 pgs: 1 activating; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:24.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:24 smithi120 bash[14220]: audit 2024-02-11T16:11:23.067449+0000 mon.smithi120 (mon.0) 525 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-02-11T16:11:24.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:24 smithi120 bash[14220]: cluster 2024-02-11T16:11:23.067535+0000 mon.smithi120 (mon.0) 526 : cluster [DBG] osdmap e33: 8 total, 6 up, 8 in 2024-02-11T16:11:24.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:24 smithi120 bash[14220]: audit 2024-02-11T16:11:23.067704+0000 mon.smithi120 (mon.0) 527 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:24.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:24 smithi120 bash[14220]: audit 2024-02-11T16:11:23.068258+0000 mon.smithi120 (mon.0) 528 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:24.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:24 smithi120 bash[14220]: audit 2024-02-11T16:11:23.068634+0000 mon.smithi120 (mon.0) 529 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430]' entity='osd.5' cmd=[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]: dispatch 2024-02-11T16:11:24.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:24 smithi120 bash[14220]: cluster 2024-02-11T16:11:23.476010+0000 mgr.smithi120.tpsohu (mgr.14180) 125 : cluster [DBG] pgmap v104: 1 pgs: 1 activating; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:25.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:25 smithi183 bash[18593]: audit 2024-02-11T16:11:24.069832+0000 mon.smithi120 (mon.0) 530 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-02-11T16:11:25.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:25 smithi183 bash[18593]: cluster 2024-02-11T16:11:24.069948+0000 mon.smithi120 (mon.0) 531 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-11T16:11:25.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:25 smithi183 bash[18593]: audit 2024-02-11T16:11:24.070503+0000 mon.smithi120 (mon.0) 532 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:25.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:25 smithi183 bash[18593]: audit 2024-02-11T16:11:24.070844+0000 mon.smithi120 (mon.0) 533 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:25.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:25 smithi183 bash[18593]: audit 2024-02-11T16:11:24.075318+0000 mon.smithi120 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:25.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:25 smithi120 bash[14220]: audit 2024-02-11T16:11:24.069832+0000 mon.smithi120 (mon.0) 530 : audit [INF] from='osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-02-11T16:11:25.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:25 smithi120 bash[14220]: cluster 2024-02-11T16:11:24.069948+0000 mon.smithi120 (mon.0) 531 : cluster [DBG] osdmap e34: 8 total, 6 up, 8 in 2024-02-11T16:11:25.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:25 smithi120 bash[14220]: audit 2024-02-11T16:11:24.070503+0000 mon.smithi120 (mon.0) 532 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:25.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:25 smithi120 bash[14220]: audit 2024-02-11T16:11:24.070844+0000 mon.smithi120 (mon.0) 533 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:25.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:25 smithi120 bash[14220]: audit 2024-02-11T16:11:24.075318+0000 mon.smithi120 (mon.0) 534 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:26.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:26 smithi183 bash[18593]: cluster 2024-02-11T16:11:23.997129+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:26.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:26 smithi183 bash[18593]: cluster 2024-02-11T16:11:23.997183+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:26.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:26 smithi183 bash[18593]: cluster 2024-02-11T16:11:25.079463+0000 mon.smithi120 (mon.0) 535 : cluster [INF] osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430] boot 2024-02-11T16:11:26.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:26 smithi183 bash[18593]: cluster 2024-02-11T16:11:25.079545+0000 mon.smithi120 (mon.0) 536 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-02-11T16:11:26.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:26 smithi183 bash[18593]: audit 2024-02-11T16:11:25.080196+0000 mon.smithi120 (mon.0) 537 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:26.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:26 smithi183 bash[18593]: audit 2024-02-11T16:11:25.080618+0000 mon.smithi120 (mon.0) 538 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:26.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:26 smithi183 bash[18593]: cluster 2024-02-11T16:11:25.476632+0000 mgr.smithi120.tpsohu (mgr.14180) 126 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:26.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:26 smithi120 bash[14220]: cluster 2024-02-11T16:11:23.997129+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:26.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:26 smithi120 bash[14220]: cluster 2024-02-11T16:11:23.997183+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:26.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:26 smithi120 bash[14220]: cluster 2024-02-11T16:11:25.079463+0000 mon.smithi120 (mon.0) 535 : cluster [INF] osd.5 [v2:172.21.15.120:6818/1433345430,v1:172.21.15.120:6819/1433345430] boot 2024-02-11T16:11:26.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:26 smithi120 bash[14220]: cluster 2024-02-11T16:11:25.079545+0000 mon.smithi120 (mon.0) 536 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-02-11T16:11:26.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:26 smithi120 bash[14220]: audit 2024-02-11T16:11:25.080196+0000 mon.smithi120 (mon.0) 537 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 5}]: dispatch 2024-02-11T16:11:26.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:26 smithi120 bash[14220]: audit 2024-02-11T16:11:25.080618+0000 mon.smithi120 (mon.0) 538 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:26.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:26 smithi120 bash[14220]: cluster 2024-02-11T16:11:25.476632+0000 mgr.smithi120.tpsohu (mgr.14180) 126 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 0 B data, 1.7 GiB used, 535 GiB / 536 GiB avail 2024-02-11T16:11:27.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:27 smithi183 bash[18593]: cluster 2024-02-11T16:11:26.092503+0000 mon.smithi120 (mon.0) 539 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-02-11T16:11:27.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:27 smithi183 bash[18593]: audit 2024-02-11T16:11:26.092656+0000 mon.smithi120 (mon.0) 540 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:27.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:27 smithi120 bash[14220]: cluster 2024-02-11T16:11:26.092503+0000 mon.smithi120 (mon.0) 539 : cluster [DBG] osdmap e36: 8 total, 7 up, 8 in 2024-02-11T16:11:27.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:27 smithi120 bash[14220]: audit 2024-02-11T16:11:26.092656+0000 mon.smithi120 (mon.0) 540 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:28.318 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:11:28.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:28 smithi183 bash[18593]: cluster 2024-02-11T16:11:27.477226+0000 mgr.smithi120.tpsohu (mgr.14180) 127 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-11T16:11:28.372 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:28 smithi120 bash[14220]: cluster 2024-02-11T16:11:27.477226+0000 mgr.smithi120.tpsohu (mgr.14180) 127 : cluster [DBG] pgmap v109: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-11T16:11:29.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:29 smithi183 bash[18593]: audit 2024-02-11T16:11:28.318089+0000 mon.smithi120 (mon.0) 541 : audit [DBG] from='client.? 172.21.15.120:0/4287974326' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:29.415 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:29 smithi120 bash[14220]: audit 2024-02-11T16:11:28.318089+0000 mon.smithi120 (mon.0) 541 : audit [DBG] from='client.? 172.21.15.120:0/4287974326' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:29.526 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":36,"num_osds":8,"num_up_osds":7,"osd_up_since":1707667885,"num_in_osds":8,"osd_in_since":1707667834,"num_remapped_pgs":0} 2024-02-11T16:11:30.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:30 smithi183 bash[18593]: cluster 2024-02-11T16:11:29.477757+0000 mgr.smithi120.tpsohu (mgr.14180) 128 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-11T16:11:30.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:30 smithi183 bash[18593]: audit 2024-02-11T16:11:29.820317+0000 mon.smithi120 (mon.0) 542 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-11T16:11:30.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:30 smithi120 bash[14220]: cluster 2024-02-11T16:11:29.477757+0000 mgr.smithi120.tpsohu (mgr.14180) 128 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-11T16:11:30.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:30 smithi120 bash[14220]: audit 2024-02-11T16:11:29.820317+0000 mon.smithi120 (mon.0) 542 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251]' entity='osd.7' cmd=[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]: dispatch 2024-02-11T16:11:30.528 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd stat -f json 2024-02-11T16:11:31.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:31 smithi120 bash[14220]: audit 2024-02-11T16:11:30.114947+0000 mon.smithi120 (mon.0) 543 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-11T16:11:31.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:31 smithi120 bash[14220]: cluster 2024-02-11T16:11:30.115035+0000 mon.smithi120 (mon.0) 544 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-02-11T16:11:31.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:31 smithi120 bash[14220]: audit 2024-02-11T16:11:30.115230+0000 mon.smithi120 (mon.0) 545 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:31.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:31 smithi120 bash[14220]: audit 2024-02-11T16:11:30.115777+0000 mon.smithi120 (mon.0) 546 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]: dispatch 2024-02-11T16:11:31.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:31 smithi183 bash[18593]: audit 2024-02-11T16:11:30.114947+0000 mon.smithi120 (mon.0) 543 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-02-11T16:11:31.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:31 smithi183 bash[18593]: cluster 2024-02-11T16:11:30.115035+0000 mon.smithi120 (mon.0) 544 : cluster [DBG] osdmap e37: 8 total, 7 up, 8 in 2024-02-11T16:11:31.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:31 smithi183 bash[18593]: audit 2024-02-11T16:11:30.115230+0000 mon.smithi120 (mon.0) 545 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:31.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:31 smithi183 bash[18593]: audit 2024-02-11T16:11:30.115777+0000 mon.smithi120 (mon.0) 546 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251]' entity='osd.7' cmd=[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]: dispatch 2024-02-11T16:11:32.387 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:32 smithi120 bash[14220]: audit 2024-02-11T16:11:31.115709+0000 mon.smithi120 (mon.0) 547 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-02-11T16:11:32.388 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:32 smithi120 bash[14220]: cluster 2024-02-11T16:11:31.115767+0000 mon.smithi120 (mon.0) 548 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2024-02-11T16:11:32.388 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:32 smithi120 bash[14220]: audit 2024-02-11T16:11:31.116268+0000 mon.smithi120 (mon.0) 549 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:32.388 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:32 smithi120 bash[14220]: audit 2024-02-11T16:11:31.121580+0000 mon.smithi120 (mon.0) 550 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:32.388 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:32 smithi120 bash[14220]: cluster 2024-02-11T16:11:31.478381+0000 mgr.smithi120.tpsohu (mgr.14180) 129 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-11T16:11:32.388 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:32 smithi120 bash[14220]: audit 2024-02-11T16:11:32.121534+0000 mon.smithi120 (mon.0) 551 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:32.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:32 smithi183 bash[18593]: audit 2024-02-11T16:11:31.115709+0000 mon.smithi120 (mon.0) 547 : audit [INF] from='osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi120", "root=default"]}]': finished 2024-02-11T16:11:32.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:32 smithi183 bash[18593]: cluster 2024-02-11T16:11:31.115767+0000 mon.smithi120 (mon.0) 548 : cluster [DBG] osdmap e38: 8 total, 7 up, 8 in 2024-02-11T16:11:32.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:32 smithi183 bash[18593]: audit 2024-02-11T16:11:31.116268+0000 mon.smithi120 (mon.0) 549 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:32.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:32 smithi183 bash[18593]: audit 2024-02-11T16:11:31.121580+0000 mon.smithi120 (mon.0) 550 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:32.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:32 smithi183 bash[18593]: cluster 2024-02-11T16:11:31.478381+0000 mgr.smithi120.tpsohu (mgr.14180) 129 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 0 B data, 2.0 GiB used, 624 GiB / 626 GiB avail 2024-02-11T16:11:32.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:32 smithi183 bash[18593]: audit 2024-02-11T16:11:32.121534+0000 mon.smithi120 (mon.0) 551 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:33.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:33 smithi120 bash[14220]: cluster 2024-02-11T16:11:30.835057+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:33.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:33 smithi120 bash[14220]: cluster 2024-02-11T16:11:30.835190+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:33.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:33 smithi120 bash[14220]: cluster 2024-02-11T16:11:32.133598+0000 mon.smithi120 (mon.0) 552 : cluster [INF] osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251] boot 2024-02-11T16:11:33.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:33 smithi120 bash[14220]: cluster 2024-02-11T16:11:32.133644+0000 mon.smithi120 (mon.0) 553 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-02-11T16:11:33.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:33 smithi120 bash[14220]: audit 2024-02-11T16:11:32.134108+0000 mon.smithi120 (mon.0) 554 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:33.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:33 smithi120 bash[14220]: cluster 2024-02-11T16:11:32.202339+0000 mon.smithi120 (mon.0) 555 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-02-11T16:11:33.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:33 smithi183 bash[18593]: cluster 2024-02-11T16:11:30.835057+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-02-11T16:11:33.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:33 smithi183 bash[18593]: cluster 2024-02-11T16:11:30.835190+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-02-11T16:11:33.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:33 smithi183 bash[18593]: cluster 2024-02-11T16:11:32.133598+0000 mon.smithi120 (mon.0) 552 : cluster [INF] osd.7 [v2:172.21.15.120:6826/3872381251,v1:172.21.15.120:6827/3872381251] boot 2024-02-11T16:11:33.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:33 smithi183 bash[18593]: cluster 2024-02-11T16:11:32.133644+0000 mon.smithi120 (mon.0) 553 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-02-11T16:11:33.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:33 smithi183 bash[18593]: audit 2024-02-11T16:11:32.134108+0000 mon.smithi120 (mon.0) 554 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd metadata", "id": 7}]: dispatch 2024-02-11T16:11:33.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:33 smithi183 bash[18593]: cluster 2024-02-11T16:11:32.202339+0000 mon.smithi120 (mon.0) 555 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-02-11T16:11:34.490 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:34 smithi120 bash[14220]: cluster 2024-02-11T16:11:33.203485+0000 mon.smithi120 (mon.0) 556 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-02-11T16:11:34.490 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:34 smithi120 bash[14220]: cluster 2024-02-11T16:11:33.479051+0000 mgr.smithi120.tpsohu (mgr.14180) 130 : cluster [DBG] pgmap v117: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:34.490 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:34 smithi120 bash[14220]: audit 2024-02-11T16:11:34.169832+0000 mon.smithi120 (mon.0) 557 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:34.490 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:34 smithi120 bash[14220]: audit 2024-02-11T16:11:34.173588+0000 mon.smithi120 (mon.0) 558 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:11:34.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:34 smithi183 bash[18593]: cluster 2024-02-11T16:11:33.203485+0000 mon.smithi120 (mon.0) 556 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-02-11T16:11:34.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:34 smithi183 bash[18593]: cluster 2024-02-11T16:11:33.479051+0000 mgr.smithi120.tpsohu (mgr.14180) 130 : cluster [DBG] pgmap v117: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:34.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:34 smithi183 bash[18593]: audit 2024-02-11T16:11:34.169832+0000 mon.smithi120 (mon.0) 557 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:34.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:34 smithi183 bash[18593]: audit 2024-02-11T16:11:34.173588+0000 mon.smithi120 (mon.0) 558 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:11:34.895 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:11:35.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:35 smithi120 bash[14220]: audit 2024-02-11T16:11:34.894223+0000 mon.smithi120 (mon.0) 559 : audit [DBG] from='client.? 172.21.15.120:0/211684277' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:35.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:35 smithi183 bash[18593]: audit 2024-02-11T16:11:34.894223+0000 mon.smithi120 (mon.0) 559 : audit [DBG] from='client.? 172.21.15.120:0/211684277' entity='client.admin' cmd=[{"prefix": "osd stat", "format": "json"}]: dispatch 2024-02-11T16:11:35.737 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":41,"num_osds":8,"num_up_osds":8,"osd_up_since":1707667892,"num_in_osds":8,"osd_in_since":1707667834,"num_remapped_pgs":0} 2024-02-11T16:11:35.738 INFO:tasks.cephadm:Setting up client nodes... 2024-02-11T16:11:35.738 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-11T16:11:36.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:36 smithi183 bash[18593]: cluster 2024-02-11T16:11:35.479721+0000 mgr.smithi120.tpsohu (mgr.14180) 131 : cluster [DBG] pgmap v118: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:36.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:36 smithi120 bash[14220]: cluster 2024-02-11T16:11:35.479721+0000 mgr.smithi120.tpsohu (mgr.14180) 131 : cluster [DBG] pgmap v118: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:38.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:38 smithi183 bash[18593]: cluster 2024-02-11T16:11:37.480430+0000 mgr.smithi120.tpsohu (mgr.14180) 132 : cluster [DBG] pgmap v119: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:38.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:38 smithi120 bash[14220]: cluster 2024-02-11T16:11:37.480430+0000 mgr.smithi120.tpsohu (mgr.14180) 132 : cluster [DBG] pgmap v119: 1 pgs: 1 peering; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:39.013 INFO:teuthology.orchestra.run.smithi120.stdout:[client.0] 2024-02-11T16:11:39.013 INFO:teuthology.orchestra.run.smithi120.stdout: key = AQC78chl1OiHABAALOVd2KHz2HCiowgRaaofkg== 2024-02-11T16:11:39.790 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:39 smithi120 bash[14220]: audit 2024-02-11T16:11:39.008750+0000 mon.smithi120 (mon.0) 560 : audit [INF] from='client.? 172.21.15.120:0/493164465' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-11T16:11:39.790 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:39 smithi120 bash[14220]: audit 2024-02-11T16:11:39.012394+0000 mon.smithi120 (mon.0) 561 : audit [INF] from='client.? 172.21.15.120:0/493164465' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-11T16:11:39.791 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:11:39.791 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-02-11T16:11:39.791 DEBUG:teuthology.orchestra.run.smithi120:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-02-11T16:11:39.816 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-02-11T16:11:39.828 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:39 smithi183 bash[18593]: audit 2024-02-11T16:11:39.008750+0000 mon.smithi120 (mon.0) 560 : audit [INF] from='client.? 172.21.15.120:0/493164465' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-11T16:11:39.828 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:39 smithi183 bash[18593]: audit 2024-02-11T16:11:39.012394+0000 mon.smithi120 (mon.0) 561 : audit [INF] from='client.? 172.21.15.120:0/493164465' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-11T16:11:40.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:40 smithi120 bash[14220]: cluster 2024-02-11T16:11:39.481045+0000 mgr.smithi120.tpsohu (mgr.14180) 133 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:40.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:40 smithi120 bash[14220]: audit 2024-02-11T16:11:39.616360+0000 mon.smithi120 (mon.0) 562 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:40.992 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:40 smithi183 bash[18593]: cluster 2024-02-11T16:11:39.481045+0000 mgr.smithi120.tpsohu (mgr.14180) 133 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:40.993 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:40 smithi183 bash[18593]: audit 2024-02-11T16:11:39.616360+0000 mon.smithi120 (mon.0) 562 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:42.710 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:42 smithi183 bash[18593]: audit 2024-02-11T16:11:41.406951+0000 mon.smithi120 (mon.0) 563 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:42.710 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:42 smithi183 bash[18593]: cluster 2024-02-11T16:11:41.481609+0000 mgr.smithi120.tpsohu (mgr.14180) 134 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:42.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:42 smithi120 bash[14220]: audit 2024-02-11T16:11:41.406951+0000 mon.smithi120 (mon.0) 563 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:42.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:42 smithi120 bash[14220]: cluster 2024-02-11T16:11:41.481609+0000 mgr.smithi120.tpsohu (mgr.14180) 134 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:43.169 INFO:teuthology.orchestra.run.smithi183.stdout:[client.1] 2024-02-11T16:11:43.169 INFO:teuthology.orchestra.run.smithi183.stdout: key = AQC/8chli+uzCRAAuH+OXwYC1WEX8wO99LlJZA== 2024-02-11T16:11:43.473 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:43 smithi183 bash[18593]: audit 2024-02-11T16:11:43.160651+0000 mon.smithi183 (mon.1) 20 : audit [INF] from='client.? 172.21.15.183:0/2242877854' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-11T16:11:43.473 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:43 smithi183 bash[18593]: audit 2024-02-11T16:11:43.162324+0000 mon.smithi120 (mon.0) 564 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-11T16:11:43.474 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:43 smithi183 bash[18593]: audit 2024-02-11T16:11:43.168634+0000 mon.smithi120 (mon.0) 565 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-11T16:11:43.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:43 smithi120 bash[14220]: audit 2024-02-11T16:11:43.160651+0000 mon.smithi183 (mon.1) 20 : audit [INF] from='client.? 172.21.15.183:0/2242877854' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-11T16:11:43.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:43 smithi120 bash[14220]: audit 2024-02-11T16:11:43.162324+0000 mon.smithi120 (mon.0) 564 : audit [INF] from='client.? ' entity='client.admin' cmd=[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]: dispatch 2024-02-11T16:11:43.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:43 smithi120 bash[14220]: audit 2024-02-11T16:11:43.168634+0000 mon.smithi120 (mon.0) 565 : audit [INF] from='client.? ' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-02-11T16:11:43.980 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:11:43.980 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-02-11T16:11:43.980 DEBUG:teuthology.orchestra.run.smithi183:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-02-11T16:11:44.051 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd dump --format=json 2024-02-11T16:11:44.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:44 smithi183 bash[18593]: cluster 2024-02-11T16:11:43.482199+0000 mgr.smithi120.tpsohu (mgr.14180) 135 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:44.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:44 smithi120 bash[14220]: cluster 2024-02-11T16:11:43.482199+0000 mgr.smithi120.tpsohu (mgr.14180) 135 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:46.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:46 smithi183 bash[18593]: cluster 2024-02-11T16:11:45.482803+0000 mgr.smithi120.tpsohu (mgr.14180) 136 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:46.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:46 smithi120 bash[14220]: cluster 2024-02-11T16:11:45.482803+0000 mgr.smithi120.tpsohu (mgr.14180) 136 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:48.559 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:11:48.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:48 smithi183 bash[18593]: cluster 2024-02-11T16:11:47.483207+0000 mgr.smithi120.tpsohu (mgr.14180) 137 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:48.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:48 smithi120 bash[14220]: cluster 2024-02-11T16:11:47.483207+0000 mgr.smithi120.tpsohu (mgr.14180) 137 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:50.811 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:50 smithi120 bash[14220]: cluster 2024-02-11T16:11:49.483700+0000 mgr.smithi120.tpsohu (mgr.14180) 138 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:50.811 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:50 smithi120 bash[14220]: audit 2024-02-11T16:11:49.940735+0000 mon.smithi120 (mon.0) 566 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:50.811 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:50 smithi120 bash[14220]: audit 2024-02-11T16:11:50.235454+0000 mon.smithi120 (mon.0) 567 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:50.811 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:50 smithi120 bash[14220]: audit 2024-02-11T16:11:50.236910+0000 mon.smithi120 (mon.0) 568 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:50.811 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:50 smithi120 bash[14220]: audit 2024-02-11T16:11:50.238125+0000 mon.smithi120 (mon.0) 569 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:50.811 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:50 smithi120 bash[14220]: audit 2024-02-11T16:11:50.239266+0000 mon.smithi120 (mon.0) 570 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:50.811 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:50 smithi120 bash[14220]: audit 2024-02-11T16:11:50.247106+0000 mon.smithi120 (mon.0) 571 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:50.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:50 smithi183 bash[18593]: cluster 2024-02-11T16:11:49.483700+0000 mgr.smithi120.tpsohu (mgr.14180) 138 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:50.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:50 smithi183 bash[18593]: audit 2024-02-11T16:11:49.940735+0000 mon.smithi120 (mon.0) 566 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:50.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:50 smithi183 bash[18593]: audit 2024-02-11T16:11:50.235454+0000 mon.smithi120 (mon.0) 567 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:50.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:50 smithi183 bash[18593]: audit 2024-02-11T16:11:50.236910+0000 mon.smithi120 (mon.0) 568 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:50.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:50 smithi183 bash[18593]: audit 2024-02-11T16:11:50.238125+0000 mon.smithi120 (mon.0) 569 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:50.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:50 smithi183 bash[18593]: audit 2024-02-11T16:11:50.239266+0000 mon.smithi120 (mon.0) 570 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:50.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:50 smithi183 bash[18593]: audit 2024-02-11T16:11:50.247106+0000 mon.smithi120 (mon.0) 571 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:51.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:51 smithi183 bash[18593]: cephadm 2024-02-11T16:11:49.928955+0000 mgr.smithi120.tpsohu (mgr.14180) 139 : cephadm [INF] Detected new or changed devices on smithi183 2024-02-11T16:11:51.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:51 smithi183 bash[18593]: cephadm 2024-02-11T16:11:50.239996+0000 mgr.smithi120.tpsohu (mgr.14180) 140 : cephadm [INF] Adjusting osd_memory_target on smithi183 to 4028M 2024-02-11T16:11:51.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:51 smithi120 bash[14220]: cephadm 2024-02-11T16:11:49.928955+0000 mgr.smithi120.tpsohu (mgr.14180) 139 : cephadm [INF] Detected new or changed devices on smithi183 2024-02-11T16:11:51.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:51 smithi120 bash[14220]: cephadm 2024-02-11T16:11:50.239996+0000 mgr.smithi120.tpsohu (mgr.14180) 140 : cephadm [INF] Adjusting osd_memory_target on smithi183 to 4028M 2024-02-11T16:11:52.087 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:11:52.088 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":41,"fsid":"639b0136-c8f7-11ee-95b9-87774f69a715","created":"2024-02-11T16:06:30.973319+0000","modified":"2024-02-11T16:11:33.196860+0000","last_up_change":"2024-02-11T16:11:32.123194+0000","last_in_change":"2024-02-11T16:10:34.429759+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-11T16:11:08.146080+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","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_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"3c2091d9-120b-4244-ba21-2cb171c1e209","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6800","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6801","nonce":4173450850}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6802","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6803","nonce":4173450850}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6806","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6807","nonce":4173450850}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6804","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6805","nonce":4173450850}]},"public_addr":"172.21.15.183:6801/4173450850","cluster_addr":"172.21.15.183:6803/4173450850","heartbeat_back_addr":"172.21.15.183:6807/4173450850","heartbeat_front_addr":"172.21.15.183:6805/4173450850","state":["exists","up"]},{"osd":1,"uuid":"2726d3b6-6ac5-48a9-9a88-5ffe4de464ef","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6803","nonce":2435994967}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6805","nonce":2435994967}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6809","nonce":2435994967}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6807","nonce":2435994967}]},"public_addr":"172.21.15.120:6803/2435994967","cluster_addr":"172.21.15.120:6805/2435994967","heartbeat_back_addr":"172.21.15.120:6809/2435994967","heartbeat_front_addr":"172.21.15.120:6807/2435994967","state":["exists","up"]},{"osd":2,"uuid":"1af3e654-aa0d-4310-9075-1307c31f8cb6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6808","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6809","nonce":1830397092}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6810","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6811","nonce":1830397092}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6814","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6815","nonce":1830397092}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6812","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6813","nonce":1830397092}]},"public_addr":"172.21.15.183:6809/1830397092","cluster_addr":"172.21.15.183:6811/1830397092","heartbeat_back_addr":"172.21.15.183:6815/1830397092","heartbeat_front_addr":"172.21.15.183:6813/1830397092","state":["exists","up"]},{"osd":3,"uuid":"003769f8-7dea-4cd7-b654-2536afc45dc3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6811","nonce":2325712467}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6813","nonce":2325712467}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6816","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6817","nonce":2325712467}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6815","nonce":2325712467}]},"public_addr":"172.21.15.120:6811/2325712467","cluster_addr":"172.21.15.120:6813/2325712467","heartbeat_back_addr":"172.21.15.120:6817/2325712467","heartbeat_front_addr":"172.21.15.120:6815/2325712467","state":["exists","up"]},{"osd":4,"uuid":"c2c1d8e3-852b-448e-8686-1eb377c2c1cc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6816","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6817","nonce":3583284973}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6818","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6819","nonce":3583284973}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6822","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6823","nonce":3583284973}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6820","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6821","nonce":3583284973}]},"public_addr":"172.21.15.183:6817/3583284973","cluster_addr":"172.21.15.183:6819/3583284973","heartbeat_back_addr":"172.21.15.183:6823/3583284973","heartbeat_front_addr":"172.21.15.183:6821/3583284973","state":["exists","up"]},{"osd":5,"uuid":"f7161d06-6017-45b3-82c1-e998875ee374","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6818","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6819","nonce":1433345430}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6820","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6821","nonce":1433345430}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6824","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6825","nonce":1433345430}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6822","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6823","nonce":1433345430}]},"public_addr":"172.21.15.120:6819/1433345430","cluster_addr":"172.21.15.120:6821/1433345430","heartbeat_back_addr":"172.21.15.120:6825/1433345430","heartbeat_front_addr":"172.21.15.120:6823/1433345430","state":["exists","up"]},{"osd":6,"uuid":"24ad111b-d805-4655-8b67-2e9ad34cbcca","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6824","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6825","nonce":2199607138}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6826","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6827","nonce":2199607138}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6830","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6831","nonce":2199607138}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6828","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6829","nonce":2199607138}]},"public_addr":"172.21.15.183:6825/2199607138","cluster_addr":"172.21.15.183:6827/2199607138","heartbeat_back_addr":"172.21.15.183:6831/2199607138","heartbeat_front_addr":"172.21.15.183:6829/2199607138","state":["exists","up"]},{"osd":7,"uuid":"3492b139-3601-4090-8f8e-a98cb49c3ce8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6826","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6827","nonce":3872381251}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6828","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6829","nonce":3872381251}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6832","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6833","nonce":3872381251}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6830","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6831","nonce":3872381251}]},"public_addr":"172.21.15.120:6827/3872381251","cluster_addr":"172.21.15.120:6829/3872381251","heartbeat_back_addr":"172.21.15.120:6833/3872381251","heartbeat_front_addr":"172.21.15.120:6831/3872381251","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:10:56.932314+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:06.249489+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:02.786273+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:14.824238+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:08.481249+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:23.997186+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:13.429963+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:30.835198+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.120:0/3710066015":"2024-02-12T16:08:39.432474+0000","172.21.15.120:0/2390049291":"2024-02-12T16:08:39.432474+0000","172.21.15.120:0/2769628116":"2024-02-12T16:07:38.913130+0000","172.21.15.120:6800/46038466":"2024-02-12T16:08:39.432474+0000","172.21.15.120:0/3561150408":"2024-02-12T16:07:38.913130+0000","172.21.15.120:6801/4104749939":"2024-02-12T16:07:38.913130+0000","172.21.15.120:6800/4104749939":"2024-02-12T16:07:38.913130+0000","172.21.15.120:0/2960247665":"2024-02-12T16:06:58.261110+0000","172.21.15.120:6800/1892522372":"2024-02-12T16:06:58.261110+0000","172.21.15.120:0/2465554350":"2024-02-12T16:06:58.261110+0000","172.21.15.120:6801/46038466":"2024-02-12T16:08:39.432474+0000","172.21.15.120:6801/1892522372":"2024-02-12T16:06:58.261110+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","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-02-11T16:11:52.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:52 smithi183 bash[18593]: cluster 2024-02-11T16:11:51.484228+0000 mgr.smithi120.tpsohu (mgr.14180) 141 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:52.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:52 smithi183 bash[18593]: audit 2024-02-11T16:11:52.083329+0000 mon.smithi120 (mon.0) 572 : audit [DBG] from='client.? 172.21.15.120:0/3657989536' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-11T16:11:52.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:52 smithi120 bash[14220]: cluster 2024-02-11T16:11:51.484228+0000 mgr.smithi120.tpsohu (mgr.14180) 141 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:52.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:52 smithi120 bash[14220]: audit 2024-02-11T16:11:52.083329+0000 mon.smithi120 (mon.0) 572 : audit [DBG] from='client.? 172.21.15.120:0/3657989536' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-11T16:11:53.325 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': 'device_health_metrics', 'create_time': '2024-02-11T16:11:08.146080+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '26', '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_devicehealth': {}}}] 2024-02-11T16:11:53.325 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd pool get device_health_metrics pg_num 2024-02-11T16:11:54.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: cephadm 2024-02-11T16:11:53.460563+0000 mgr.smithi120.tpsohu (mgr.14180) 142 : cephadm [INF] Detected new or changed devices on smithi120 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.470241+0000 mon.smithi120 (mon.0) 573 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: cluster 2024-02-11T16:11:53.484715+0000 mgr.smithi120.tpsohu (mgr.14180) 143 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.736917+0000 mon.smithi120 (mon.0) 574 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.738368+0000 mon.smithi120 (mon.0) 575 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.739537+0000 mon.smithi120 (mon.0) 576 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.740547+0000 mon.smithi120 (mon.0) 577 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: cephadm 2024-02-11T16:11:53.741416+0000 mgr.smithi120.tpsohu (mgr.14180) 144 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3260M 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.748647+0000 mon.smithi120 (mon.0) 578 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.750573+0000 mon.smithi120 (mon.0) 579 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.752065+0000 mon.smithi120 (mon.0) 580 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.758823+0000 mon.smithi120 (mon.0) 581 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.765258+0000 mon.smithi120 (mon.0) 582 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:11:54.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.770271+0000 mon.smithi120 (mon.0) 583 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-11T16:11:54.859 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.772592+0000 mon.smithi120 (mon.0) 584 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-11T16:11:54.859 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.773031+0000 mon.smithi120 (mon.0) 585 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:54.859 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:54 smithi183 bash[18593]: audit 2024-02-11T16:11:53.774193+0000 mon.smithi120 (mon.0) 586 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:54.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: cephadm 2024-02-11T16:11:53.460563+0000 mgr.smithi120.tpsohu (mgr.14180) 142 : cephadm [INF] Detected new or changed devices on smithi120 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.470241+0000 mon.smithi120 (mon.0) 573 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: cluster 2024-02-11T16:11:53.484715+0000 mgr.smithi120.tpsohu (mgr.14180) 143 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.736917+0000 mon.smithi120 (mon.0) 574 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.738368+0000 mon.smithi120 (mon.0) 575 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.739537+0000 mon.smithi120 (mon.0) 576 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.740547+0000 mon.smithi120 (mon.0) 577 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"}]: dispatch 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: cephadm 2024-02-11T16:11:53.741416+0000 mgr.smithi120.tpsohu (mgr.14180) 144 : cephadm [INF] Adjusting osd_memory_target on smithi120 to 3260M 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.748647+0000 mon.smithi120 (mon.0) 578 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.750573+0000 mon.smithi120 (mon.0) 579 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.752065+0000 mon.smithi120 (mon.0) 580 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:11:54.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.758823+0000 mon.smithi120 (mon.0) 581 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:11:54.906 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.765258+0000 mon.smithi120 (mon.0) 582 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:11:54.906 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.770271+0000 mon.smithi120 (mon.0) 583 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-11T16:11:54.906 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.772592+0000 mon.smithi120 (mon.0) 584 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.bootstrap-osd"}]: dispatch 2024-02-11T16:11:54.906 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.773031+0000 mon.smithi120 (mon.0) 585 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:54.906 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:54 smithi120 bash[14220]: audit 2024-02-11T16:11:53.774193+0000 mon.smithi120 (mon.0) 586 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:11:56.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:56 smithi183 bash[18593]: cluster 2024-02-11T16:11:55.485294+0000 mgr.smithi120.tpsohu (mgr.14180) 145 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:56.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:56 smithi120 bash[14220]: cluster 2024-02-11T16:11:55.485294+0000 mgr.smithi120.tpsohu (mgr.14180) 145 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:58.110 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:11:58.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:11:58 smithi183 bash[18593]: cluster 2024-02-11T16:11:57.485905+0000 mgr.smithi120.tpsohu (mgr.14180) 146 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:11:58.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:11:58 smithi120 bash[14220]: cluster 2024-02-11T16:11:57.485905+0000 mgr.smithi120.tpsohu (mgr.14180) 146 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:00.849 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:00 smithi120 bash[14220]: cluster 2024-02-11T16:11:59.486555+0000 mgr.smithi120.tpsohu (mgr.14180) 147 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:00.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:00 smithi183 bash[18593]: cluster 2024-02-11T16:11:59.486555+0000 mgr.smithi120.tpsohu (mgr.14180) 147 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:02.552 INFO:teuthology.orchestra.run.smithi120.stdout:pg_num: 1 2024-02-11T16:12:02.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:02 smithi183 bash[18593]: cluster 2024-02-11T16:12:01.486983+0000 mgr.smithi120.tpsohu (mgr.14180) 148 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:02.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:02 smithi183 bash[18593]: audit 2024-02-11T16:12:02.551458+0000 mon.smithi120 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.120:0/3890285370' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-11T16:12:02.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:02 smithi120 bash[14220]: cluster 2024-02-11T16:12:01.486983+0000 mgr.smithi120.tpsohu (mgr.14180) 148 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:02.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:02 smithi120 bash[14220]: audit 2024-02-11T16:12:02.551458+0000 mon.smithi120 (mon.0) 587 : audit [DBG] from='client.? 172.21.15.120:0/3890285370' entity='client.admin' cmd=[{"prefix": "osd pool get", "pool": "device_health_metrics", "var": "pg_num"}]: dispatch 2024-02-11T16:12:03.351 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-02-11T16:12:03.351 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-02-11T16:12:03.352 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph mgr dump --format=json 2024-02-11T16:12:04.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:04 smithi183 bash[18593]: cluster 2024-02-11T16:12:03.487362+0000 mgr.smithi120.tpsohu (mgr.14180) 149 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:04.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:04 smithi120 bash[14220]: cluster 2024-02-11T16:12:03.487362+0000 mgr.smithi120.tpsohu (mgr.14180) 149 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:06.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:06 smithi183 bash[18593]: cluster 2024-02-11T16:12:05.487902+0000 mgr.smithi120.tpsohu (mgr.14180) 150 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:06.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:06 smithi120 bash[14220]: cluster 2024-02-11T16:12:05.487902+0000 mgr.smithi120.tpsohu (mgr.14180) 150 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:08.361 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:12:08.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:08 smithi120 bash[14220]: cluster 2024-02-11T16:12:07.488520+0000 mgr.smithi120.tpsohu (mgr.14180) 151 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:08.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:08 smithi183 bash[18593]: cluster 2024-02-11T16:12:07.488520+0000 mgr.smithi120.tpsohu (mgr.14180) 151 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:10.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:10 smithi183 bash[18593]: cluster 2024-02-11T16:12:09.489158+0000 mgr.smithi120.tpsohu (mgr.14180) 152 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:10.899 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:10 smithi120 bash[14220]: cluster 2024-02-11T16:12:09.489158+0000 mgr.smithi120.tpsohu (mgr.14180) 152 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:12.847 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:12:12.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:12 smithi183 bash[18593]: cluster 2024-02-11T16:12:11.489655+0000 mgr.smithi120.tpsohu (mgr.14180) 153 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:12.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:12 smithi120 bash[14220]: cluster 2024-02-11T16:12:11.489655+0000 mgr.smithi120.tpsohu (mgr.14180) 153 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:13.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:13 smithi183 bash[18593]: audit 2024-02-11T16:12:12.841684+0000 mon.smithi120 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.120:0/3900306387' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-11T16:12:13.920 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:13 smithi120 bash[14220]: audit 2024-02-11T16:12:12.841684+0000 mon.smithi120 (mon.0) 588 : audit [DBG] from='client.? 172.21.15.120:0/3900306387' entity='client.admin' cmd=[{"prefix": "mgr dump", "format": "json"}]: dispatch 2024-02-11T16:12:14.093 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":18,"active_gid":14180,"active_name":"smithi120.tpsohu","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6800","nonce":2317875468},{"type":"v1","addr":"172.21.15.120:6801","nonce":2317875468}]},"active_addr":"172.21.15.120:6801/2317875468","active_change":"2024-02-11T16:08:39.432714+0000","active_mgr_features":4540138314316775423,"available":true,"standbys":[{"gid":14198,"name":"smithi183.pltuwd","mgr_features":4540138314316775423,"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":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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","upmap"],"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":{"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":[]},"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.23.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_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:8.3.5","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":"docker.io/library/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"docker.io/arcts/keepalived","min":"","max":"","enum_allowed":[],"desc":"Keepalived 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.3.1","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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.33.4","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_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":[]},"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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","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":[]},"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":[]},"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_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_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":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"str","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"str","level":"advanced","flags":0,"default_value":"30","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":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"str","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"str","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"","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":"","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":"","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":"","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":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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_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":[]},"noautoscale":{"name":"noautoscale","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"global autoscale flag","long_desc":"Option to turn on/off the autoscaler for all pools","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":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"","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":"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":[]}}},{"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":[]},"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":"","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"None","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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"None","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":[]},"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":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"str","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":"None","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","prometheus","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":"7","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 or 7 = 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":"2400","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":"7","min":"0","max":"7","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 or 7 = 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","upmap"],"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":{"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":[]},"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.23.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_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/ceph-grafana:8.3.5","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":"docker.io/library/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"docker.io/arcts/keepalived","min":"","max":"","enum_allowed":[],"desc":"Keepalived 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.3.1","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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.33.4","min":"","max":"","enum_allowed":[],"desc":"Prometheus 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_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":[]},"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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","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":[]},"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":[]},"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_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_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":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"str","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"str","level":"advanced","flags":0,"default_value":"30","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":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"str","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"str","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"","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":"","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":"","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":"","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":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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_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":[]},"noautoscale":{"name":"noautoscale","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"global autoscale flag","long_desc":"Option to turn on/off the autoscaler for all pools","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":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"","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":"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":[]}}},{"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":[]},"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":"","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"None","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":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_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":"None","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"None","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":[]},"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":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"str","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":"None","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.120:8443/","prometheus":"http://172.21.15.120:9283/"},"always_on_modules":{"nautilus":["balancer","crash","devicehealth","orchestrator_cli","progress","rbd_support","status","volumes"],"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"]},"last_failure_osd_epoch":4,"active_clients":[{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.120:0","nonce":608270743}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.120:0","nonce":1642548174}]}]} 2024-02-11T16:12:14.097 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-02-11T16:12:14.097 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-02-11T16:12:14.097 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd dump --format=json 2024-02-11T16:12:14.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:14 smithi183 bash[18593]: cluster 2024-02-11T16:12:13.490107+0000 mgr.smithi120.tpsohu (mgr.14180) 154 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:14.869 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:14 smithi120 bash[14220]: cluster 2024-02-11T16:12:13.490107+0000 mgr.smithi120.tpsohu (mgr.14180) 154 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:16.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:16 smithi183 bash[18593]: cluster 2024-02-11T16:12:15.490495+0000 mgr.smithi120.tpsohu (mgr.14180) 155 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:16.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:16 smithi120 bash[14220]: cluster 2024-02-11T16:12:15.490495+0000 mgr.smithi120.tpsohu (mgr.14180) 155 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:18.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:18 smithi183 bash[18593]: cluster 2024-02-11T16:12:17.491035+0000 mgr.smithi120.tpsohu (mgr.14180) 156 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:18.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:18 smithi120 bash[14220]: cluster 2024-02-11T16:12:17.491035+0000 mgr.smithi120.tpsohu (mgr.14180) 156 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:19.009 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:12:20.742 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:20 smithi183 bash[18593]: cluster 2024-02-11T16:12:19.491595+0000 mgr.smithi120.tpsohu (mgr.14180) 157 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:20.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:20 smithi120 bash[14220]: cluster 2024-02-11T16:12:19.491595+0000 mgr.smithi120.tpsohu (mgr.14180) 157 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:22.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:22 smithi183 bash[18593]: audit 2024-02-11T16:12:21.265557+0000 mon.smithi120 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:12:22.607 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:22 smithi183 bash[18593]: cluster 2024-02-11T16:12:21.492123+0000 mgr.smithi120.tpsohu (mgr.14180) 158 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:22 smithi120 bash[14220]: audit 2024-02-11T16:12:21.265557+0000 mon.smithi120 (mon.0) 589 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:12:22.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:22 smithi120 bash[14220]: cluster 2024-02-11T16:12:21.492123+0000 mgr.smithi120.tpsohu (mgr.14180) 158 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:23.438 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:12:23.438 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":41,"fsid":"639b0136-c8f7-11ee-95b9-87774f69a715","created":"2024-02-11T16:06:30.973319+0000","modified":"2024-02-11T16:11:33.196860+0000","last_up_change":"2024-02-11T16:11:32.123194+0000","last_in_change":"2024-02-11T16:10:34.429759+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-11T16:11:08.146080+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","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_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"3c2091d9-120b-4244-ba21-2cb171c1e209","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6800","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6801","nonce":4173450850}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6802","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6803","nonce":4173450850}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6806","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6807","nonce":4173450850}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6804","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6805","nonce":4173450850}]},"public_addr":"172.21.15.183:6801/4173450850","cluster_addr":"172.21.15.183:6803/4173450850","heartbeat_back_addr":"172.21.15.183:6807/4173450850","heartbeat_front_addr":"172.21.15.183:6805/4173450850","state":["exists","up"]},{"osd":1,"uuid":"2726d3b6-6ac5-48a9-9a88-5ffe4de464ef","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6803","nonce":2435994967}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6805","nonce":2435994967}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6809","nonce":2435994967}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6807","nonce":2435994967}]},"public_addr":"172.21.15.120:6803/2435994967","cluster_addr":"172.21.15.120:6805/2435994967","heartbeat_back_addr":"172.21.15.120:6809/2435994967","heartbeat_front_addr":"172.21.15.120:6807/2435994967","state":["exists","up"]},{"osd":2,"uuid":"1af3e654-aa0d-4310-9075-1307c31f8cb6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6808","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6809","nonce":1830397092}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6810","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6811","nonce":1830397092}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6814","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6815","nonce":1830397092}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6812","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6813","nonce":1830397092}]},"public_addr":"172.21.15.183:6809/1830397092","cluster_addr":"172.21.15.183:6811/1830397092","heartbeat_back_addr":"172.21.15.183:6815/1830397092","heartbeat_front_addr":"172.21.15.183:6813/1830397092","state":["exists","up"]},{"osd":3,"uuid":"003769f8-7dea-4cd7-b654-2536afc45dc3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6811","nonce":2325712467}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6813","nonce":2325712467}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6816","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6817","nonce":2325712467}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6815","nonce":2325712467}]},"public_addr":"172.21.15.120:6811/2325712467","cluster_addr":"172.21.15.120:6813/2325712467","heartbeat_back_addr":"172.21.15.120:6817/2325712467","heartbeat_front_addr":"172.21.15.120:6815/2325712467","state":["exists","up"]},{"osd":4,"uuid":"c2c1d8e3-852b-448e-8686-1eb377c2c1cc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6816","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6817","nonce":3583284973}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6818","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6819","nonce":3583284973}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6822","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6823","nonce":3583284973}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6820","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6821","nonce":3583284973}]},"public_addr":"172.21.15.183:6817/3583284973","cluster_addr":"172.21.15.183:6819/3583284973","heartbeat_back_addr":"172.21.15.183:6823/3583284973","heartbeat_front_addr":"172.21.15.183:6821/3583284973","state":["exists","up"]},{"osd":5,"uuid":"f7161d06-6017-45b3-82c1-e998875ee374","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6818","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6819","nonce":1433345430}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6820","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6821","nonce":1433345430}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6824","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6825","nonce":1433345430}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6822","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6823","nonce":1433345430}]},"public_addr":"172.21.15.120:6819/1433345430","cluster_addr":"172.21.15.120:6821/1433345430","heartbeat_back_addr":"172.21.15.120:6825/1433345430","heartbeat_front_addr":"172.21.15.120:6823/1433345430","state":["exists","up"]},{"osd":6,"uuid":"24ad111b-d805-4655-8b67-2e9ad34cbcca","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6824","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6825","nonce":2199607138}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6826","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6827","nonce":2199607138}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6830","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6831","nonce":2199607138}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6828","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6829","nonce":2199607138}]},"public_addr":"172.21.15.183:6825/2199607138","cluster_addr":"172.21.15.183:6827/2199607138","heartbeat_back_addr":"172.21.15.183:6831/2199607138","heartbeat_front_addr":"172.21.15.183:6829/2199607138","state":["exists","up"]},{"osd":7,"uuid":"3492b139-3601-4090-8f8e-a98cb49c3ce8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6826","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6827","nonce":3872381251}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6828","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6829","nonce":3872381251}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6832","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6833","nonce":3872381251}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6830","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6831","nonce":3872381251}]},"public_addr":"172.21.15.120:6827/3872381251","cluster_addr":"172.21.15.120:6829/3872381251","heartbeat_back_addr":"172.21.15.120:6833/3872381251","heartbeat_front_addr":"172.21.15.120:6831/3872381251","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:10:56.932314+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:06.249489+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:02.786273+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:14.824238+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:08.481249+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:23.997186+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:13.429963+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:30.835198+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.120:0/3710066015":"2024-02-12T16:08:39.432474+0000","172.21.15.120:0/2390049291":"2024-02-12T16:08:39.432474+0000","172.21.15.120:0/2769628116":"2024-02-12T16:07:38.913130+0000","172.21.15.120:6800/46038466":"2024-02-12T16:08:39.432474+0000","172.21.15.120:0/3561150408":"2024-02-12T16:07:38.913130+0000","172.21.15.120:6801/4104749939":"2024-02-12T16:07:38.913130+0000","172.21.15.120:6800/4104749939":"2024-02-12T16:07:38.913130+0000","172.21.15.120:0/2960247665":"2024-02-12T16:06:58.261110+0000","172.21.15.120:6800/1892522372":"2024-02-12T16:06:58.261110+0000","172.21.15.120:0/2465554350":"2024-02-12T16:06:58.261110+0000","172.21.15.120:6801/46038466":"2024-02-12T16:08:39.432474+0000","172.21.15.120:6801/1892522372":"2024-02-12T16:06:58.261110+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","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-02-11T16:12:23.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:23 smithi183 bash[18593]: audit 2024-02-11T16:12:23.436946+0000 mon.smithi120 (mon.0) 590 : audit [DBG] from='client.? 172.21.15.120:0/3663902520' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-11T16:12:23.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:23 smithi120 bash[14220]: audit 2024-02-11T16:12:23.436946+0000 mon.smithi120 (mon.0) 590 : audit [DBG] from='client.? 172.21.15.120:0/3663902520' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-11T16:12:24.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:24 smithi120 bash[14220]: cluster 2024-02-11T16:12:23.492645+0000 mgr.smithi120.tpsohu (mgr.14180) 159 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:24.787 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-02-11T16:12:24.787 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd dump --format=json 2024-02-11T16:12:24.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:24 smithi183 bash[18593]: cluster 2024-02-11T16:12:23.492645+0000 mgr.smithi120.tpsohu (mgr.14180) 159 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:26.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:26 smithi183 bash[18593]: cluster 2024-02-11T16:12:25.493230+0000 mgr.smithi120.tpsohu (mgr.14180) 160 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:26.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:26 smithi183 bash[18593]: audit 2024-02-11T16:12:26.263954+0000 mon.smithi120 (mon.0) 591 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:12:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:26 smithi120 bash[14220]: cluster 2024-02-11T16:12:25.493230+0000 mgr.smithi120.tpsohu (mgr.14180) 160 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:26 smithi120 bash[14220]: audit 2024-02-11T16:12:26.263954+0000 mon.smithi120 (mon.0) 591 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:12:28.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:28 smithi183 bash[18593]: cluster 2024-02-11T16:12:27.493855+0000 mgr.smithi120.tpsohu (mgr.14180) 161 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:28.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:28 smithi120 bash[14220]: cluster 2024-02-11T16:12:27.493855+0000 mgr.smithi120.tpsohu (mgr.14180) 161 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:29.778 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:12:30.840 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:30 smithi120 bash[14220]: cluster 2024-02-11T16:12:29.494470+0000 mgr.smithi120.tpsohu (mgr.14180) 162 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:30.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:30 smithi183 bash[18593]: cluster 2024-02-11T16:12:29.494470+0000 mgr.smithi120.tpsohu (mgr.14180) 162 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:32.841 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:12:32.841 INFO:teuthology.orchestra.run.smithi120.stdout:{"epoch":41,"fsid":"639b0136-c8f7-11ee-95b9-87774f69a715","created":"2024-02-11T16:06:30.973319+0000","modified":"2024-02-11T16:11:33.196860+0000","last_up_change":"2024-02-11T16:11:32.123194+0000","last_in_change":"2024-02-11T16:10:34.429759+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":17,"full_ratio":0.94999998807907104,"backfillfull_ratio":0.89999997615814209,"nearfull_ratio":0.85000002384185791,"cluster_snapshot":"","pool_max":1,"max_osd":8,"require_min_compat_client":"luminous","min_compat_client":"jewel","require_osd_release":"pacific","pools":[{"pool":1,"pool_name":"device_health_metrics","create_time":"2024-02-11T16:11:08.146080+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"26","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_devicehealth":{}}}],"osds":[{"osd":0,"uuid":"3c2091d9-120b-4244-ba21-2cb171c1e209","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6800","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6801","nonce":4173450850}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6802","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6803","nonce":4173450850}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6806","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6807","nonce":4173450850}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6804","nonce":4173450850},{"type":"v1","addr":"172.21.15.183:6805","nonce":4173450850}]},"public_addr":"172.21.15.183:6801/4173450850","cluster_addr":"172.21.15.183:6803/4173450850","heartbeat_back_addr":"172.21.15.183:6807/4173450850","heartbeat_front_addr":"172.21.15.183:6805/4173450850","state":["exists","up"]},{"osd":1,"uuid":"2726d3b6-6ac5-48a9-9a88-5ffe4de464ef","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":23,"up_thru":31,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6802","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6803","nonce":2435994967}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6804","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6805","nonce":2435994967}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6808","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6809","nonce":2435994967}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6806","nonce":2435994967},{"type":"v1","addr":"172.21.15.120:6807","nonce":2435994967}]},"public_addr":"172.21.15.120:6803/2435994967","cluster_addr":"172.21.15.120:6805/2435994967","heartbeat_back_addr":"172.21.15.120:6809/2435994967","heartbeat_front_addr":"172.21.15.120:6807/2435994967","state":["exists","up"]},{"osd":2,"uuid":"1af3e654-aa0d-4310-9075-1307c31f8cb6","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":24,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6808","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6809","nonce":1830397092}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6810","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6811","nonce":1830397092}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6814","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6815","nonce":1830397092}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6812","nonce":1830397092},{"type":"v1","addr":"172.21.15.183:6813","nonce":1830397092}]},"public_addr":"172.21.15.183:6809/1830397092","cluster_addr":"172.21.15.183:6811/1830397092","heartbeat_back_addr":"172.21.15.183:6815/1830397092","heartbeat_front_addr":"172.21.15.183:6813/1830397092","state":["exists","up"]},{"osd":3,"uuid":"003769f8-7dea-4cd7-b654-2536afc45dc3","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":30,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6810","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6811","nonce":2325712467}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6812","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6813","nonce":2325712467}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6816","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6817","nonce":2325712467}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6814","nonce":2325712467},{"type":"v1","addr":"172.21.15.120:6815","nonce":2325712467}]},"public_addr":"172.21.15.120:6811/2325712467","cluster_addr":"172.21.15.120:6813/2325712467","heartbeat_back_addr":"172.21.15.120:6817/2325712467","heartbeat_front_addr":"172.21.15.120:6815/2325712467","state":["exists","up"]},{"osd":4,"uuid":"c2c1d8e3-852b-448e-8686-1eb377c2c1cc","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":25,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6816","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6817","nonce":3583284973}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6818","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6819","nonce":3583284973}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6822","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6823","nonce":3583284973}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6820","nonce":3583284973},{"type":"v1","addr":"172.21.15.183:6821","nonce":3583284973}]},"public_addr":"172.21.15.183:6817/3583284973","cluster_addr":"172.21.15.183:6819/3583284973","heartbeat_back_addr":"172.21.15.183:6823/3583284973","heartbeat_front_addr":"172.21.15.183:6821/3583284973","state":["exists","up"]},{"osd":5,"uuid":"f7161d06-6017-45b3-82c1-e998875ee374","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":35,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6818","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6819","nonce":1433345430}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6820","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6821","nonce":1433345430}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6824","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6825","nonce":1433345430}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6822","nonce":1433345430},{"type":"v1","addr":"172.21.15.120:6823","nonce":1433345430}]},"public_addr":"172.21.15.120:6819/1433345430","cluster_addr":"172.21.15.120:6821/1433345430","heartbeat_back_addr":"172.21.15.120:6825/1433345430","heartbeat_front_addr":"172.21.15.120:6823/1433345430","state":["exists","up"]},{"osd":6,"uuid":"24ad111b-d805-4655-8b67-2e9ad34cbcca","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":29,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6824","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6825","nonce":2199607138}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6826","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6827","nonce":2199607138}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6830","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6831","nonce":2199607138}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.183:6828","nonce":2199607138},{"type":"v1","addr":"172.21.15.183:6829","nonce":2199607138}]},"public_addr":"172.21.15.183:6825/2199607138","cluster_addr":"172.21.15.183:6827/2199607138","heartbeat_back_addr":"172.21.15.183:6831/2199607138","heartbeat_front_addr":"172.21.15.183:6829/2199607138","state":["exists","up"]},{"osd":7,"uuid":"3492b139-3601-4090-8f8e-a98cb49c3ce8","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":39,"up_thru":40,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6826","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6827","nonce":3872381251}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6828","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6829","nonce":3872381251}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6832","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6833","nonce":3872381251}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.120:6830","nonce":3872381251},{"type":"v1","addr":"172.21.15.120:6831","nonce":3872381251}]},"public_addr":"172.21.15.120:6827/3872381251","cluster_addr":"172.21.15.120:6829/3872381251","heartbeat_back_addr":"172.21.15.120:6833/3872381251","heartbeat_front_addr":"172.21.15.120:6831/3872381251","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:10:56.932314+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:06.249489+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:02.786273+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:14.824238+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:08.481249+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:23.997186+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:13.429963+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540138314316775423,"old_weight":0,"last_purged_snaps_scrub":"2024-02-11T16:11:30.835198+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.120:0/3710066015":"2024-02-12T16:08:39.432474+0000","172.21.15.120:0/2390049291":"2024-02-12T16:08:39.432474+0000","172.21.15.120:0/2769628116":"2024-02-12T16:07:38.913130+0000","172.21.15.120:6800/46038466":"2024-02-12T16:08:39.432474+0000","172.21.15.120:0/3561150408":"2024-02-12T16:07:38.913130+0000","172.21.15.120:6801/4104749939":"2024-02-12T16:07:38.913130+0000","172.21.15.120:6800/4104749939":"2024-02-12T16:07:38.913130+0000","172.21.15.120:0/2960247665":"2024-02-12T16:06:58.261110+0000","172.21.15.120:6800/1892522372":"2024-02-12T16:06:58.261110+0000","172.21.15.120:0/2465554350":"2024-02-12T16:06:58.261110+0000","172.21.15.120:6801/46038466":"2024-02-12T16:08:39.432474+0000","172.21.15.120:6801/1892522372":"2024-02-12T16:06:58.261110+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","ruleset-failure-domain":"osd","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-02-11T16:12:32.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:32 smithi183 bash[18593]: cluster 2024-02-11T16:12:31.495111+0000 mgr.smithi120.tpsohu (mgr.14180) 163 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:32.898 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:32 smithi120 bash[14220]: cluster 2024-02-11T16:12:31.495111+0000 mgr.smithi120.tpsohu (mgr.14180) 163 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:33.622 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph tell osd.0 flush_pg_stats 2024-02-11T16:12:33.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:33 smithi183 bash[18593]: audit 2024-02-11T16:12:32.838867+0000 mon.smithi120 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.120:0/1321647121' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-11T16:12:33.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:33 smithi120 bash[14220]: audit 2024-02-11T16:12:32.838867+0000 mon.smithi120 (mon.0) 592 : audit [DBG] from='client.? 172.21.15.120:0/1321647121' entity='client.admin' cmd=[{"prefix": "osd dump", "format": "json"}]: dispatch 2024-02-11T16:12:34.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:34 smithi183 bash[18593]: cluster 2024-02-11T16:12:33.495819+0000 mgr.smithi120.tpsohu (mgr.14180) 164 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:34.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:34 smithi120 bash[14220]: cluster 2024-02-11T16:12:33.495819+0000 mgr.smithi120.tpsohu (mgr.14180) 164 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:36.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:36 smithi183 bash[18593]: cluster 2024-02-11T16:12:35.496360+0000 mgr.smithi120.tpsohu (mgr.14180) 165 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:36.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:36 smithi120 bash[14220]: cluster 2024-02-11T16:12:35.496360+0000 mgr.smithi120.tpsohu (mgr.14180) 165 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:38.416 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:12:38.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:38 smithi183 bash[18593]: cluster 2024-02-11T16:12:37.496911+0000 mgr.smithi120.tpsohu (mgr.14180) 166 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:38.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:38 smithi120 bash[14220]: cluster 2024-02-11T16:12:37.496911+0000 mgr.smithi120.tpsohu (mgr.14180) 166 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:40.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:40 smithi120 bash[14220]: cluster 2024-02-11T16:12:39.497460+0000 mgr.smithi120.tpsohu (mgr.14180) 167 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:40.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:40 smithi183 bash[18593]: cluster 2024-02-11T16:12:39.497460+0000 mgr.smithi120.tpsohu (mgr.14180) 167 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:42.060 INFO:teuthology.orchestra.run.smithi120.stdout:68719476758 2024-02-11T16:12:42.061 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph tell osd.1 flush_pg_stats 2024-02-11T16:12:42.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:42 smithi183 bash[18593]: cluster 2024-02-11T16:12:41.498006+0000 mgr.smithi120.tpsohu (mgr.14180) 168 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:42.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:42 smithi120 bash[14220]: cluster 2024-02-11T16:12:41.498006+0000 mgr.smithi120.tpsohu (mgr.14180) 168 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:44.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:44 smithi183 bash[18593]: cluster 2024-02-11T16:12:43.498637+0000 mgr.smithi120.tpsohu (mgr.14180) 169 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:44.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:44 smithi120 bash[14220]: cluster 2024-02-11T16:12:43.498637+0000 mgr.smithi120.tpsohu (mgr.14180) 169 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:46.841 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:12:46.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:46 smithi183 bash[18593]: cluster 2024-02-11T16:12:45.499169+0000 mgr.smithi120.tpsohu (mgr.14180) 170 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:46.872 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:46 smithi120 bash[14220]: cluster 2024-02-11T16:12:45.499169+0000 mgr.smithi120.tpsohu (mgr.14180) 170 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:48.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:48 smithi183 bash[18593]: cluster 2024-02-11T16:12:47.499745+0000 mgr.smithi120.tpsohu (mgr.14180) 171 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:48.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:48 smithi120 bash[14220]: cluster 2024-02-11T16:12:47.499745+0000 mgr.smithi120.tpsohu (mgr.14180) 171 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:50.562 INFO:teuthology.orchestra.run.smithi120.stdout:98784247832 2024-02-11T16:12:50.562 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph tell osd.2 flush_pg_stats 2024-02-11T16:12:50.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:50 smithi183 bash[18593]: cluster 2024-02-11T16:12:49.500263+0000 mgr.smithi120.tpsohu (mgr.14180) 172 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:50.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:50 smithi120 bash[14220]: cluster 2024-02-11T16:12:49.500263+0000 mgr.smithi120.tpsohu (mgr.14180) 172 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:52.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:52 smithi183 bash[18593]: cluster 2024-02-11T16:12:51.500823+0000 mgr.smithi120.tpsohu (mgr.14180) 173 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:52.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:52 smithi120 bash[14220]: cluster 2024-02-11T16:12:51.500823+0000 mgr.smithi120.tpsohu (mgr.14180) 173 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:54.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:54 smithi183 bash[18593]: cluster 2024-02-11T16:12:53.501415+0000 mgr.smithi120.tpsohu (mgr.14180) 174 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:54.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:54 smithi120 bash[14220]: cluster 2024-02-11T16:12:53.501415+0000 mgr.smithi120.tpsohu (mgr.14180) 174 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:55.346 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:12:56.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:56 smithi183 bash[18593]: cluster 2024-02-11T16:12:55.501814+0000 mgr.smithi120.tpsohu (mgr.14180) 175 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:56.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:56 smithi120 bash[14220]: cluster 2024-02-11T16:12:55.501814+0000 mgr.smithi120.tpsohu (mgr.14180) 175 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:58.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:12:58 smithi120 bash[14220]: cluster 2024-02-11T16:12:57.502405+0000 mgr.smithi120.tpsohu (mgr.14180) 176 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:58.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:12:58 smithi183 bash[18593]: cluster 2024-02-11T16:12:57.502405+0000 mgr.smithi120.tpsohu (mgr.14180) 176 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:12:58.921 INFO:teuthology.orchestra.run.smithi120.stdout:85899345946 2024-02-11T16:12:58.922 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph tell osd.3 flush_pg_stats 2024-02-11T16:13:00.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:00 smithi183 bash[18593]: cluster 2024-02-11T16:12:59.503064+0000 mgr.smithi120.tpsohu (mgr.14180) 177 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:00.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:00 smithi120 bash[14220]: cluster 2024-02-11T16:12:59.503064+0000 mgr.smithi120.tpsohu (mgr.14180) 177 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:02.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:02 smithi183 bash[18593]: cluster 2024-02-11T16:13:01.503746+0000 mgr.smithi120.tpsohu (mgr.14180) 178 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:02.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:02 smithi120 bash[14220]: cluster 2024-02-11T16:13:01.503746+0000 mgr.smithi120.tpsohu (mgr.14180) 178 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:03.706 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:13:04.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:04 smithi183 bash[18593]: cluster 2024-02-11T16:13:03.504329+0000 mgr.smithi120.tpsohu (mgr.14180) 179 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:04.902 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:04 smithi120 bash[14220]: cluster 2024-02-11T16:13:03.504329+0000 mgr.smithi120.tpsohu (mgr.14180) 179 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:06.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:06 smithi183 bash[18593]: cluster 2024-02-11T16:13:05.504940+0000 mgr.smithi120.tpsohu (mgr.14180) 180 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:06.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:06 smithi120 bash[14220]: cluster 2024-02-11T16:13:05.504940+0000 mgr.smithi120.tpsohu (mgr.14180) 180 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:07.258 INFO:teuthology.orchestra.run.smithi120.stdout:128849018905 2024-02-11T16:13:07.259 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph tell osd.4 flush_pg_stats 2024-02-11T16:13:08.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:08 smithi120 bash[14220]: cluster 2024-02-11T16:13:07.505524+0000 mgr.smithi120.tpsohu (mgr.14180) 181 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:09.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:08 smithi183 bash[18593]: cluster 2024-02-11T16:13:07.505524+0000 mgr.smithi120.tpsohu (mgr.14180) 181 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:10.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:10 smithi120 bash[14220]: cluster 2024-02-11T16:13:09.506095+0000 mgr.smithi120.tpsohu (mgr.14180) 182 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:11.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:10 smithi183 bash[18593]: cluster 2024-02-11T16:13:09.506095+0000 mgr.smithi120.tpsohu (mgr.14180) 182 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:12.043 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:13:12.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:12 smithi120 bash[14220]: cluster 2024-02-11T16:13:11.506681+0000 mgr.smithi120.tpsohu (mgr.14180) 183 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:13.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:12 smithi183 bash[18593]: cluster 2024-02-11T16:13:11.506681+0000 mgr.smithi120.tpsohu (mgr.14180) 183 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:14.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:14 smithi120 bash[14220]: cluster 2024-02-11T16:13:13.507144+0000 mgr.smithi120.tpsohu (mgr.14180) 184 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:15.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:14 smithi183 bash[18593]: cluster 2024-02-11T16:13:13.507144+0000 mgr.smithi120.tpsohu (mgr.14180) 184 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:15.706 INFO:teuthology.orchestra.run.smithi120.stdout:107374182428 2024-02-11T16:13:15.706 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph tell osd.5 flush_pg_stats 2024-02-11T16:13:16.911 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:16 smithi120 bash[14220]: cluster 2024-02-11T16:13:15.507776+0000 mgr.smithi120.tpsohu (mgr.14180) 185 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:17.115 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:16 smithi183 bash[18593]: cluster 2024-02-11T16:13:15.507776+0000 mgr.smithi120.tpsohu (mgr.14180) 185 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:18.906 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:18 smithi120 bash[14220]: cluster 2024-02-11T16:13:17.508488+0000 mgr.smithi120.tpsohu (mgr.14180) 186 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:19.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:18 smithi183 bash[18593]: cluster 2024-02-11T16:13:17.508488+0000 mgr.smithi120.tpsohu (mgr.14180) 186 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:20.492 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:13:20.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:20 smithi120 bash[14220]: cluster 2024-02-11T16:13:19.509215+0000 mgr.smithi120.tpsohu (mgr.14180) 187 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:21.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:20 smithi183 bash[18593]: cluster 2024-02-11T16:13:19.509215+0000 mgr.smithi120.tpsohu (mgr.14180) 187 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:22.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:22 smithi120 bash[14220]: cluster 2024-02-11T16:13:21.509791+0000 mgr.smithi120.tpsohu (mgr.14180) 188 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:23.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:22 smithi183 bash[18593]: cluster 2024-02-11T16:13:21.509791+0000 mgr.smithi120.tpsohu (mgr.14180) 188 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:24.141 INFO:teuthology.orchestra.run.smithi120.stdout:150323855387 2024-02-11T16:13:24.141 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph tell osd.6 flush_pg_stats 2024-02-11T16:13:24.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:24 smithi120 bash[14220]: cluster 2024-02-11T16:13:23.510385+0000 mgr.smithi120.tpsohu (mgr.14180) 189 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:25.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:24 smithi183 bash[18593]: cluster 2024-02-11T16:13:23.510385+0000 mgr.smithi120.tpsohu (mgr.14180) 189 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:26 smithi120 bash[14220]: cluster 2024-02-11T16:13:25.510889+0000 mgr.smithi120.tpsohu (mgr.14180) 190 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:26 smithi120 bash[14220]: audit 2024-02-11T16:13:26.268809+0000 mon.smithi120 (mon.0) 593 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:13:27.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:26 smithi183 bash[18593]: cluster 2024-02-11T16:13:25.510889+0000 mgr.smithi120.tpsohu (mgr.14180) 190 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:27.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:26 smithi183 bash[18593]: audit 2024-02-11T16:13:26.268809+0000 mon.smithi120 (mon.0) 593 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:13:28.923 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:13:28.947 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:28 smithi120 bash[14220]: cluster 2024-02-11T16:13:27.511460+0000 mgr.smithi120.tpsohu (mgr.14180) 191 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:29.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:28 smithi183 bash[18593]: cluster 2024-02-11T16:13:27.511460+0000 mgr.smithi120.tpsohu (mgr.14180) 191 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:31.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:30 smithi183 bash[18593]: cluster 2024-02-11T16:13:29.512055+0000 mgr.smithi120.tpsohu (mgr.14180) 192 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:31.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:30 smithi120 bash[14220]: cluster 2024-02-11T16:13:29.512055+0000 mgr.smithi120.tpsohu (mgr.14180) 192 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:32.650 INFO:teuthology.orchestra.run.smithi120.stdout:124554051614 2024-02-11T16:13:32.651 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph tell osd.7 flush_pg_stats 2024-02-11T16:13:32.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:32 smithi120 bash[14220]: cluster 2024-02-11T16:13:31.512602+0000 mgr.smithi120.tpsohu (mgr.14180) 193 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:32.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:32 smithi120 bash[14220]: audit 2024-02-11T16:13:31.741573+0000 mon.smithi120 (mon.0) 594 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:13:32.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:32 smithi120 bash[14220]: audit 2024-02-11T16:13:32.241326+0000 mon.smithi120 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:13:32.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:32 smithi120 bash[14220]: audit 2024-02-11T16:13:32.499339+0000 mon.smithi120 (mon.0) 596 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:13:32.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:32 smithi120 bash[14220]: audit 2024-02-11T16:13:32.500315+0000 mon.smithi120 (mon.0) 597 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:13:32.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:32 smithi120 bash[14220]: audit 2024-02-11T16:13:32.506192+0000 mon.smithi120 (mon.0) 598 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:13:32.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:32 smithi120 bash[14220]: audit 2024-02-11T16:13:32.513337+0000 mon.smithi120 (mon.0) 599 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:13:33.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:32 smithi183 bash[18593]: cluster 2024-02-11T16:13:31.512602+0000 mgr.smithi120.tpsohu (mgr.14180) 193 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:33.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:32 smithi183 bash[18593]: audit 2024-02-11T16:13:31.741573+0000 mon.smithi120 (mon.0) 594 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:13:33.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:32 smithi183 bash[18593]: audit 2024-02-11T16:13:32.241326+0000 mon.smithi120 (mon.0) 595 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:13:33.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:32 smithi183 bash[18593]: audit 2024-02-11T16:13:32.499339+0000 mon.smithi120 (mon.0) 596 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:13:33.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:32 smithi183 bash[18593]: audit 2024-02-11T16:13:32.500315+0000 mon.smithi120 (mon.0) 597 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:13:33.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:32 smithi183 bash[18593]: audit 2024-02-11T16:13:32.506192+0000 mon.smithi120 (mon.0) 598 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:13:33.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:32 smithi183 bash[18593]: audit 2024-02-11T16:13:32.513337+0000 mon.smithi120 (mon.0) 599 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:13:35.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:34 smithi183 bash[18593]: cluster 2024-02-11T16:13:33.513268+0000 mgr.smithi120.tpsohu (mgr.14180) 194 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:35.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:34 smithi120 bash[14220]: cluster 2024-02-11T16:13:33.513268+0000 mgr.smithi120.tpsohu (mgr.14180) 194 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:37.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:36 smithi183 bash[18593]: cluster 2024-02-11T16:13:35.513873+0000 mgr.smithi120.tpsohu (mgr.14180) 195 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:37.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:36 smithi120 bash[14220]: cluster 2024-02-11T16:13:35.513873+0000 mgr.smithi120.tpsohu (mgr.14180) 195 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:37.438 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:13:38.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:38 smithi120 bash[14220]: cluster 2024-02-11T16:13:37.514572+0000 mgr.smithi120.tpsohu (mgr.14180) 196 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:39.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:38 smithi183 bash[18593]: cluster 2024-02-11T16:13:37.514572+0000 mgr.smithi120.tpsohu (mgr.14180) 196 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:40.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:40 smithi120 bash[14220]: cluster 2024-02-11T16:13:39.515088+0000 mgr.smithi120.tpsohu (mgr.14180) 197 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:41.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:40 smithi183 bash[18593]: cluster 2024-02-11T16:13:39.515088+0000 mgr.smithi120.tpsohu (mgr.14180) 197 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:41.158 INFO:teuthology.orchestra.run.smithi120.stdout:167503724572 2024-02-11T16:13:41.158 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd last-stat-seq osd.0 2024-02-11T16:13:43.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:42 smithi183 bash[18593]: cluster 2024-02-11T16:13:41.515707+0000 mgr.smithi120.tpsohu (mgr.14180) 198 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:43.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:42 smithi120 bash[14220]: cluster 2024-02-11T16:13:41.515707+0000 mgr.smithi120.tpsohu (mgr.14180) 198 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:45.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:44 smithi183 bash[18593]: cluster 2024-02-11T16:13:43.516352+0000 mgr.smithi120.tpsohu (mgr.14180) 199 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:45.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:44 smithi120 bash[14220]: cluster 2024-02-11T16:13:43.516352+0000 mgr.smithi120.tpsohu (mgr.14180) 199 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:45.937 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:13:47.053 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:46 smithi120 bash[14220]: cluster 2024-02-11T16:13:45.517006+0000 mgr.smithi120.tpsohu (mgr.14180) 200 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:47.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:46 smithi183 bash[18593]: cluster 2024-02-11T16:13:45.517006+0000 mgr.smithi120.tpsohu (mgr.14180) 200 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:48.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:48 smithi120 bash[14220]: cluster 2024-02-11T16:13:47.517609+0000 mgr.smithi120.tpsohu (mgr.14180) 201 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:48.963 INFO:teuthology.orchestra.run.smithi120.stdout:68719476771 2024-02-11T16:13:49.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:48 smithi183 bash[18593]: cluster 2024-02-11T16:13:47.517609+0000 mgr.smithi120.tpsohu (mgr.14180) 201 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:49.768 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476758 got 68719476771 for osd.0 2024-02-11T16:13:49.769 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd last-stat-seq osd.1 2024-02-11T16:13:50.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:49 smithi183 bash[18593]: audit 2024-02-11T16:13:48.962395+0000 mon.smithi120 (mon.0) 600 : audit [DBG] from='client.? 172.21.15.120:0/383363472' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-11T16:13:50.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:49 smithi120 bash[14220]: audit 2024-02-11T16:13:48.962395+0000 mon.smithi120 (mon.0) 600 : audit [DBG] from='client.? 172.21.15.120:0/383363472' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 0}]: dispatch 2024-02-11T16:13:51.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:50 smithi183 bash[18593]: cluster 2024-02-11T16:13:49.518161+0000 mgr.smithi120.tpsohu (mgr.14180) 202 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:51.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:50 smithi120 bash[14220]: cluster 2024-02-11T16:13:49.518161+0000 mgr.smithi120.tpsohu (mgr.14180) 202 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:53.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:52 smithi183 bash[18593]: cluster 2024-02-11T16:13:51.518786+0000 mgr.smithi120.tpsohu (mgr.14180) 203 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:53.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:52 smithi120 bash[14220]: cluster 2024-02-11T16:13:51.518786+0000 mgr.smithi120.tpsohu (mgr.14180) 203 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:54.550 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:13:55.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:54 smithi183 bash[18593]: cluster 2024-02-11T16:13:53.519347+0000 mgr.smithi120.tpsohu (mgr.14180) 204 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:55.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:54 smithi120 bash[14220]: cluster 2024-02-11T16:13:53.519347+0000 mgr.smithi120.tpsohu (mgr.14180) 204 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:57.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:56 smithi183 bash[18593]: cluster 2024-02-11T16:13:55.519908+0000 mgr.smithi120.tpsohu (mgr.14180) 205 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:57.126 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:56 smithi120 bash[14220]: cluster 2024-02-11T16:13:55.519908+0000 mgr.smithi120.tpsohu (mgr.14180) 205 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:57.517 INFO:teuthology.orchestra.run.smithi120.stdout:98784247845 2024-02-11T16:13:57.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:57 smithi120 bash[14220]: audit 2024-02-11T16:13:57.517090+0000 mon.smithi120 (mon.0) 601 : audit [DBG] from='client.? 172.21.15.120:0/1198388430' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-11T16:13:58.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:57 smithi183 bash[18593]: audit 2024-02-11T16:13:57.517090+0000 mon.smithi120 (mon.0) 601 : audit [DBG] from='client.? 172.21.15.120:0/1198388430' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 1}]: dispatch 2024-02-11T16:13:58.313 INFO:tasks.cephadm.ceph_manager.ceph:need seq 98784247832 got 98784247845 for osd.1 2024-02-11T16:13:58.313 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd last-stat-seq osd.2 2024-02-11T16:13:59.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:13:58 smithi183 bash[18593]: cluster 2024-02-11T16:13:57.520551+0000 mgr.smithi120.tpsohu (mgr.14180) 206 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:13:59.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:13:58 smithi120 bash[14220]: cluster 2024-02-11T16:13:57.520551+0000 mgr.smithi120.tpsohu (mgr.14180) 206 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:01.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:00 smithi183 bash[18593]: cluster 2024-02-11T16:13:59.521181+0000 mgr.smithi120.tpsohu (mgr.14180) 207 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:01.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:00 smithi120 bash[14220]: cluster 2024-02-11T16:13:59.521181+0000 mgr.smithi120.tpsohu (mgr.14180) 207 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:03.094 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:14:03.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:02 smithi183 bash[18593]: cluster 2024-02-11T16:14:01.521749+0000 mgr.smithi120.tpsohu (mgr.14180) 208 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:03.120 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:02 smithi120 bash[14220]: cluster 2024-02-11T16:14:01.521749+0000 mgr.smithi120.tpsohu (mgr.14180) 208 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:05.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:04 smithi183 bash[18593]: cluster 2024-02-11T16:14:03.522301+0000 mgr.smithi120.tpsohu (mgr.14180) 209 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:05.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:04 smithi120 bash[14220]: cluster 2024-02-11T16:14:03.522301+0000 mgr.smithi120.tpsohu (mgr.14180) 209 : cluster [DBG] pgmap v192: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:06.203 INFO:teuthology.orchestra.run.smithi120.stdout:85899345959 2024-02-11T16:14:06.977 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345946 got 85899345959 for osd.2 2024-02-11T16:14:06.977 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd last-stat-seq osd.3 2024-02-11T16:14:07.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:06 smithi183 bash[18593]: cluster 2024-02-11T16:14:05.522869+0000 mgr.smithi120.tpsohu (mgr.14180) 210 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:07.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:06 smithi183 bash[18593]: audit 2024-02-11T16:14:06.202578+0000 mon.smithi120 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.120:0/2938360880' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-11T16:14:07.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:06 smithi120 bash[14220]: cluster 2024-02-11T16:14:05.522869+0000 mgr.smithi120.tpsohu (mgr.14180) 210 : cluster [DBG] pgmap v193: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:07.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:06 smithi120 bash[14220]: audit 2024-02-11T16:14:06.202578+0000 mon.smithi120 (mon.0) 602 : audit [DBG] from='client.? 172.21.15.120:0/2938360880' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 2}]: dispatch 2024-02-11T16:14:09.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:08 smithi183 bash[18593]: cluster 2024-02-11T16:14:07.523455+0000 mgr.smithi120.tpsohu (mgr.14180) 211 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:09.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:08 smithi120 bash[14220]: cluster 2024-02-11T16:14:07.523455+0000 mgr.smithi120.tpsohu (mgr.14180) 211 : cluster [DBG] pgmap v194: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:11.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:10 smithi183 bash[18593]: cluster 2024-02-11T16:14:09.524075+0000 mgr.smithi120.tpsohu (mgr.14180) 212 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:11.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:10 smithi120 bash[14220]: cluster 2024-02-11T16:14:09.524075+0000 mgr.smithi120.tpsohu (mgr.14180) 212 : cluster [DBG] pgmap v195: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:11.802 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:14:13.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:12 smithi183 bash[18593]: cluster 2024-02-11T16:14:11.524691+0000 mgr.smithi120.tpsohu (mgr.14180) 213 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:12 smithi120 bash[14220]: cluster 2024-02-11T16:14:11.524691+0000 mgr.smithi120.tpsohu (mgr.14180) 213 : cluster [DBG] pgmap v196: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:14.835 INFO:teuthology.orchestra.run.smithi120.stdout:128849018919 2024-02-11T16:14:15.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:14 smithi183 bash[18593]: cluster 2024-02-11T16:14:13.525317+0000 mgr.smithi120.tpsohu (mgr.14180) 214 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:15.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:14 smithi183 bash[18593]: audit 2024-02-11T16:14:14.834517+0000 mon.smithi120 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.120:0/4235519813' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-11T16:14:15.109 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:14 smithi120 bash[14220]: cluster 2024-02-11T16:14:13.525317+0000 mgr.smithi120.tpsohu (mgr.14180) 214 : cluster [DBG] pgmap v197: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:15.109 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:14 smithi120 bash[14220]: audit 2024-02-11T16:14:14.834517+0000 mon.smithi120 (mon.0) 603 : audit [DBG] from='client.? 172.21.15.120:0/4235519813' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 3}]: dispatch 2024-02-11T16:14:15.675 INFO:tasks.cephadm.ceph_manager.ceph:need seq 128849018905 got 128849018919 for osd.3 2024-02-11T16:14:15.675 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd last-stat-seq osd.4 2024-02-11T16:14:17.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:16 smithi120 bash[14220]: cluster 2024-02-11T16:14:15.525913+0000 mgr.smithi120.tpsohu (mgr.14180) 215 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:17.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:16 smithi183 bash[18593]: cluster 2024-02-11T16:14:15.525913+0000 mgr.smithi120.tpsohu (mgr.14180) 215 : cluster [DBG] pgmap v198: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:19.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:18 smithi120 bash[14220]: cluster 2024-02-11T16:14:17.526509+0000 mgr.smithi120.tpsohu (mgr.14180) 216 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:19.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:18 smithi183 bash[18593]: cluster 2024-02-11T16:14:17.526509+0000 mgr.smithi120.tpsohu (mgr.14180) 216 : cluster [DBG] pgmap v199: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:20.458 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:14:21.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:20 smithi120 bash[14220]: cluster 2024-02-11T16:14:19.527097+0000 mgr.smithi120.tpsohu (mgr.14180) 217 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:21.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:20 smithi183 bash[18593]: cluster 2024-02-11T16:14:19.527097+0000 mgr.smithi120.tpsohu (mgr.14180) 217 : cluster [DBG] pgmap v200: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:23.139 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:22 smithi120 bash[14220]: cluster 2024-02-11T16:14:21.527682+0000 mgr.smithi120.tpsohu (mgr.14180) 218 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:23.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:22 smithi183 bash[18593]: cluster 2024-02-11T16:14:21.527682+0000 mgr.smithi120.tpsohu (mgr.14180) 218 : cluster [DBG] pgmap v201: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:23.507 INFO:teuthology.orchestra.run.smithi120.stdout:107374182441 2024-02-11T16:14:24.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:23 smithi120 bash[14220]: audit 2024-02-11T16:14:23.507066+0000 mon.smithi120 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.120:0/2624988139' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-11T16:14:24.339 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182428 got 107374182441 for osd.4 2024-02-11T16:14:24.339 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd last-stat-seq osd.5 2024-02-11T16:14:24.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:23 smithi183 bash[18593]: audit 2024-02-11T16:14:23.507066+0000 mon.smithi120 (mon.0) 604 : audit [DBG] from='client.? 172.21.15.120:0/2624988139' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 4}]: dispatch 2024-02-11T16:14:25.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:24 smithi120 bash[14220]: cluster 2024-02-11T16:14:23.528188+0000 mgr.smithi120.tpsohu (mgr.14180) 219 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:25.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:24 smithi183 bash[18593]: cluster 2024-02-11T16:14:23.528188+0000 mgr.smithi120.tpsohu (mgr.14180) 219 : cluster [DBG] pgmap v202: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:27.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:26 smithi120 bash[14220]: cluster 2024-02-11T16:14:25.528737+0000 mgr.smithi120.tpsohu (mgr.14180) 220 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:27.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:26 smithi183 bash[18593]: cluster 2024-02-11T16:14:25.528737+0000 mgr.smithi120.tpsohu (mgr.14180) 220 : cluster [DBG] pgmap v203: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:29.133 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:14:29.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:28 smithi120 bash[14220]: cluster 2024-02-11T16:14:27.529382+0000 mgr.smithi120.tpsohu (mgr.14180) 221 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:29.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:28 smithi183 bash[18593]: cluster 2024-02-11T16:14:27.529382+0000 mgr.smithi120.tpsohu (mgr.14180) 221 : cluster [DBG] pgmap v204: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:30.257 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:29 smithi120 bash[14220]: cluster 2024-02-11T16:14:29.529979+0000 mgr.smithi120.tpsohu (mgr.14180) 222 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:30.357 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:29 smithi183 bash[18593]: cluster 2024-02-11T16:14:29.529979+0000 mgr.smithi120.tpsohu (mgr.14180) 222 : cluster [DBG] pgmap v205: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:32.245 INFO:teuthology.orchestra.run.smithi120.stdout:150323855401 2024-02-11T16:14:32.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:32 smithi183 bash[18593]: cluster 2024-02-11T16:14:31.530617+0000 mgr.smithi120.tpsohu (mgr.14180) 223 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:32.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:32 smithi183 bash[18593]: audit 2024-02-11T16:14:32.244683+0000 mon.smithi120 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.120:0/3246068345' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-11T16:14:32.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:32 smithi183 bash[18593]: audit 2024-02-11T16:14:32.522330+0000 mon.smithi120 (mon.0) 606 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:14:32.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:32 smithi120 bash[14220]: cluster 2024-02-11T16:14:31.530617+0000 mgr.smithi120.tpsohu (mgr.14180) 223 : cluster [DBG] pgmap v206: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:32.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:32 smithi120 bash[14220]: audit 2024-02-11T16:14:32.244683+0000 mon.smithi120 (mon.0) 605 : audit [DBG] from='client.? 172.21.15.120:0/3246068345' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 5}]: dispatch 2024-02-11T16:14:32.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:32 smithi120 bash[14220]: audit 2024-02-11T16:14:32.522330+0000 mon.smithi120 (mon.0) 606 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:14:32.970 INFO:tasks.cephadm.ceph_manager.ceph:need seq 150323855387 got 150323855401 for osd.5 2024-02-11T16:14:32.970 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd last-stat-seq osd.6 2024-02-11T16:14:34.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:34 smithi183 bash[18593]: cluster 2024-02-11T16:14:33.531182+0000 mgr.smithi120.tpsohu (mgr.14180) 224 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:34.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:34 smithi120 bash[14220]: cluster 2024-02-11T16:14:33.531182+0000 mgr.smithi120.tpsohu (mgr.14180) 224 : cluster [DBG] pgmap v207: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:36.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:36 smithi183 bash[18593]: cluster 2024-02-11T16:14:35.531751+0000 mgr.smithi120.tpsohu (mgr.14180) 225 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:36.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:36 smithi120 bash[14220]: cluster 2024-02-11T16:14:35.531751+0000 mgr.smithi120.tpsohu (mgr.14180) 225 : cluster [DBG] pgmap v208: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:37.301 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:14:38.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:38 smithi183 bash[18593]: cluster 2024-02-11T16:14:37.532148+0000 mgr.smithi120.tpsohu (mgr.14180) 226 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:38.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:38 smithi183 bash[18593]: audit 2024-02-11T16:14:37.946897+0000 mon.smithi120 (mon.0) 607 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:14:38.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:38 smithi183 bash[18593]: audit 2024-02-11T16:14:38.316245+0000 mon.smithi120 (mon.0) 608 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:14:38.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:38 smithi183 bash[18593]: audit 2024-02-11T16:14:38.580489+0000 mon.smithi120 (mon.0) 609 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:14:38.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:38 smithi183 bash[18593]: audit 2024-02-11T16:14:38.581629+0000 mon.smithi120 (mon.0) 610 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:14:38.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:38 smithi183 bash[18593]: audit 2024-02-11T16:14:38.587221+0000 mon.smithi120 (mon.0) 611 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:14:38.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:38 smithi183 bash[18593]: audit 2024-02-11T16:14:38.595117+0000 mon.smithi120 (mon.0) 612 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:14:38.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:38 smithi120 bash[14220]: cluster 2024-02-11T16:14:37.532148+0000 mgr.smithi120.tpsohu (mgr.14180) 226 : cluster [DBG] pgmap v209: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:38.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:38 smithi120 bash[14220]: audit 2024-02-11T16:14:37.946897+0000 mon.smithi120 (mon.0) 607 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:14:38.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:38 smithi120 bash[14220]: audit 2024-02-11T16:14:38.316245+0000 mon.smithi120 (mon.0) 608 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:14:38.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:38 smithi120 bash[14220]: audit 2024-02-11T16:14:38.580489+0000 mon.smithi120 (mon.0) 609 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:14:38.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:38 smithi120 bash[14220]: audit 2024-02-11T16:14:38.581629+0000 mon.smithi120 (mon.0) 610 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:14:38.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:38 smithi120 bash[14220]: audit 2024-02-11T16:14:38.587221+0000 mon.smithi120 (mon.0) 611 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:14:38.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:38 smithi120 bash[14220]: audit 2024-02-11T16:14:38.595117+0000 mon.smithi120 (mon.0) 612 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:14:40.375 INFO:teuthology.orchestra.run.smithi120.stdout:124554051627 2024-02-11T16:14:40.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:40 smithi120 bash[14220]: cluster 2024-02-11T16:14:39.532629+0000 mgr.smithi120.tpsohu (mgr.14180) 227 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:40.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:40 smithi120 bash[14220]: audit 2024-02-11T16:14:40.374996+0000 mon.smithi120 (mon.0) 613 : audit [DBG] from='client.? 172.21.15.120:0/1075153434' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-11T16:14:40.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:40 smithi183 bash[18593]: cluster 2024-02-11T16:14:39.532629+0000 mgr.smithi120.tpsohu (mgr.14180) 227 : cluster [DBG] pgmap v210: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:40.857 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:40 smithi183 bash[18593]: audit 2024-02-11T16:14:40.374996+0000 mon.smithi120 (mon.0) 613 : audit [DBG] from='client.? 172.21.15.120:0/1075153434' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 6}]: dispatch 2024-02-11T16:14:41.138 INFO:tasks.cephadm.ceph_manager.ceph:need seq 124554051614 got 124554051627 for osd.6 2024-02-11T16:14:41.138 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph osd last-stat-seq osd.7 2024-02-11T16:14:42.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:42 smithi120 bash[14220]: cluster 2024-02-11T16:14:41.533414+0000 mgr.smithi120.tpsohu (mgr.14180) 228 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:43.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:42 smithi183 bash[18593]: cluster 2024-02-11T16:14:41.533414+0000 mgr.smithi120.tpsohu (mgr.14180) 228 : cluster [DBG] pgmap v211: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:44.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:44 smithi120 bash[14220]: cluster 2024-02-11T16:14:43.534017+0000 mgr.smithi120.tpsohu (mgr.14180) 229 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:45.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:44 smithi183 bash[18593]: cluster 2024-02-11T16:14:43.534017+0000 mgr.smithi120.tpsohu (mgr.14180) 229 : cluster [DBG] pgmap v212: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:45.920 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:14:46.901 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:46 smithi120 bash[14220]: cluster 2024-02-11T16:14:45.534661+0000 mgr.smithi120.tpsohu (mgr.14180) 230 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:47.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:46 smithi183 bash[18593]: cluster 2024-02-11T16:14:45.534661+0000 mgr.smithi120.tpsohu (mgr.14180) 230 : cluster [DBG] pgmap v213: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:48.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:48 smithi120 bash[14220]: cluster 2024-02-11T16:14:47.535227+0000 mgr.smithi120.tpsohu (mgr.14180) 231 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:49.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:48 smithi183 bash[18593]: cluster 2024-02-11T16:14:47.535227+0000 mgr.smithi120.tpsohu (mgr.14180) 231 : cluster [DBG] pgmap v214: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:49.170 INFO:teuthology.orchestra.run.smithi120.stdout:167503724585 2024-02-11T16:14:49.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:49 smithi120 bash[14220]: audit 2024-02-11T16:14:49.169289+0000 mon.smithi120 (mon.0) 614 : audit [DBG] from='client.? 172.21.15.120:0/2617489209' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-11T16:14:49.969 INFO:tasks.cephadm.ceph_manager.ceph:need seq 167503724572 got 167503724585 for osd.7 2024-02-11T16:14:49.983 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-02-11T16:14:49.983 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph pg dump --format=json 2024-02-11T16:14:49.984 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:49 smithi183 bash[18593]: audit 2024-02-11T16:14:49.169289+0000 mon.smithi120 (mon.0) 614 : audit [DBG] from='client.? 172.21.15.120:0/2617489209' entity='client.admin' cmd=[{"prefix": "osd last-stat-seq", "id": 7}]: dispatch 2024-02-11T16:14:50.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:50 smithi120 bash[14220]: cluster 2024-02-11T16:14:49.535685+0000 mgr.smithi120.tpsohu (mgr.14180) 232 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:51.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:50 smithi183 bash[18593]: cluster 2024-02-11T16:14:49.535685+0000 mgr.smithi120.tpsohu (mgr.14180) 232 : cluster [DBG] pgmap v215: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:52.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:52 smithi120 bash[14220]: cluster 2024-02-11T16:14:51.536294+0000 mgr.smithi120.tpsohu (mgr.14180) 233 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:53.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:52 smithi183 bash[18593]: cluster 2024-02-11T16:14:51.536294+0000 mgr.smithi120.tpsohu (mgr.14180) 233 : cluster [DBG] pgmap v216: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:54.758 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:14:54.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:54 smithi120 bash[14220]: cluster 2024-02-11T16:14:53.536911+0000 mgr.smithi120.tpsohu (mgr.14180) 234 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:55.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:54 smithi183 bash[18593]: cluster 2024-02-11T16:14:53.536911+0000 mgr.smithi120.tpsohu (mgr.14180) 234 : cluster [DBG] pgmap v217: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:56.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:56 smithi120 bash[14220]: cluster 2024-02-11T16:14:55.537507+0000 mgr.smithi120.tpsohu (mgr.14180) 235 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:57.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:56 smithi183 bash[18593]: cluster 2024-02-11T16:14:55.537507+0000 mgr.smithi120.tpsohu (mgr.14180) 235 : cluster [DBG] pgmap v218: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:57.860 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:14:57.864 INFO:teuthology.orchestra.run.smithi120.stderr:dumped all 2024-02-11T16:14:58.731 INFO:teuthology.orchestra.run.smithi120.stdout:{"pg_ready":true,"pg_map":{"version":219,"stamp":"2024-02-11T16:14:57.537772+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"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":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":2379996,"kb_used_data":3228,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548452,"statfs":{"total":767926730752,"available":765489614848,"internally_reserved":0,"allocated":3305472,"data_stored":1282183,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":2433744896},"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":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"0'0","reported_seq":10,"reported_epoch":41,"state":"active+clean","last_fresh":"2024-02-11T16:11:33.322912+0000","last_change":"2024-02-11T16:11:33.322912+0000","last_active":"2024-02-11T16:11:33.322912+0000","last_peered":"2024-02-11T16:11:33.322912+0000","last_clean":"2024-02-11T16:11:33.322912+0000","last_became_active":"2024-02-11T16:11:33.322562+0000","last_became_peered":"2024-02-11T16:11:33.322562+0000","last_unstale":"2024-02-11T16:11:33.322912+0000","last_undegraded":"2024-02-11T16:11:33.322912+0000","last_fullsized":"2024-02-11T16:11:33.322912+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":24,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-11T16:11:08.668674+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-11T16:11:08.668674+0000","last_clean_scrub_stamp":"2024-02-11T16:11:08.668674+0000","log_size":0,"ondisk_log_size":0,"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,"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},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"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":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":39,"seq":167503724587,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":160041,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.84999999999999998,"5min":0.85099999999999998,"15min":0.84599999999999997},"min":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.087,"5min":1.2230000000000001,"15min":1.2230000000000001},"last":1.036},{"interface":"front","average":{"1min":0.83399999999999996,"5min":0.84899999999999998,"15min":0.83699999999999997},"min":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.145,"5min":1.145,"15min":1.145},"last":0.91000000000000003}]},{"osd":1,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.78400000000000003,"5min":0.76500000000000001,"15min":0.745},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":1.099,"5min":1.1359999999999999,"15min":1.1359999999999999},"last":0.65300000000000002},{"interface":"front","average":{"1min":0.755,"5min":0.71599999999999997,"15min":0.68899999999999995},"min":{"1min":0.442,"5min":0.432,"15min":0.432},"max":{"1min":1.1399999999999999,"5min":1.1579999999999999,"15min":1.1579999999999999},"last":1.1200000000000001}]},{"osd":2,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.78700000000000003,"5min":0.79600000000000004,"15min":0.78800000000000003},"min":{"1min":0.67000000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":0.95699999999999996,"5min":1.1699999999999999,"15min":1.1699999999999999},"last":1.0920000000000001},{"interface":"front","average":{"1min":0.91100000000000003,"5min":0.90700000000000003,"15min":0.89600000000000002},"min":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.1539999999999999,"5min":1.4159999999999999,"15min":1.4159999999999999},"last":0.99199999999999999}]},{"osd":3,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.84999999999999998,"5min":0.80600000000000005,"15min":0.79400000000000004},"min":{"1min":0.48599999999999999,"5min":0.437,"15min":0.437},"max":{"1min":1.1359999999999999,"5min":1.381,"15min":1.381},"last":0.72399999999999998},{"interface":"front","average":{"1min":0.85499999999999998,"5min":0.83599999999999997,"15min":0.81000000000000005},"min":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.22,"5min":1.22,"15min":1.22},"last":1.0609999999999999}]},{"osd":4,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":1.002,"5min":1.0129999999999999,"15min":1.0149999999999999},"min":{"1min":0.66600000000000004,"5min":0.66600000000000004,"15min":0.66600000000000004},"max":{"1min":1.274,"5min":1.71,"15min":1.71},"last":0.96099999999999997},{"interface":"front","average":{"1min":0.873,"5min":0.91800000000000004,"15min":0.92300000000000004},"min":{"1min":0.61899999999999999,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.1000000000000001,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":0.92400000000000004}]},{"osd":5,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.98899999999999999,"5min":0.98299999999999998,"15min":0.97399999999999998},"min":{"1min":0.43099999999999999,"5min":0.43099999999999999,"15min":0.43099999999999999},"max":{"1min":1.3,"5min":1.806,"15min":1.806},"last":0.81000000000000005},{"interface":"front","average":{"1min":0.84199999999999997,"5min":0.84999999999999998,"15min":0.84399999999999997},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":1.278,"5min":1.278,"15min":1.278},"last":1.0109999999999999}]},{"osd":6,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":1.0589999999999999,"5min":1.073,"15min":1.0629999999999999},"min":{"1min":0.58899999999999997,"5min":0.58899999999999997,"15min":0.58899999999999997},"max":{"1min":1.478,"5min":1.5589999999999999,"15min":1.5589999999999999},"last":1.1699999999999999},{"interface":"front","average":{"1min":1.149,"5min":1.119,"15min":1.109},"min":{"1min":0.74199999999999999,"5min":0.65300000000000002,"15min":0.65300000000000002},"max":{"1min":1.4359999999999999,"5min":1.875,"15min":1.875},"last":1.2130000000000001}]}]},{"osd":5,"up_from":35,"seq":150323855406,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":0.80000000000000004,"5min":0.82999999999999996,"15min":0.82599999999999996},"min":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"max":{"1min":1.0589999999999999,"5min":1.151,"15min":1.151},"last":0.623},{"interface":"front","average":{"1min":0.86699999999999999,"5min":0.86599999999999999,"15min":0.86799999999999999},"min":{"1min":0.67000000000000004,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.0700000000000001,"5min":1.1739999999999999,"15min":1.1739999999999999},"last":0.78500000000000003}]},{"osd":1,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":0.77800000000000002,"5min":0.74199999999999999,"15min":0.748},"min":{"1min":0.57199999999999995,"5min":0.44700000000000001,"15min":0.44700000000000001},"max":{"1min":1.2689999999999999,"5min":1.629,"15min":1.629},"last":0.64900000000000002},{"interface":"front","average":{"1min":0.76600000000000001,"5min":0.72799999999999998,"15min":0.72599999999999998},"min":{"1min":0.47499999999999998,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":1.0700000000000001,"5min":1.0700000000000001,"15min":1.0700000000000001},"last":0.50700000000000001}]},{"osd":2,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":0.88900000000000001,"5min":0.93400000000000005,"15min":0.95399999999999996},"min":{"1min":0.69799999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"max":{"1min":1.155,"5min":1.2629999999999999,"15min":1.2629999999999999},"last":0.76600000000000001},{"interface":"front","average":{"1min":0.879,"5min":0.89000000000000001,"15min":0.89500000000000002},"min":{"1min":0.70399999999999996,"5min":0.65800000000000003,"15min":0.65800000000000003},"max":{"1min":1.2250000000000001,"5min":1.593,"15min":1.593},"last":0.70599999999999996}]},{"osd":3,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":0.79200000000000004,"5min":0.77800000000000002,"15min":0.78500000000000003},"min":{"1min":0.58999999999999997,"5min":0.47999999999999998,"15min":0.47999999999999998},"max":{"1min":1.099,"5min":1.212,"15min":1.212},"last":0.60399999999999998},{"interface":"front","average":{"1min":0.878,"5min":0.81699999999999995,"15min":0.79300000000000004},"min":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"max":{"1min":1.22,"5min":1.22,"15min":1.22},"last":0.82999999999999996}]},{"osd":4,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":1.044,"5min":1.012,"15min":1.01},"min":{"1min":0.70099999999999996,"5min":0.63600000000000001,"15min":0.63600000000000001},"max":{"1min":1.5049999999999999,"5min":1.5049999999999999,"15min":1.5049999999999999},"last":0.877},{"interface":"front","average":{"1min":0.98099999999999998,"5min":0.94399999999999995,"15min":0.94199999999999995},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.304,"5min":1.304,"15min":1.304},"last":0.80600000000000005}]},{"osd":6,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":1.0369999999999999,"5min":1.0269999999999999,"15min":1.044},"min":{"1min":0.76600000000000001,"5min":0.61299999999999999,"15min":0.61299999999999999},"max":{"1min":1.4790000000000001,"5min":1.863,"15min":1.863},"last":0.86199999999999999},{"interface":"front","average":{"1min":1.091,"5min":1.083,"15min":1.087},"min":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.5800000000000001,"5min":2.032,"15min":2.032},"last":0.96699999999999997}]},{"osd":7,"last update":"Sun Feb 11 16:14:36 2024","interfaces":[{"interface":"back","average":{"1min":1.0389999999999999,"5min":0.98199999999999998,"15min":0.97499999999999998},"min":{"1min":0.51900000000000002,"5min":0.501,"15min":0.501},"max":{"1min":1.4399999999999999,"5min":1.4399999999999999,"15min":1.4399999999999999},"last":0.84899999999999998},{"interface":"front","average":{"1min":1.135,"5min":1.0780000000000001,"15min":1.0680000000000001},"min":{"1min":0.64100000000000001,"5min":0.628,"15min":0.628},"max":{"1min":1.4350000000000001,"5min":1.5509999999999999,"15min":1.5509999999999999},"last":0.92000000000000004}]}]},{"osd":2,"up_from":20,"seq":85899345970,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:07 2024","interfaces":[{"interface":"back","average":{"1min":0.71499999999999997,"5min":0.73199999999999998,"15min":0.72399999999999998},"min":{"1min":0.55100000000000005,"5min":0.47399999999999998,"15min":0.47399999999999998},"max":{"1min":0.98199999999999998,"5min":1.089,"15min":1.089},"last":0.71699999999999997},{"interface":"front","average":{"1min":0.77100000000000002,"5min":0.754,"15min":0.751},"min":{"1min":0.53900000000000003,"5min":0.49099999999999999,"15min":0.49099999999999999},"max":{"1min":1.236,"5min":1.603,"15min":1.603},"last":0.68000000000000005}]},{"osd":1,"last update":"Sun Feb 11 16:14:12 2024","interfaces":[{"interface":"back","average":{"1min":0.89800000000000002,"5min":0.88200000000000001,"15min":0.89200000000000002},"min":{"1min":0.67300000000000004,"5min":0.53600000000000003,"15min":0.53600000000000003},"max":{"1min":1.153,"5min":1.8899999999999999,"15min":1.8899999999999999},"last":1.0860000000000001},{"interface":"front","average":{"1min":0.95399999999999996,"5min":0.91800000000000004,"15min":0.91800000000000004},"min":{"1min":0.79500000000000004,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.081,"5min":1.7509999999999999,"15min":1.7509999999999999},"last":0.80000000000000004}]},{"osd":3,"last update":"Sun Feb 11 16:14:24 2024","interfaces":[{"interface":"back","average":{"1min":0.999,"5min":1.01,"15min":1.02},"min":{"1min":0.65100000000000002,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.2110000000000001,"5min":1.3360000000000001,"15min":1.3360000000000001},"last":0.93899999999999995},{"interface":"front","average":{"1min":0.97799999999999998,"5min":0.97999999999999998,"15min":0.97699999999999998},"min":{"1min":0.60199999999999998,"5min":0.55400000000000005,"15min":0.55400000000000005},"max":{"1min":1.2470000000000001,"5min":2.0790000000000002,"15min":2.0790000000000002},"last":0.94799999999999995}]},{"osd":4,"last update":"Sun Feb 11 16:14:16 2024","interfaces":[{"interface":"back","average":{"1min":0.85999999999999999,"5min":0.93899999999999995,"15min":0.96699999999999997},"min":{"1min":0.65100000000000002,"5min":0.57399999999999995,"15min":0.57399999999999995},"max":{"1min":1.1160000000000001,"5min":2.298,"15min":2.298},"last":0.88},{"interface":"front","average":{"1min":0.88500000000000001,"5min":0.91500000000000004,"15min":0.92200000000000004},"min":{"1min":0.65300000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.1559999999999999,"5min":3.4100000000000001,"15min":3.4100000000000001},"last":0.76700000000000002}]},{"osd":5,"last update":"Sun Feb 11 16:14:29 2024","interfaces":[{"interface":"back","average":{"1min":0.96599999999999997,"5min":1.0049999999999999,"15min":1.0149999999999999},"min":{"1min":0.80300000000000005,"5min":0.64900000000000002,"15min":0.64900000000000002},"max":{"1min":1.143,"5min":1.8029999999999999,"15min":1.8029999999999999},"last":0.90800000000000003},{"interface":"front","average":{"1min":1.101,"5min":1.091,"15min":1.101},"min":{"1min":0.88500000000000001,"5min":0.77800000000000002,"15min":0.77800000000000002},"max":{"1min":1.2609999999999999,"5min":2.3650000000000002,"15min":2.3650000000000002},"last":1.0069999999999999}]},{"osd":6,"last update":"Sun Feb 11 16:14:16 2024","interfaces":[{"interface":"back","average":{"1min":0.96799999999999997,"5min":1.0009999999999999,"15min":1.0029999999999999},"min":{"1min":0.73499999999999999,"5min":0.71699999999999997,"15min":0.71699999999999997},"max":{"1min":1.165,"5min":1.694,"15min":1.694},"last":0.97799999999999998},{"interface":"front","average":{"1min":1.103,"5min":1.1160000000000001,"15min":1.1200000000000001},"min":{"1min":0.91600000000000004,"5min":0.78600000000000003,"15min":0.78600000000000003},"max":{"1min":1.3109999999999999,"5min":2.1920000000000002,"15min":2.1920000000000002},"last":1.0740000000000001}]},{"osd":7,"last update":"Sun Feb 11 16:14:39 2024","interfaces":[{"interface":"back","average":{"1min":1.0529999999999999,"5min":1.079,"15min":1.0800000000000001},"min":{"1min":0.84399999999999997,"5min":0.753,"15min":0.753},"max":{"1min":1.3049999999999999,"5min":1.988,"15min":1.988},"last":1.163},{"interface":"front","average":{"1min":1.1919999999999999,"5min":1.228,"15min":1.248},"min":{"1min":0.93999999999999995,"5min":0.89600000000000002,"15min":0.89600000000000002},"max":{"1min":1.4470000000000001,"5min":2.4089999999999998,"15min":2.4089999999999998},"last":1.127}]}]},{"osd":0,"up_from":16,"seq":68719476785,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"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":[{"osd":1,"last update":"Sun Feb 11 16:14:13 2024","interfaces":[{"interface":"back","average":{"1min":0.86099999999999999,"5min":0.85999999999999999,"15min":0.84799999999999998},"min":{"1min":0.59199999999999997,"5min":0.57399999999999995,"15min":0.57399999999999995},"max":{"1min":1.103,"5min":1.3560000000000001,"15min":1.3560000000000001},"last":1.012},{"interface":"front","average":{"1min":0.84999999999999998,"5min":0.79400000000000004,"15min":0.77700000000000002},"min":{"1min":0.504,"5min":0.504,"15min":0.504},"max":{"1min":1.105,"5min":1.105,"15min":1.105},"last":0.88700000000000001}]},{"osd":2,"last update":"Sun Feb 11 16:14:08 2024","interfaces":[{"interface":"back","average":{"1min":0.76400000000000001,"5min":0.72099999999999997,"15min":0.70799999999999996},"min":{"1min":0.53800000000000003,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":1.165,"5min":1.165,"15min":1.165},"last":0.64400000000000002},{"interface":"front","average":{"1min":0.77600000000000002,"5min":0.80600000000000005,"15min":0.82099999999999995},"min":{"1min":0.63,"5min":0.44600000000000001,"15min":0.44600000000000001},"max":{"1min":1.004,"5min":1.323,"15min":1.323},"last":0.80900000000000005}]},{"osd":3,"last update":"Sun Feb 11 16:14:18 2024","interfaces":[{"interface":"back","average":{"1min":0.93400000000000005,"5min":0.97199999999999998,"15min":0.98899999999999999},"min":{"1min":0.74199999999999999,"5min":0.70299999999999996,"15min":0.70299999999999996},"max":{"1min":1.1120000000000001,"5min":1.2410000000000001,"15min":1.2410000000000001},"last":0.94799999999999995},{"interface":"front","average":{"1min":0.91400000000000003,"5min":0.874,"15min":0.85599999999999998},"min":{"1min":0.66000000000000003,"5min":0.59499999999999997,"15min":0.59499999999999997},"max":{"1min":1.1299999999999999,"5min":1.1870000000000001,"15min":1.1870000000000001},"last":0.86199999999999999}]},{"osd":4,"last update":"Sun Feb 11 16:14:13 2024","interfaces":[{"interface":"back","average":{"1min":0.98599999999999999,"5min":1.008,"15min":0.997},"min":{"1min":0.81599999999999995,"5min":0.68500000000000005,"15min":0.68500000000000005},"max":{"1min":1.2390000000000001,"5min":1.4410000000000001,"15min":1.4410000000000001},"last":0.66500000000000004},{"interface":"front","average":{"1min":0.90400000000000003,"5min":0.88300000000000001,"15min":0.88300000000000001},"min":{"1min":0.61799999999999999,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.145,"5min":1.1950000000000001,"15min":1.1950000000000001},"last":1.157}]},{"osd":5,"last update":"Sun Feb 11 16:14:33 2024","interfaces":[{"interface":"back","average":{"1min":0.96499999999999997,"5min":0.92800000000000005,"15min":0.91800000000000004},"min":{"1min":0.81699999999999995,"5min":0.67400000000000004,"15min":0.67400000000000004},"max":{"1min":1.085,"5min":1.544,"15min":1.544},"last":0.93200000000000005},{"interface":"front","average":{"1min":1.077,"5min":1.097,"15min":1.103},"min":{"1min":0.70599999999999996,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.266,"5min":1.3919999999999999,"15min":1.3919999999999999},"last":1.1930000000000001}]},{"osd":6,"last update":"Sun Feb 11 16:14:18 2024","interfaces":[{"interface":"back","average":{"1min":1.0549999999999999,"5min":1.105,"15min":1.121},"min":{"1min":0.72899999999999998,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.288,"5min":2.044,"15min":2.044},"last":1.069},{"interface":"front","average":{"1min":1.0349999999999999,"5min":0.95999999999999996,"15min":0.94499999999999995},"min":{"1min":0.76700000000000002,"5min":0.47899999999999998,"15min":0.47899999999999998},"max":{"1min":1.2370000000000001,"5min":1.2370000000000001,"15min":1.2370000000000001},"last":1.3580000000000001}]},{"osd":7,"last update":"Sun Feb 11 16:14:39 2024","interfaces":[{"interface":"back","average":{"1min":1.1759999999999999,"5min":1.153,"15min":1.145},"min":{"1min":1.0489999999999999,"5min":0.84099999999999997,"15min":0.84099999999999997},"max":{"1min":1.3160000000000001,"5min":1.448,"15min":1.448},"last":1.2470000000000001},{"interface":"front","average":{"1min":1.109,"5min":1.0800000000000001,"15min":1.075},"min":{"1min":0.81899999999999995,"5min":0.81699999999999995,"15min":0.81699999999999995},"max":{"1min":1.351,"5min":1.351,"15min":1.351},"last":1.446}]}]},{"osd":1,"up_from":23,"seq":98784247857,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:15 2024","interfaces":[{"interface":"back","average":{"1min":0.88900000000000001,"5min":0.86099999999999999,"15min":0.86499999999999999},"min":{"1min":0.65300000000000002,"5min":0.59199999999999997,"15min":0.59199999999999997},"max":{"1min":1.0469999999999999,"5min":1.232,"15min":1.232},"last":0.84799999999999998},{"interface":"front","average":{"1min":0.874,"5min":0.82499999999999996,"15min":0.80600000000000005},"min":{"1min":0.626,"5min":0.56699999999999995,"15min":0.56699999999999995},"max":{"1min":1.046,"5min":1.0700000000000001,"15min":1.0700000000000001},"last":0.79700000000000004}]},{"osd":2,"last update":"Sun Feb 11 16:14:15 2024","interfaces":[{"interface":"back","average":{"1min":0.91100000000000003,"5min":0.873,"15min":0.85099999999999998},"min":{"1min":0.76900000000000002,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.0900000000000001,"5min":1.282,"15min":1.282},"last":1.1200000000000001},{"interface":"front","average":{"1min":0.92600000000000005,"5min":0.89500000000000002,"15min":0.88500000000000001},"min":{"1min":0.72399999999999998,"5min":0.621,"15min":0.621},"max":{"1min":1.1899999999999999,"5min":1.1899999999999999,"15min":1.1899999999999999},"last":1.069}]},{"osd":3,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.82099999999999995,"5min":0.71899999999999997,"15min":0.67500000000000004},"min":{"1min":0.53500000000000003,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":1.1819999999999999,"5min":1.1819999999999999,"15min":1.1819999999999999},"last":1.044},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.81200000000000006,"15min":0.76300000000000001},"min":{"1min":0.51300000000000001,"5min":0.47099999999999997,"15min":0.47099999999999997},"max":{"1min":1.2030000000000001,"5min":1.2130000000000001,"15min":1.2130000000000001},"last":1.22}]},{"osd":4,"last update":"Sun Feb 11 16:14:15 2024","interfaces":[{"interface":"back","average":{"1min":0.97099999999999997,"5min":0.88300000000000001,"15min":0.84499999999999997},"min":{"1min":0.74299999999999999,"5min":0.56000000000000005,"15min":0.56000000000000005},"max":{"1min":1.169,"5min":1.2270000000000001,"15min":1.2270000000000001},"last":0.94299999999999995},{"interface":"front","average":{"1min":0.873,"5min":0.86899999999999999,"15min":0.85899999999999999},"min":{"1min":0.73299999999999998,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":1.0489999999999999,"5min":1.1890000000000001,"15min":1.1890000000000001},"last":0.89600000000000002}]},{"osd":5,"last update":"Sun Feb 11 16:14:33 2024","interfaces":[{"interface":"back","average":{"1min":0.86899999999999999,"5min":0.81699999999999995,"15min":0.80300000000000005},"min":{"1min":0.57199999999999995,"5min":0.47399999999999998,"15min":0.47399999999999998},"max":{"1min":1.1819999999999999,"5min":1.248,"15min":1.248},"last":0.91600000000000004},{"interface":"front","average":{"1min":0.84799999999999998,"5min":0.85599999999999998,"15min":0.82599999999999996},"min":{"1min":0.53700000000000003,"5min":0.48099999999999998,"15min":0.48099999999999998},"max":{"1min":1.179,"5min":1.3200000000000001,"15min":1.3200000000000001},"last":1.012}]},{"osd":6,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":1.0069999999999999,"5min":0.98299999999999998,"15min":0.96199999999999997},"min":{"1min":0.77300000000000002,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.2110000000000001,"5min":1.343,"15min":1.343},"last":0.99299999999999999},{"interface":"front","average":{"1min":1.0409999999999999,"5min":1.004,"15min":0.96599999999999997},"min":{"1min":0.73399999999999999,"5min":0.68600000000000005,"15min":0.68600000000000005},"max":{"1min":1.246,"5min":1.387,"15min":1.387},"last":1.169}]},{"osd":7,"last update":"Sun Feb 11 16:14:36 2024","interfaces":[{"interface":"back","average":{"1min":0.98999999999999999,"5min":0.96799999999999997,"15min":0.95199999999999996},"min":{"1min":0.67900000000000005,"5min":0.46500000000000002,"15min":0.46500000000000002},"max":{"1min":1.3340000000000001,"5min":1.3340000000000001,"15min":1.3340000000000001},"last":1.0589999999999999},{"interface":"front","average":{"1min":1.0009999999999999,"5min":0.998,"15min":0.96999999999999997},"min":{"1min":0.59399999999999997,"5min":0.51900000000000002,"15min":0.51900000000000002},"max":{"1min":1.3109999999999999,"5min":1.3759999999999999,"15min":1.3759999999999999},"last":1.268}]}]},{"osd":4,"up_from":25,"seq":107374182448,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:14 2024","interfaces":[{"interface":"back","average":{"1min":0.73999999999999999,"5min":0.68500000000000005,"15min":0.67800000000000005},"min":{"1min":0.55400000000000005,"5min":0.437,"15min":0.437},"max":{"1min":0.97199999999999998,"5min":0.97199999999999998,"15min":0.97199999999999998},"last":0.753},{"interface":"front","average":{"1min":0.82599999999999996,"5min":0.78000000000000003,"15min":0.77300000000000002},"min":{"1min":0.624,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":1.127,"5min":1.127,"15min":1.127},"last":0.57499999999999996}]},{"osd":1,"last update":"Sun Feb 11 16:14:14 2024","interfaces":[{"interface":"back","average":{"1min":0.90400000000000003,"5min":0.87,"15min":0.85199999999999998},"min":{"1min":0.60499999999999998,"5min":0.60499999999999998,"15min":0.60499999999999998},"max":{"1min":1.1459999999999999,"5min":1.3540000000000001,"15min":1.3540000000000001},"last":0.99099999999999999},{"interface":"front","average":{"1min":0.93200000000000005,"5min":0.86699999999999999,"15min":0.85099999999999998},"min":{"1min":0.75800000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.1140000000000001,"5min":1.1140000000000001,"15min":1.1140000000000001},"last":0.98099999999999998}]},{"osd":2,"last update":"Sun Feb 11 16:14:14 2024","interfaces":[{"interface":"back","average":{"1min":0.88800000000000001,"5min":0.79400000000000004,"15min":0.77600000000000002},"min":{"1min":0.629,"5min":0.52500000000000002,"15min":0.52500000000000002},"max":{"1min":1.343,"5min":1.4510000000000001,"15min":1.4510000000000001},"last":1.03},{"interface":"front","average":{"1min":0.871,"5min":0.83599999999999997,"15min":0.82899999999999996},"min":{"1min":0.58699999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.3160000000000001,"5min":1.3160000000000001,"15min":1.3160000000000001},"last":0.83499999999999996}]},{"osd":3,"last update":"Sun Feb 11 16:14:27 2024","interfaces":[{"interface":"back","average":{"1min":0.89600000000000002,"5min":0.91500000000000004,"15min":0.91600000000000004},"min":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"max":{"1min":1.04,"5min":1.4199999999999999,"15min":1.4199999999999999},"last":0.92700000000000005},{"interface":"front","average":{"1min":1.048,"5min":1.032,"15min":1.026},"min":{"1min":0.81200000000000006,"5min":0.73799999999999999,"15min":0.73799999999999999},"max":{"1min":1.319,"5min":1.492,"15min":1.492},"last":0.95299999999999996}]},{"osd":5,"last update":"Sun Feb 11 16:14:33 2024","interfaces":[{"interface":"back","average":{"1min":1.0920000000000001,"5min":1.085,"15min":1.075},"min":{"1min":0.86899999999999999,"5min":0.70499999999999996,"15min":0.70499999999999996},"max":{"1min":1.2809999999999999,"5min":1.736,"15min":1.736},"last":0.86799999999999999},{"interface":"front","average":{"1min":0.997,"5min":1.0109999999999999,"15min":1.0089999999999999},"min":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"max":{"1min":1.2190000000000001,"5min":1.296,"15min":1.296},"last":1.1020000000000001}]},{"osd":6,"last update":"Sun Feb 11 16:14:27 2024","interfaces":[{"interface":"back","average":{"1min":1.083,"5min":1.056,"15min":1.0449999999999999},"min":{"1min":0.872,"5min":0.57299999999999995,"15min":0.57299999999999995},"max":{"1min":1.3500000000000001,"5min":1.605,"15min":1.605},"last":0.79100000000000004},{"interface":"front","average":{"1min":1.028,"5min":0.98299999999999998,"15min":0.96599999999999997},"min":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"max":{"1min":1.2090000000000001,"5min":1.254,"15min":1.254},"last":1.153}]},{"osd":7,"last update":"Sun Feb 11 16:14:37 2024","interfaces":[{"interface":"back","average":{"1min":1.216,"5min":1.175,"15min":1.157},"min":{"1min":0.85299999999999998,"5min":0.74299999999999999,"15min":0.74299999999999999},"max":{"1min":1.6000000000000001,"5min":1.6000000000000001,"15min":1.6000000000000001},"last":1.1299999999999999},{"interface":"front","average":{"1min":1.153,"5min":1.1259999999999999,"15min":1.1200000000000001},"min":{"1min":0.97699999999999998,"5min":0.90800000000000003,"15min":0.90800000000000003},"max":{"1min":1.3480000000000001,"5min":1.9630000000000001,"15min":1.9630000000000001},"last":1.202}]}]},{"osd":6,"up_from":29,"seq":124554051631,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.69199999999999995,"5min":0.77300000000000002,"15min":0.78800000000000003},"min":{"1min":0.46200000000000002,"5min":0.46200000000000002,"15min":0.46200000000000002},"max":{"1min":1.0429999999999999,"5min":1.327,"15min":1.327},"last":0.64500000000000002},{"interface":"front","average":{"1min":0.88500000000000001,"5min":0.89700000000000002,"15min":0.89800000000000002},"min":{"1min":0.68899999999999995,"5min":0.61399999999999999,"15min":0.61399999999999999},"max":{"1min":1.1599999999999999,"5min":1.2170000000000001,"15min":1.2170000000000001},"last":1.117}]},{"osd":1,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.84999999999999998,"5min":0.83299999999999996,"15min":0.82099999999999995},"min":{"1min":0.63300000000000001,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":1.099,"5min":1.133,"15min":1.133},"last":0.71599999999999997},{"interface":"front","average":{"1min":0.90500000000000003,"5min":0.90100000000000002,"15min":0.89300000000000002},"min":{"1min":0.629,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.177,"5min":1.2050000000000001,"15min":1.2050000000000001},"last":0.97799999999999998}]},{"osd":2,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.81000000000000005,"5min":0.84999999999999998,"15min":0.86199999999999999},"min":{"1min":0.61099999999999999,"5min":0.56100000000000005,"15min":0.56100000000000005},"max":{"1min":1.093,"5min":1.238,"15min":1.238},"last":0.83099999999999996},{"interface":"front","average":{"1min":0.86699999999999999,"5min":0.84799999999999998,"15min":0.85499999999999998},"min":{"1min":0.61599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":1.1240000000000001,"5min":1.77,"15min":1.77},"last":1.2889999999999999}]},{"osd":3,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.94499999999999995,"5min":0.98399999999999999,"15min":1.002},"min":{"1min":0.73999999999999999,"5min":0.65000000000000002,"15min":0.65000000000000002},"max":{"1min":1.1910000000000001,"5min":1.3400000000000001,"15min":1.3400000000000001},"last":1.087},{"interface":"front","average":{"1min":1.024,"5min":0.96699999999999997,"15min":0.95699999999999996},"min":{"1min":0.76400000000000001,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.204,"5min":1.2929999999999999,"15min":1.2929999999999999},"last":1.25}]},{"osd":4,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.94199999999999995,"5min":0.90900000000000003,"15min":0.90900000000000003},"min":{"1min":0.72599999999999998,"5min":0.53300000000000003,"15min":0.53300000000000003},"max":{"1min":1.0880000000000001,"5min":1.375,"15min":1.375},"last":1.196},{"interface":"front","average":{"1min":0.877,"5min":0.89400000000000002,"15min":0.89900000000000002},"min":{"1min":0.76300000000000001,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.0669999999999999,"5min":1.2809999999999999,"15min":1.2809999999999999},"last":0.872}]},{"osd":5,"last update":"Sun Feb 11 16:14:30 2024","interfaces":[{"interface":"back","average":{"1min":1.0309999999999999,"5min":1.004,"15min":1.0009999999999999},"min":{"1min":0.86099999999999999,"5min":0.63400000000000001,"15min":0.63400000000000001},"max":{"1min":1.1870000000000001,"5min":1.5509999999999999,"15min":1.5509999999999999},"last":0.94599999999999995},{"interface":"front","average":{"1min":1.036,"5min":1.056,"15min":1.0649999999999999},"min":{"1min":0.84099999999999997,"5min":0.755,"15min":0.755},"max":{"1min":1.2869999999999999,"5min":1.3180000000000001,"15min":1.3180000000000001},"last":1.147}]},{"osd":7,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":1.1220000000000001,"5min":1.097,"15min":1.0860000000000001},"min":{"1min":0.83599999999999997,"5min":0.746,"15min":0.746},"max":{"1min":1.653,"5min":1.675,"15min":1.675},"last":1.7969999999999999},{"interface":"front","average":{"1min":1.046,"5min":1.073,"15min":1.073},"min":{"1min":0.88200000000000001,"5min":0.68200000000000005,"15min":0.68200000000000005},"max":{"1min":1.23,"5min":1.6259999999999999,"15min":1.6259999999999999},"last":1.0209999999999999}]}]},{"osd":3,"up_from":30,"seq":128849018928,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.78800000000000003,"5min":0.82399999999999995,"15min":0.83399999999999996},"min":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":0.97399999999999998,"5min":1.135,"15min":1.135},"last":0.73799999999999999},{"interface":"front","average":{"1min":0.874,"5min":0.86499999999999999,"15min":0.85799999999999998},"min":{"1min":0.63800000000000001,"5min":0.47399999999999998,"15min":0.47399999999999998},"max":{"1min":1.135,"5min":1.2,"15min":1.2},"last":0.97399999999999998}]},{"osd":1,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.65700000000000003,"5min":0.63200000000000001,"15min":0.61199999999999999},"min":{"1min":0.50800000000000001,"5min":0.29099999999999998,"15min":0.29099999999999998},"max":{"1min":0.79900000000000004,"5min":1.056,"15min":1.056},"last":0.70999999999999996},{"interface":"front","average":{"1min":0.748,"5min":0.70999999999999996,"15min":0.68999999999999995},"min":{"1min":0.48899999999999999,"5min":0.374,"15min":0.374},"max":{"1min":1.0169999999999999,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":0.91200000000000003}]},{"osd":2,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.91300000000000003,"5min":0.96399999999999997,"15min":0.98199999999999998},"min":{"1min":0.72499999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"max":{"1min":1.222,"5min":1.3100000000000001,"15min":1.3100000000000001},"last":0.79600000000000004},{"interface":"front","average":{"1min":0.95799999999999996,"5min":0.96299999999999997,"15min":0.95299999999999996},"min":{"1min":0.79700000000000004,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.1279999999999999,"5min":1.3420000000000001,"15min":1.3420000000000001},"last":1.101}]},{"osd":4,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.92700000000000005,"5min":0.92600000000000005,"15min":0.91500000000000004},"min":{"1min":0.77700000000000002,"5min":0.63600000000000001,"15min":0.63600000000000001},"max":{"1min":1.1379999999999999,"5min":1.169,"15min":1.169},"last":1.1559999999999999},{"interface":"front","average":{"1min":0.85899999999999999,"5min":0.90600000000000003,"15min":0.91000000000000003},"min":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.107,"5min":1.208,"15min":1.208},"last":0.85999999999999999}]},{"osd":5,"last update":"Sun Feb 11 16:14:33 2024","interfaces":[{"interface":"back","average":{"1min":0.90100000000000002,"5min":0.875,"15min":0.85599999999999998},"min":{"1min":0.60299999999999998,"5min":0.45200000000000001,"15min":0.45200000000000001},"max":{"1min":1.343,"5min":1.343,"15min":1.343},"last":1.014},{"interface":"front","average":{"1min":0.995,"5min":0.92000000000000004,"15min":0.88700000000000001},"min":{"1min":0.68300000000000005,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":1.1839999999999999,"5min":1.3919999999999999,"15min":1.3919999999999999},"last":0.95999999999999996}]},{"osd":6,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":1.032,"5min":1.042,"15min":1.042},"min":{"1min":0.78900000000000003,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":1.214,"5min":1.3440000000000001,"15min":1.3440000000000001},"last":1.1839999999999999},{"interface":"front","average":{"1min":1.05,"5min":1.0489999999999999,"15min":1.0489999999999999},"min":{"1min":0.83799999999999997,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.294,"5min":1.615,"15min":1.615},"last":0.89300000000000002}]},{"osd":7,"last update":"Sun Feb 11 16:14:36 2024","interfaces":[{"interface":"back","average":{"1min":1.0740000000000001,"5min":1.024,"15min":1.008},"min":{"1min":0.82999999999999996,"5min":0.501,"15min":0.501},"max":{"1min":1.2789999999999999,"5min":1.4730000000000001,"15min":1.4730000000000001},"last":0.82699999999999996},{"interface":"front","average":{"1min":1.054,"5min":1.0029999999999999,"15min":0.98099999999999998},"min":{"1min":0.59699999999999998,"5min":0.51300000000000001,"15min":0.51300000000000001},"max":{"1min":1.266,"5min":1.5589999999999999,"15min":1.5589999999999999},"last":1.0429999999999999}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"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":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"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}]}} 2024-02-11T16:14:58.733 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph pg dump --format=json 2024-02-11T16:14:59.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:58 smithi183 bash[18593]: cluster 2024-02-11T16:14:57.537998+0000 mgr.smithi120.tpsohu (mgr.14180) 236 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:59.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:14:58 smithi183 bash[18593]: audit 2024-02-11T16:14:57.851802+0000 mgr.smithi120.tpsohu (mgr.14180) 237 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-11T16:14:59.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:58 smithi120 bash[14220]: cluster 2024-02-11T16:14:57.537998+0000 mgr.smithi120.tpsohu (mgr.14180) 236 : cluster [DBG] pgmap v219: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:14:59.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:14:58 smithi120 bash[14220]: audit 2024-02-11T16:14:57.851802+0000 mgr.smithi120.tpsohu (mgr.14180) 237 : audit [DBG] from='client.14488 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-11T16:15:01.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:00 smithi183 bash[18593]: cluster 2024-02-11T16:14:59.538633+0000 mgr.smithi120.tpsohu (mgr.14180) 238 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:01.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:00 smithi120 bash[14220]: cluster 2024-02-11T16:14:59.538633+0000 mgr.smithi120.tpsohu (mgr.14180) 238 : cluster [DBG] pgmap v220: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:03.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:02 smithi183 bash[18593]: cluster 2024-02-11T16:15:01.539155+0000 mgr.smithi120.tpsohu (mgr.14180) 239 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:02 smithi120 bash[14220]: cluster 2024-02-11T16:15:01.539155+0000 mgr.smithi120.tpsohu (mgr.14180) 239 : cluster [DBG] pgmap v221: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:03.508 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:15:04.901 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:04 smithi120 bash[14220]: cluster 2024-02-11T16:15:03.539708+0000 mgr.smithi120.tpsohu (mgr.14180) 240 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:05.107 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:04 smithi183 bash[18593]: cluster 2024-02-11T16:15:03.539708+0000 mgr.smithi120.tpsohu (mgr.14180) 240 : cluster [DBG] pgmap v222: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:06.753 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:15:06.757 INFO:teuthology.orchestra.run.smithi120.stderr:dumped all 2024-02-11T16:15:07.009 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:06 smithi120 bash[14220]: cluster 2024-02-11T16:15:05.540269+0000 mgr.smithi120.tpsohu (mgr.14180) 241 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:07.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:06 smithi183 bash[18593]: cluster 2024-02-11T16:15:05.540269+0000 mgr.smithi120.tpsohu (mgr.14180) 241 : cluster [DBG] pgmap v223: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:07.575 INFO:teuthology.orchestra.run.smithi120.stdout:{"pg_ready":true,"pg_map":{"version":223,"stamp":"2024-02-11T16:15:05.539979+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"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":3,"acting":3,"num_store_stats":0},"osd_stats_sum":{"up_from":0,"seq":0,"num_pgs":3,"num_osds":8,"num_per_pool_osds":8,"num_per_pool_omap_osds":3,"kb":749928448,"kb_used":2379996,"kb_used_data":3228,"kb_used_omap":0,"kb_used_meta":2376704,"kb_avail":747548452,"statfs":{"total":767926730752,"available":765489614848,"internally_reserved":0,"allocated":3305472,"data_stored":1282183,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":2433744896},"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":"0.000000"},"pg_stats":[{"pgid":"1.0","version":"0'0","reported_seq":10,"reported_epoch":41,"state":"active+clean","last_fresh":"2024-02-11T16:11:33.322912+0000","last_change":"2024-02-11T16:11:33.322912+0000","last_active":"2024-02-11T16:11:33.322912+0000","last_peered":"2024-02-11T16:11:33.322912+0000","last_clean":"2024-02-11T16:11:33.322912+0000","last_became_active":"2024-02-11T16:11:33.322562+0000","last_became_peered":"2024-02-11T16:11:33.322562+0000","last_unstale":"2024-02-11T16:11:33.322912+0000","last_undegraded":"2024-02-11T16:11:33.322912+0000","last_fullsized":"2024-02-11T16:11:33.322912+0000","mapping_epoch":40,"log_start":"0'0","ondisk_log_start":"0'0","created":24,"last_epoch_clean":41,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-02-11T16:11:08.668674+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-02-11T16:11:08.668674+0000","last_clean_scrub_stamp":"2024-02-11T16:11:08.668674+0000","log_size":0,"ondisk_log_size":0,"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,"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},"up":[7,0,3],"acting":[7,0,3],"avail_no_missing":[],"object_location_counts":[],"blocked_by":[],"up_primary":7,"acting_primary":7,"purged_snaps":[]}],"pool_stats":[{"poolid":1,"num_pg":1,"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":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":39,"seq":167503724589,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297496,"kb_used_data":400,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443560,"statfs":{"total":95990841344,"available":95686205440,"internally_reserved":0,"allocated":409600,"data_stored":160041,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,6],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.84999999999999998,"5min":0.85099999999999998,"15min":0.84599999999999997},"min":{"1min":0.55200000000000005,"5min":0.55200000000000005,"15min":0.55200000000000005},"max":{"1min":1.087,"5min":1.2230000000000001,"15min":1.2230000000000001},"last":0.79900000000000004},{"interface":"front","average":{"1min":0.83399999999999996,"5min":0.84899999999999998,"15min":0.83699999999999997},"min":{"1min":0.53000000000000003,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.145,"5min":1.145,"15min":1.145},"last":0.90100000000000002}]},{"osd":1,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.78400000000000003,"5min":0.76500000000000001,"15min":0.745},"min":{"1min":0.41499999999999998,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":1.099,"5min":1.1359999999999999,"15min":1.1359999999999999},"last":0.59199999999999997},{"interface":"front","average":{"1min":0.755,"5min":0.71599999999999997,"15min":0.68899999999999995},"min":{"1min":0.442,"5min":0.432,"15min":0.432},"max":{"1min":1.1399999999999999,"5min":1.1579999999999999,"15min":1.1579999999999999},"last":0.52100000000000002}]},{"osd":2,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.78700000000000003,"5min":0.79600000000000004,"15min":0.78800000000000003},"min":{"1min":0.67000000000000004,"5min":0.54300000000000004,"15min":0.54300000000000004},"max":{"1min":0.95699999999999996,"5min":1.1699999999999999,"15min":1.1699999999999999},"last":0.84499999999999997},{"interface":"front","average":{"1min":0.91100000000000003,"5min":0.90700000000000003,"15min":0.89600000000000002},"min":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.1539999999999999,"5min":1.4159999999999999,"15min":1.4159999999999999},"last":0.82099999999999995}]},{"osd":3,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.84999999999999998,"5min":0.80600000000000005,"15min":0.79400000000000004},"min":{"1min":0.48599999999999999,"5min":0.437,"15min":0.437},"max":{"1min":1.1359999999999999,"5min":1.381,"15min":1.381},"last":0.93100000000000005},{"interface":"front","average":{"1min":0.85499999999999998,"5min":0.83599999999999997,"15min":0.81000000000000005},"min":{"1min":0.45700000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.22,"5min":1.22,"15min":1.22},"last":0.75700000000000001}]},{"osd":4,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":1.002,"5min":1.0129999999999999,"15min":1.0149999999999999},"min":{"1min":0.66600000000000004,"5min":0.66600000000000004,"15min":0.66600000000000004},"max":{"1min":1.274,"5min":1.71,"15min":1.71},"last":0.876},{"interface":"front","average":{"1min":0.873,"5min":0.91800000000000004,"15min":0.92300000000000004},"min":{"1min":0.61899999999999999,"5min":0.61899999999999999,"15min":0.61899999999999999},"max":{"1min":1.1000000000000001,"5min":1.4530000000000001,"15min":1.4530000000000001},"last":0.998}]},{"osd":5,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":0.98899999999999999,"5min":0.98299999999999998,"15min":0.97399999999999998},"min":{"1min":0.43099999999999999,"5min":0.43099999999999999,"15min":0.43099999999999999},"max":{"1min":1.3,"5min":1.806,"15min":1.806},"last":0.97599999999999998},{"interface":"front","average":{"1min":0.84199999999999997,"5min":0.84999999999999998,"15min":0.84399999999999997},"min":{"1min":0.36399999999999999,"5min":0.36399999999999999,"15min":0.36399999999999999},"max":{"1min":1.278,"5min":1.278,"15min":1.278},"last":0.91900000000000004}]},{"osd":6,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":1.0589999999999999,"5min":1.073,"15min":1.0629999999999999},"min":{"1min":0.58899999999999997,"5min":0.58899999999999997,"15min":0.58899999999999997},"max":{"1min":1.478,"5min":1.5589999999999999,"15min":1.5589999999999999},"last":0.95599999999999996},{"interface":"front","average":{"1min":1.149,"5min":1.119,"15min":1.109},"min":{"1min":0.74199999999999999,"5min":0.65300000000000002,"15min":0.65300000000000002},"max":{"1min":1.4359999999999999,"5min":1.875,"15min":1.875},"last":1.0620000000000001}]}]},{"osd":5,"up_from":35,"seq":150323855407,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":0.80000000000000004,"5min":0.82999999999999996,"15min":0.82599999999999996},"min":{"1min":0.59599999999999997,"5min":0.59599999999999997,"15min":0.59599999999999997},"max":{"1min":1.0589999999999999,"5min":1.151,"15min":1.151},"last":0.88300000000000001},{"interface":"front","average":{"1min":0.86699999999999999,"5min":0.86599999999999999,"15min":0.86799999999999999},"min":{"1min":0.67000000000000004,"5min":0.56999999999999995,"15min":0.56999999999999995},"max":{"1min":1.0700000000000001,"5min":1.1739999999999999,"15min":1.1739999999999999},"last":0.60599999999999998}]},{"osd":1,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":0.77800000000000002,"5min":0.74199999999999999,"15min":0.748},"min":{"1min":0.57199999999999995,"5min":0.44700000000000001,"15min":0.44700000000000001},"max":{"1min":1.2689999999999999,"5min":1.629,"15min":1.629},"last":0.57399999999999995},{"interface":"front","average":{"1min":0.76600000000000001,"5min":0.72799999999999998,"15min":0.72599999999999998},"min":{"1min":0.47499999999999998,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":1.0700000000000001,"5min":1.0700000000000001,"15min":1.0700000000000001},"last":0.41399999999999998}]},{"osd":2,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":0.88900000000000001,"5min":0.93400000000000005,"15min":0.95399999999999996},"min":{"1min":0.69799999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"max":{"1min":1.155,"5min":1.2629999999999999,"15min":1.2629999999999999},"last":0.71999999999999997},{"interface":"front","average":{"1min":0.879,"5min":0.89000000000000001,"15min":0.89500000000000002},"min":{"1min":0.70399999999999996,"5min":0.65800000000000003,"15min":0.65800000000000003},"max":{"1min":1.2250000000000001,"5min":1.593,"15min":1.593},"last":0.67400000000000004}]},{"osd":3,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":0.79200000000000004,"5min":0.77800000000000002,"15min":0.78500000000000003},"min":{"1min":0.58999999999999997,"5min":0.47999999999999998,"15min":0.47999999999999998},"max":{"1min":1.099,"5min":1.212,"15min":1.212},"last":0.48199999999999998},{"interface":"front","average":{"1min":0.878,"5min":0.81699999999999995,"15min":0.79300000000000004},"min":{"1min":0.47899999999999998,"5min":0.47899999999999998,"15min":0.47899999999999998},"max":{"1min":1.22,"5min":1.22,"15min":1.22},"last":0.61699999999999999}]},{"osd":4,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":1.044,"5min":1.012,"15min":1.01},"min":{"1min":0.70099999999999996,"5min":0.63600000000000001,"15min":0.63600000000000001},"max":{"1min":1.5049999999999999,"5min":1.5049999999999999,"15min":1.5049999999999999},"last":0.66200000000000003},{"interface":"front","average":{"1min":0.98099999999999998,"5min":0.94399999999999995,"15min":0.94199999999999995},"min":{"1min":0.629,"5min":0.629,"15min":0.629},"max":{"1min":1.304,"5min":1.304,"15min":1.304},"last":0.83699999999999997}]},{"osd":6,"last update":"Sun Feb 11 16:14:28 2024","interfaces":[{"interface":"back","average":{"1min":1.0369999999999999,"5min":1.0269999999999999,"15min":1.044},"min":{"1min":0.76600000000000001,"5min":0.61299999999999999,"15min":0.61299999999999999},"max":{"1min":1.4790000000000001,"5min":1.863,"15min":1.863},"last":0.69799999999999995},{"interface":"front","average":{"1min":1.091,"5min":1.083,"15min":1.087},"min":{"1min":0.69799999999999995,"5min":0.69799999999999995,"15min":0.69799999999999995},"max":{"1min":1.5800000000000001,"5min":2.032,"15min":2.032},"last":0.85299999999999998}]},{"osd":7,"last update":"Sun Feb 11 16:14:36 2024","interfaces":[{"interface":"back","average":{"1min":1.0389999999999999,"5min":0.98199999999999998,"15min":0.97499999999999998},"min":{"1min":0.51900000000000002,"5min":0.501,"15min":0.501},"max":{"1min":1.4399999999999999,"5min":1.4399999999999999,"15min":1.4399999999999999},"last":0.97799999999999998},{"interface":"front","average":{"1min":1.135,"5min":1.0780000000000001,"15min":1.0680000000000001},"min":{"1min":0.64100000000000001,"5min":0.628,"15min":0.628},"max":{"1min":1.4350000000000001,"5min":1.5509999999999999,"15min":1.5509999999999999},"last":0.82699999999999996}]}]},{"osd":2,"up_from":20,"seq":85899345971,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,3,4,5,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:07 2024","interfaces":[{"interface":"back","average":{"1min":0.71499999999999997,"5min":0.73199999999999998,"15min":0.72399999999999998},"min":{"1min":0.55100000000000005,"5min":0.47399999999999998,"15min":0.47399999999999998},"max":{"1min":0.98199999999999998,"5min":1.089,"15min":1.089},"last":0.71699999999999997},{"interface":"front","average":{"1min":0.77100000000000002,"5min":0.754,"15min":0.751},"min":{"1min":0.53900000000000003,"5min":0.49099999999999999,"15min":0.49099999999999999},"max":{"1min":1.236,"5min":1.603,"15min":1.603},"last":0.68000000000000005}]},{"osd":1,"last update":"Sun Feb 11 16:14:12 2024","interfaces":[{"interface":"back","average":{"1min":0.89800000000000002,"5min":0.88200000000000001,"15min":0.89200000000000002},"min":{"1min":0.67300000000000004,"5min":0.53600000000000003,"15min":0.53600000000000003},"max":{"1min":1.153,"5min":1.8899999999999999,"15min":1.8899999999999999},"last":1.0860000000000001},{"interface":"front","average":{"1min":0.95399999999999996,"5min":0.91800000000000004,"15min":0.91800000000000004},"min":{"1min":0.79500000000000004,"5min":0.60099999999999998,"15min":0.60099999999999998},"max":{"1min":1.081,"5min":1.7509999999999999,"15min":1.7509999999999999},"last":0.80000000000000004}]},{"osd":3,"last update":"Sun Feb 11 16:14:24 2024","interfaces":[{"interface":"back","average":{"1min":0.999,"5min":1.01,"15min":1.02},"min":{"1min":0.65100000000000002,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.2110000000000001,"5min":1.3360000000000001,"15min":1.3360000000000001},"last":0.93899999999999995},{"interface":"front","average":{"1min":0.97799999999999998,"5min":0.97999999999999998,"15min":0.97699999999999998},"min":{"1min":0.60199999999999998,"5min":0.55400000000000005,"15min":0.55400000000000005},"max":{"1min":1.2470000000000001,"5min":2.0790000000000002,"15min":2.0790000000000002},"last":0.94799999999999995}]},{"osd":4,"last update":"Sun Feb 11 16:14:16 2024","interfaces":[{"interface":"back","average":{"1min":0.85999999999999999,"5min":0.93899999999999995,"15min":0.96699999999999997},"min":{"1min":0.65100000000000002,"5min":0.57399999999999995,"15min":0.57399999999999995},"max":{"1min":1.1160000000000001,"5min":2.298,"15min":2.298},"last":0.88},{"interface":"front","average":{"1min":0.88500000000000001,"5min":0.91500000000000004,"15min":0.92200000000000004},"min":{"1min":0.65300000000000002,"5min":0.45700000000000002,"15min":0.45700000000000002},"max":{"1min":1.1559999999999999,"5min":3.4100000000000001,"15min":3.4100000000000001},"last":0.76700000000000002}]},{"osd":5,"last update":"Sun Feb 11 16:14:29 2024","interfaces":[{"interface":"back","average":{"1min":0.96599999999999997,"5min":1.0049999999999999,"15min":1.0149999999999999},"min":{"1min":0.80300000000000005,"5min":0.64900000000000002,"15min":0.64900000000000002},"max":{"1min":1.143,"5min":1.8029999999999999,"15min":1.8029999999999999},"last":0.90800000000000003},{"interface":"front","average":{"1min":1.101,"5min":1.091,"15min":1.101},"min":{"1min":0.88500000000000001,"5min":0.77800000000000002,"15min":0.77800000000000002},"max":{"1min":1.2609999999999999,"5min":2.3650000000000002,"15min":2.3650000000000002},"last":1.0069999999999999}]},{"osd":6,"last update":"Sun Feb 11 16:14:16 2024","interfaces":[{"interface":"back","average":{"1min":0.96799999999999997,"5min":1.0009999999999999,"15min":1.0029999999999999},"min":{"1min":0.73499999999999999,"5min":0.71699999999999997,"15min":0.71699999999999997},"max":{"1min":1.165,"5min":1.694,"15min":1.694},"last":0.97799999999999998},{"interface":"front","average":{"1min":1.103,"5min":1.1160000000000001,"15min":1.1200000000000001},"min":{"1min":0.91600000000000004,"5min":0.78600000000000003,"15min":0.78600000000000003},"max":{"1min":1.3109999999999999,"5min":2.1920000000000002,"15min":2.1920000000000002},"last":1.0740000000000001}]},{"osd":7,"last update":"Sun Feb 11 16:14:39 2024","interfaces":[{"interface":"back","average":{"1min":1.0529999999999999,"5min":1.079,"15min":1.0800000000000001},"min":{"1min":0.84399999999999997,"5min":0.753,"15min":0.753},"max":{"1min":1.3049999999999999,"5min":1.988,"15min":1.988},"last":1.163},{"interface":"front","average":{"1min":1.1919999999999999,"5min":1.228,"15min":1.248},"min":{"1min":0.93999999999999995,"5min":0.89600000000000002,"15min":0.89600000000000002},"max":{"1min":1.4470000000000001,"5min":2.4089999999999998,"15min":2.4089999999999998},"last":1.127}]}]},{"osd":0,"up_from":16,"seq":68719476787,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[1,2,3,4,5,6,7],"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":[{"osd":1,"last update":"Sun Feb 11 16:14:13 2024","interfaces":[{"interface":"back","average":{"1min":0.86099999999999999,"5min":0.85999999999999999,"15min":0.84799999999999998},"min":{"1min":0.59199999999999997,"5min":0.57399999999999995,"15min":0.57399999999999995},"max":{"1min":1.103,"5min":1.3560000000000001,"15min":1.3560000000000001},"last":0.69999999999999996},{"interface":"front","average":{"1min":0.84999999999999998,"5min":0.79400000000000004,"15min":0.77700000000000002},"min":{"1min":0.504,"5min":0.504,"15min":0.504},"max":{"1min":1.105,"5min":1.105,"15min":1.105},"last":0.73699999999999999}]},{"osd":2,"last update":"Sun Feb 11 16:14:08 2024","interfaces":[{"interface":"back","average":{"1min":0.76400000000000001,"5min":0.72099999999999997,"15min":0.70799999999999996},"min":{"1min":0.53800000000000003,"5min":0.38700000000000001,"15min":0.38700000000000001},"max":{"1min":1.165,"5min":1.165,"15min":1.165},"last":0.60299999999999998},{"interface":"front","average":{"1min":0.77600000000000002,"5min":0.80600000000000005,"15min":0.82099999999999995},"min":{"1min":0.63,"5min":0.44600000000000001,"15min":0.44600000000000001},"max":{"1min":1.004,"5min":1.323,"15min":1.323},"last":1.093}]},{"osd":3,"last update":"Sun Feb 11 16:14:18 2024","interfaces":[{"interface":"back","average":{"1min":0.93400000000000005,"5min":0.97199999999999998,"15min":0.98899999999999999},"min":{"1min":0.74199999999999999,"5min":0.70299999999999996,"15min":0.70299999999999996},"max":{"1min":1.1120000000000001,"5min":1.2410000000000001,"15min":1.2410000000000001},"last":0.79900000000000004},{"interface":"front","average":{"1min":0.91400000000000003,"5min":0.874,"15min":0.85599999999999998},"min":{"1min":0.66000000000000003,"5min":0.59499999999999997,"15min":0.59499999999999997},"max":{"1min":1.1299999999999999,"5min":1.1870000000000001,"15min":1.1870000000000001},"last":0.77500000000000002}]},{"osd":4,"last update":"Sun Feb 11 16:14:13 2024","interfaces":[{"interface":"back","average":{"1min":0.98599999999999999,"5min":1.008,"15min":0.997},"min":{"1min":0.81599999999999995,"5min":0.68500000000000005,"15min":0.68500000000000005},"max":{"1min":1.2390000000000001,"5min":1.4410000000000001,"15min":1.4410000000000001},"last":0.93899999999999995},{"interface":"front","average":{"1min":0.90400000000000003,"5min":0.88300000000000001,"15min":0.88300000000000001},"min":{"1min":0.61799999999999999,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.145,"5min":1.1950000000000001,"15min":1.1950000000000001},"last":0.95999999999999996}]},{"osd":5,"last update":"Sun Feb 11 16:14:33 2024","interfaces":[{"interface":"back","average":{"1min":0.96499999999999997,"5min":0.92800000000000005,"15min":0.91800000000000004},"min":{"1min":0.81699999999999995,"5min":0.67400000000000004,"15min":0.67400000000000004},"max":{"1min":1.085,"5min":1.544,"15min":1.544},"last":0.90400000000000003},{"interface":"front","average":{"1min":1.077,"5min":1.097,"15min":1.103},"min":{"1min":0.70599999999999996,"5min":0.65500000000000003,"15min":0.65500000000000003},"max":{"1min":1.266,"5min":1.3919999999999999,"15min":1.3919999999999999},"last":0.89000000000000001}]},{"osd":6,"last update":"Sun Feb 11 16:14:18 2024","interfaces":[{"interface":"back","average":{"1min":1.0549999999999999,"5min":1.105,"15min":1.121},"min":{"1min":0.72899999999999998,"5min":0.57199999999999995,"15min":0.57199999999999995},"max":{"1min":1.288,"5min":2.044,"15min":2.044},"last":0.98899999999999999},{"interface":"front","average":{"1min":1.0349999999999999,"5min":0.95999999999999996,"15min":0.94499999999999995},"min":{"1min":0.76700000000000002,"5min":0.47899999999999998,"15min":0.47899999999999998},"max":{"1min":1.2370000000000001,"5min":1.2370000000000001,"15min":1.2370000000000001},"last":1.0589999999999999}]},{"osd":7,"last update":"Sun Feb 11 16:14:39 2024","interfaces":[{"interface":"back","average":{"1min":1.1759999999999999,"5min":1.153,"15min":1.145},"min":{"1min":1.0489999999999999,"5min":0.84099999999999997,"15min":0.84099999999999997},"max":{"1min":1.3160000000000001,"5min":1.448,"15min":1.448},"last":1.161},{"interface":"front","average":{"1min":1.109,"5min":1.0800000000000001,"15min":1.075},"min":{"1min":0.81899999999999995,"5min":0.81699999999999995,"15min":0.81699999999999995},"max":{"1min":1.351,"5min":1.351,"15min":1.351},"last":1.1870000000000001}]}]},{"osd":1,"up_from":23,"seq":98784247859,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,2,3,4,5,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:15 2024","interfaces":[{"interface":"back","average":{"1min":0.88900000000000001,"5min":0.86099999999999999,"15min":0.86499999999999999},"min":{"1min":0.65300000000000002,"5min":0.59199999999999997,"15min":0.59199999999999997},"max":{"1min":1.0469999999999999,"5min":1.232,"15min":1.232},"last":0.998},{"interface":"front","average":{"1min":0.874,"5min":0.82499999999999996,"15min":0.80600000000000005},"min":{"1min":0.626,"5min":0.56699999999999995,"15min":0.56699999999999995},"max":{"1min":1.046,"5min":1.0700000000000001,"15min":1.0700000000000001},"last":0.57199999999999995}]},{"osd":2,"last update":"Sun Feb 11 16:14:15 2024","interfaces":[{"interface":"back","average":{"1min":0.91100000000000003,"5min":0.873,"15min":0.85099999999999998},"min":{"1min":0.76900000000000002,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.0900000000000001,"5min":1.282,"15min":1.282},"last":0.59999999999999998},{"interface":"front","average":{"1min":0.92600000000000005,"5min":0.89500000000000002,"15min":0.88500000000000001},"min":{"1min":0.72399999999999998,"5min":0.621,"15min":0.621},"max":{"1min":1.1899999999999999,"5min":1.1899999999999999,"15min":1.1899999999999999},"last":0.73299999999999998}]},{"osd":3,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.82099999999999995,"5min":0.71899999999999997,"15min":0.67500000000000004},"min":{"1min":0.53500000000000003,"5min":0.39000000000000001,"15min":0.39000000000000001},"max":{"1min":1.1819999999999999,"5min":1.1819999999999999,"15min":1.1819999999999999},"last":0.80300000000000005},{"interface":"front","average":{"1min":0.90600000000000003,"5min":0.81200000000000006,"15min":0.76300000000000001},"min":{"1min":0.51300000000000001,"5min":0.47099999999999997,"15min":0.47099999999999997},"max":{"1min":1.2030000000000001,"5min":1.2130000000000001,"15min":1.2130000000000001},"last":0.91900000000000004}]},{"osd":4,"last update":"Sun Feb 11 16:14:15 2024","interfaces":[{"interface":"back","average":{"1min":0.97099999999999997,"5min":0.88300000000000001,"15min":0.84499999999999997},"min":{"1min":0.74299999999999999,"5min":0.56000000000000005,"15min":0.56000000000000005},"max":{"1min":1.169,"5min":1.2270000000000001,"15min":1.2270000000000001},"last":0.95199999999999996},{"interface":"front","average":{"1min":0.873,"5min":0.86899999999999999,"15min":0.85899999999999999},"min":{"1min":0.73299999999999998,"5min":0.59799999999999998,"15min":0.59799999999999998},"max":{"1min":1.0489999999999999,"5min":1.1890000000000001,"15min":1.1890000000000001},"last":0.65400000000000003}]},{"osd":5,"last update":"Sun Feb 11 16:14:33 2024","interfaces":[{"interface":"back","average":{"1min":0.86899999999999999,"5min":0.81699999999999995,"15min":0.80300000000000005},"min":{"1min":0.57199999999999995,"5min":0.47399999999999998,"15min":0.47399999999999998},"max":{"1min":1.1819999999999999,"5min":1.248,"15min":1.248},"last":0.69699999999999995},{"interface":"front","average":{"1min":0.84799999999999998,"5min":0.85599999999999998,"15min":0.82599999999999996},"min":{"1min":0.53700000000000003,"5min":0.48099999999999998,"15min":0.48099999999999998},"max":{"1min":1.179,"5min":1.3200000000000001,"15min":1.3200000000000001},"last":0.83099999999999996}]},{"osd":6,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":1.0069999999999999,"5min":0.98299999999999998,"15min":0.96199999999999997},"min":{"1min":0.77300000000000002,"5min":0.60799999999999998,"15min":0.60799999999999998},"max":{"1min":1.2110000000000001,"5min":1.343,"15min":1.343},"last":0.85699999999999998},{"interface":"front","average":{"1min":1.0409999999999999,"5min":1.004,"15min":0.96599999999999997},"min":{"1min":0.73399999999999999,"5min":0.68600000000000005,"15min":0.68600000000000005},"max":{"1min":1.246,"5min":1.387,"15min":1.387},"last":1.034}]},{"osd":7,"last update":"Sun Feb 11 16:14:36 2024","interfaces":[{"interface":"back","average":{"1min":0.98999999999999999,"5min":0.96799999999999997,"15min":0.95199999999999996},"min":{"1min":0.67900000000000005,"5min":0.46500000000000002,"15min":0.46500000000000002},"max":{"1min":1.3340000000000001,"5min":1.3340000000000001,"15min":1.3340000000000001},"last":0.77800000000000002},{"interface":"front","average":{"1min":1.0009999999999999,"5min":0.998,"15min":0.96999999999999997},"min":{"1min":0.59399999999999997,"5min":0.51900000000000002,"15min":0.51900000000000002},"max":{"1min":1.3109999999999999,"5min":1.3759999999999999,"15min":1.3759999999999999},"last":0.89600000000000002}]}]},{"osd":4,"up_from":25,"seq":107374182450,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,5,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:14 2024","interfaces":[{"interface":"back","average":{"1min":0.73999999999999999,"5min":0.68500000000000005,"15min":0.67800000000000005},"min":{"1min":0.55400000000000005,"5min":0.437,"15min":0.437},"max":{"1min":0.97199999999999998,"5min":0.97199999999999998,"15min":0.97199999999999998},"last":0.79000000000000004},{"interface":"front","average":{"1min":0.82599999999999996,"5min":0.78000000000000003,"15min":0.77300000000000002},"min":{"1min":0.624,"5min":0.41499999999999998,"15min":0.41499999999999998},"max":{"1min":1.127,"5min":1.127,"15min":1.127},"last":0.77500000000000002}]},{"osd":1,"last update":"Sun Feb 11 16:14:14 2024","interfaces":[{"interface":"back","average":{"1min":0.90400000000000003,"5min":0.87,"15min":0.85199999999999998},"min":{"1min":0.60499999999999998,"5min":0.60499999999999998,"15min":0.60499999999999998},"max":{"1min":1.1459999999999999,"5min":1.3540000000000001,"15min":1.3540000000000001},"last":0.96999999999999997},{"interface":"front","average":{"1min":0.93200000000000005,"5min":0.86699999999999999,"15min":0.85099999999999998},"min":{"1min":0.75800000000000001,"5min":0.63300000000000001,"15min":0.63300000000000001},"max":{"1min":1.1140000000000001,"5min":1.1140000000000001,"15min":1.1140000000000001},"last":0.69199999999999995}]},{"osd":2,"last update":"Sun Feb 11 16:14:14 2024","interfaces":[{"interface":"back","average":{"1min":0.88800000000000001,"5min":0.79400000000000004,"15min":0.77600000000000002},"min":{"1min":0.629,"5min":0.52500000000000002,"15min":0.52500000000000002},"max":{"1min":1.343,"5min":1.4510000000000001,"15min":1.4510000000000001},"last":1.0509999999999999},{"interface":"front","average":{"1min":0.871,"5min":0.83599999999999997,"15min":0.82899999999999996},"min":{"1min":0.58699999999999997,"5min":0.58699999999999997,"15min":0.58699999999999997},"max":{"1min":1.3160000000000001,"5min":1.3160000000000001,"15min":1.3160000000000001},"last":0.65200000000000002}]},{"osd":3,"last update":"Sun Feb 11 16:14:27 2024","interfaces":[{"interface":"back","average":{"1min":0.89600000000000002,"5min":0.91500000000000004,"15min":0.91600000000000004},"min":{"1min":0.66200000000000003,"5min":0.66200000000000003,"15min":0.66200000000000003},"max":{"1min":1.04,"5min":1.4199999999999999,"15min":1.4199999999999999},"last":0.89300000000000002},{"interface":"front","average":{"1min":1.048,"5min":1.032,"15min":1.026},"min":{"1min":0.81200000000000006,"5min":0.73799999999999999,"15min":0.73799999999999999},"max":{"1min":1.319,"5min":1.492,"15min":1.492},"last":0.94099999999999995}]},{"osd":5,"last update":"Sun Feb 11 16:14:33 2024","interfaces":[{"interface":"back","average":{"1min":1.0920000000000001,"5min":1.085,"15min":1.075},"min":{"1min":0.86899999999999999,"5min":0.70499999999999996,"15min":0.70499999999999996},"max":{"1min":1.2809999999999999,"5min":1.736,"15min":1.736},"last":0.98899999999999999},{"interface":"front","average":{"1min":0.997,"5min":1.0109999999999999,"15min":1.0089999999999999},"min":{"1min":0.77900000000000003,"5min":0.77900000000000003,"15min":0.77900000000000003},"max":{"1min":1.2190000000000001,"5min":1.296,"15min":1.296},"last":0.91500000000000004}]},{"osd":6,"last update":"Sun Feb 11 16:14:27 2024","interfaces":[{"interface":"back","average":{"1min":1.083,"5min":1.056,"15min":1.0449999999999999},"min":{"1min":0.872,"5min":0.57299999999999995,"15min":0.57299999999999995},"max":{"1min":1.3500000000000001,"5min":1.605,"15min":1.605},"last":0.85899999999999999},{"interface":"front","average":{"1min":1.028,"5min":0.98299999999999998,"15min":0.96599999999999997},"min":{"1min":0.69299999999999995,"5min":0.69299999999999995,"15min":0.69299999999999995},"max":{"1min":1.2090000000000001,"5min":1.254,"15min":1.254},"last":0.83099999999999996}]},{"osd":7,"last update":"Sun Feb 11 16:14:37 2024","interfaces":[{"interface":"back","average":{"1min":1.216,"5min":1.175,"15min":1.157},"min":{"1min":0.85299999999999998,"5min":0.74299999999999999,"15min":0.74299999999999999},"max":{"1min":1.6000000000000001,"5min":1.6000000000000001,"15min":1.6000000000000001},"last":1.5069999999999999},{"interface":"front","average":{"1min":1.153,"5min":1.1259999999999999,"15min":1.1200000000000001},"min":{"1min":0.97699999999999998,"5min":0.90800000000000003,"15min":0.90800000000000003},"max":{"1min":1.3480000000000001,"5min":1.9630000000000001,"15min":1.9630000000000001},"last":1.0269999999999999}]}]},{"osd":6,"up_from":29,"seq":124554051633,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,3,4,5,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.69199999999999995,"5min":0.77300000000000002,"15min":0.78800000000000003},"min":{"1min":0.46200000000000002,"5min":0.46200000000000002,"15min":0.46200000000000002},"max":{"1min":1.0429999999999999,"5min":1.327,"15min":1.327},"last":0.58399999999999996},{"interface":"front","average":{"1min":0.88500000000000001,"5min":0.89700000000000002,"15min":0.89800000000000002},"min":{"1min":0.68899999999999995,"5min":0.61399999999999999,"15min":0.61399999999999999},"max":{"1min":1.1599999999999999,"5min":1.2170000000000001,"15min":1.2170000000000001},"last":0.84299999999999997}]},{"osd":1,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.84999999999999998,"5min":0.83299999999999996,"15min":0.82099999999999995},"min":{"1min":0.63300000000000001,"5min":0.48599999999999999,"15min":0.48599999999999999},"max":{"1min":1.099,"5min":1.133,"15min":1.133},"last":0.76500000000000001},{"interface":"front","average":{"1min":0.90500000000000003,"5min":0.90100000000000002,"15min":0.89300000000000002},"min":{"1min":0.629,"5min":0.57699999999999996,"15min":0.57699999999999996},"max":{"1min":1.177,"5min":1.2050000000000001,"15min":1.2050000000000001},"last":0.81999999999999995}]},{"osd":2,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.81000000000000005,"5min":0.84999999999999998,"15min":0.86199999999999999},"min":{"1min":0.61099999999999999,"5min":0.56100000000000005,"15min":0.56100000000000005},"max":{"1min":1.093,"5min":1.238,"15min":1.238},"last":0.71999999999999997},{"interface":"front","average":{"1min":0.86699999999999999,"5min":0.84799999999999998,"15min":0.85499999999999998},"min":{"1min":0.61599999999999999,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":1.1240000000000001,"5min":1.77,"15min":1.77},"last":0.69199999999999995}]},{"osd":3,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.94499999999999995,"5min":0.98399999999999999,"15min":1.002},"min":{"1min":0.73999999999999999,"5min":0.65000000000000002,"15min":0.65000000000000002},"max":{"1min":1.1910000000000001,"5min":1.3400000000000001,"15min":1.3400000000000001},"last":0.879},{"interface":"front","average":{"1min":1.024,"5min":0.96699999999999997,"15min":0.95699999999999996},"min":{"1min":0.76400000000000001,"5min":0.63800000000000001,"15min":0.63800000000000001},"max":{"1min":1.204,"5min":1.2929999999999999,"15min":1.2929999999999999},"last":0.80200000000000005}]},{"osd":4,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.94199999999999995,"5min":0.90900000000000003,"15min":0.90900000000000003},"min":{"1min":0.72599999999999998,"5min":0.53300000000000003,"15min":0.53300000000000003},"max":{"1min":1.0880000000000001,"5min":1.375,"15min":1.375},"last":0.749},{"interface":"front","average":{"1min":0.877,"5min":0.89400000000000002,"15min":0.89900000000000002},"min":{"1min":0.76300000000000001,"5min":0.54400000000000004,"15min":0.54400000000000004},"max":{"1min":1.0669999999999999,"5min":1.2809999999999999,"15min":1.2809999999999999},"last":0.67600000000000005}]},{"osd":5,"last update":"Sun Feb 11 16:14:30 2024","interfaces":[{"interface":"back","average":{"1min":1.0309999999999999,"5min":1.004,"15min":1.0009999999999999},"min":{"1min":0.86099999999999999,"5min":0.63400000000000001,"15min":0.63400000000000001},"max":{"1min":1.1870000000000001,"5min":1.5509999999999999,"15min":1.5509999999999999},"last":0.90200000000000002},{"interface":"front","average":{"1min":1.036,"5min":1.056,"15min":1.0649999999999999},"min":{"1min":0.84099999999999997,"5min":0.755,"15min":0.755},"max":{"1min":1.2869999999999999,"5min":1.3180000000000001,"15min":1.3180000000000001},"last":0.95099999999999996}]},{"osd":7,"last update":"Sun Feb 11 16:14:35 2024","interfaces":[{"interface":"back","average":{"1min":1.1220000000000001,"5min":1.097,"15min":1.0860000000000001},"min":{"1min":0.83599999999999997,"5min":0.746,"15min":0.746},"max":{"1min":1.653,"5min":1.675,"15min":1.675},"last":0.92500000000000004},{"interface":"front","average":{"1min":1.046,"5min":1.073,"15min":1.073},"min":{"1min":0.88200000000000001,"5min":0.68200000000000005,"15min":0.68200000000000005},"max":{"1min":1.23,"5min":1.6259999999999999,"15min":1.6259999999999999},"last":1.089}]}]},{"osd":3,"up_from":30,"seq":128849018929,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":297500,"kb_used_data":404,"kb_used_omap":0,"kb_used_meta":297088,"kb_avail":93443556,"statfs":{"total":95990841344,"available":95686201344,"internally_reserved":0,"allocated":413696,"data_stored":160306,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":304218112},"hb_peers":[0,1,2,4,5,6,7],"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":[{"osd":0,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.78800000000000003,"5min":0.82399999999999995,"15min":0.83399999999999996},"min":{"1min":0.57999999999999996,"5min":0.57999999999999996,"15min":0.57999999999999996},"max":{"1min":0.97399999999999998,"5min":1.135,"15min":1.135},"last":0.78600000000000003},{"interface":"front","average":{"1min":0.874,"5min":0.86499999999999999,"15min":0.85799999999999998},"min":{"1min":0.63800000000000001,"5min":0.47399999999999998,"15min":0.47399999999999998},"max":{"1min":1.135,"5min":1.2,"15min":1.2},"last":0.71199999999999997}]},{"osd":1,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.65700000000000003,"5min":0.63200000000000001,"15min":0.61199999999999999},"min":{"1min":0.50800000000000001,"5min":0.29099999999999998,"15min":0.29099999999999998},"max":{"1min":0.79900000000000004,"5min":1.056,"15min":1.056},"last":0.441},{"interface":"front","average":{"1min":0.748,"5min":0.70999999999999996,"15min":0.68999999999999995},"min":{"1min":0.48899999999999999,"5min":0.374,"15min":0.374},"max":{"1min":1.0169999999999999,"5min":1.3999999999999999,"15min":1.3999999999999999},"last":0.56100000000000005}]},{"osd":2,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.91300000000000003,"5min":0.96399999999999997,"15min":0.98199999999999998},"min":{"1min":0.72499999999999998,"5min":0.47999999999999998,"15min":0.47999999999999998},"max":{"1min":1.222,"5min":1.3100000000000001,"15min":1.3100000000000001},"last":0.85899999999999999},{"interface":"front","average":{"1min":0.95799999999999996,"5min":0.96299999999999997,"15min":0.95299999999999996},"min":{"1min":0.79700000000000004,"5min":0.56200000000000006,"15min":0.56200000000000006},"max":{"1min":1.1279999999999999,"5min":1.3420000000000001,"15min":1.3420000000000001},"last":0.79900000000000004}]},{"osd":4,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":0.92700000000000005,"5min":0.92600000000000005,"15min":0.91500000000000004},"min":{"1min":0.77700000000000002,"5min":0.63600000000000001,"15min":0.63600000000000001},"max":{"1min":1.1379999999999999,"5min":1.169,"15min":1.169},"last":0.69499999999999995},{"interface":"front","average":{"1min":0.85899999999999999,"5min":0.90600000000000003,"15min":0.91000000000000003},"min":{"1min":0.55300000000000005,"5min":0.55300000000000005,"15min":0.55300000000000005},"max":{"1min":1.107,"5min":1.208,"15min":1.208},"last":0.73599999999999999}]},{"osd":5,"last update":"Sun Feb 11 16:14:33 2024","interfaces":[{"interface":"back","average":{"1min":0.90100000000000002,"5min":0.875,"15min":0.85599999999999998},"min":{"1min":0.60299999999999998,"5min":0.45200000000000001,"15min":0.45200000000000001},"max":{"1min":1.343,"5min":1.343,"15min":1.343},"last":0.64300000000000002},{"interface":"front","average":{"1min":0.995,"5min":0.92000000000000004,"15min":0.88700000000000001},"min":{"1min":0.68300000000000005,"5min":0.42599999999999999,"15min":0.42599999999999999},"max":{"1min":1.1839999999999999,"5min":1.3919999999999999,"15min":1.3919999999999999},"last":0.499}]},{"osd":6,"last update":"Sun Feb 11 16:14:22 2024","interfaces":[{"interface":"back","average":{"1min":1.032,"5min":1.042,"15min":1.042},"min":{"1min":0.78900000000000003,"5min":0.63100000000000001,"15min":0.63100000000000001},"max":{"1min":1.214,"5min":1.3440000000000001,"15min":1.3440000000000001},"last":0.75700000000000001},{"interface":"front","average":{"1min":1.05,"5min":1.0489999999999999,"15min":1.0489999999999999},"min":{"1min":0.83799999999999997,"5min":0.53000000000000003,"15min":0.53000000000000003},"max":{"1min":1.294,"5min":1.615,"15min":1.615},"last":0.65300000000000002}]},{"osd":7,"last update":"Sun Feb 11 16:14:36 2024","interfaces":[{"interface":"back","average":{"1min":1.0740000000000001,"5min":1.024,"15min":1.008},"min":{"1min":0.82999999999999996,"5min":0.501,"15min":0.501},"max":{"1min":1.2789999999999999,"5min":1.4730000000000001,"15min":1.4730000000000001},"last":0.61099999999999999},{"interface":"front","average":{"1min":1.054,"5min":1.0029999999999999,"15min":0.98099999999999998},"min":{"1min":0.59699999999999998,"5min":0.51300000000000001,"15min":0.51300000000000001},"max":{"1min":1.266,"5min":1.5589999999999999,"15min":1.5589999999999999},"last":0.54200000000000004}]}]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"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":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"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}]}} 2024-02-11T16:15:07.577 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-02-11T16:15:07.577 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-02-11T16:15:07.577 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-02-11T16:15:07.577 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph health --format=json 2024-02-11T16:15:07.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:07 smithi120 bash[14220]: audit 2024-02-11T16:15:06.744424+0000 mgr.smithi120.tpsohu (mgr.14180) 242 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-11T16:15:08.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:07 smithi183 bash[18593]: audit 2024-02-11T16:15:06.744424+0000 mgr.smithi120.tpsohu (mgr.14180) 242 : audit [DBG] from='client.14492 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-11T16:15:09.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:08 smithi183 bash[18593]: cluster 2024-02-11T16:15:07.540849+0000 mgr.smithi120.tpsohu (mgr.14180) 243 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:09.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:08 smithi120 bash[14220]: cluster 2024-02-11T16:15:07.540849+0000 mgr.smithi120.tpsohu (mgr.14180) 243 : cluster [DBG] pgmap v224: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:11.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:10 smithi183 bash[18593]: cluster 2024-02-11T16:15:09.541426+0000 mgr.smithi120.tpsohu (mgr.14180) 244 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:11.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:10 smithi120 bash[14220]: cluster 2024-02-11T16:15:09.541426+0000 mgr.smithi120.tpsohu (mgr.14180) 244 : cluster [DBG] pgmap v225: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:12.357 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring config /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/mon.smithi120/config 2024-02-11T16:15:13.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:12 smithi183 bash[18593]: cluster 2024-02-11T16:15:11.542030+0000 mgr.smithi120.tpsohu (mgr.14180) 245 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:12 smithi120 bash[14220]: cluster 2024-02-11T16:15:11.542030+0000 mgr.smithi120.tpsohu (mgr.14180) 245 : cluster [DBG] pgmap v226: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:15.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:14 smithi183 bash[18593]: cluster 2024-02-11T16:15:13.542672+0000 mgr.smithi120.tpsohu (mgr.14180) 246 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:15.146 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:14 smithi120 bash[14220]: cluster 2024-02-11T16:15:13.542672+0000 mgr.smithi120.tpsohu (mgr.14180) 246 : cluster [DBG] pgmap v227: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:15.586 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:15:15.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:15 smithi120 bash[14220]: audit 2024-02-11T16:15:15.585803+0000 mon.smithi120 (mon.0) 615 : audit [DBG] from='client.? 172.21.15.120:0/3051892488' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-11T16:15:16.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:15 smithi183 bash[18593]: audit 2024-02-11T16:15:15.585803+0000 mon.smithi120 (mon.0) 615 : audit [DBG] from='client.? 172.21.15.120:0/3051892488' entity='client.admin' cmd=[{"prefix": "health", "format": "json"}]: dispatch 2024-02-11T16:15:16.373 INFO:teuthology.orchestra.run.smithi120.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-02-11T16:15:16.374 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-02-11T16:15:16.374 INFO:tasks.cephadm:Setup complete, yielding 2024-02-11T16:15:16.374 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-11T16:15:16.384 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T16:15:16.384 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- bash -c 'ceph orch status' 2024-02-11T16:15:17.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:16 smithi183 bash[18593]: cluster 2024-02-11T16:15:15.543206+0000 mgr.smithi120.tpsohu (mgr.14180) 247 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:17.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:16 smithi120 bash[14220]: cluster 2024-02-11T16:15:15.543206+0000 mgr.smithi120.tpsohu (mgr.14180) 247 : cluster [DBG] pgmap v228: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:18.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:18 smithi120 bash[14220]: cluster 2024-02-11T16:15:17.543649+0000 mgr.smithi120.tpsohu (mgr.14180) 248 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:19.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:18 smithi183 bash[18593]: cluster 2024-02-11T16:15:17.543649+0000 mgr.smithi120.tpsohu (mgr.14180) 248 : cluster [DBG] pgmap v229: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:19.719 INFO:teuthology.orchestra.run.smithi120.stdout:Backend: cephadm 2024-02-11T16:15:19.719 INFO:teuthology.orchestra.run.smithi120.stdout:Available: Yes 2024-02-11T16:15:19.719 INFO:teuthology.orchestra.run.smithi120.stdout:Paused: No 2024-02-11T16:15:20.554 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- bash -c 'ceph orch ps' 2024-02-11T16:15:20.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:20 smithi120 bash[14220]: cluster 2024-02-11T16:15:19.544164+0000 mgr.smithi120.tpsohu (mgr.14180) 249 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:20.927 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:20 smithi120 bash[14220]: audit 2024-02-11T16:15:19.718532+0000 mgr.smithi120.tpsohu (mgr.14180) 250 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:21.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:20 smithi183 bash[18593]: cluster 2024-02-11T16:15:19.544164+0000 mgr.smithi120.tpsohu (mgr.14180) 249 : cluster [DBG] pgmap v230: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:21.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:20 smithi183 bash[18593]: audit 2024-02-11T16:15:19.718532+0000 mgr.smithi120.tpsohu (mgr.14180) 250 : audit [DBG] from='client.14500 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:23.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:22 smithi183 bash[18593]: cluster 2024-02-11T16:15:21.544830+0000 mgr.smithi120.tpsohu (mgr.14180) 251 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:23.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:22 smithi120 bash[14220]: cluster 2024-02-11T16:15:21.544830+0000 mgr.smithi120.tpsohu (mgr.14180) 251 : cluster [DBG] pgmap v231: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:24.090 INFO:teuthology.orchestra.run.smithi120.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-02-11T16:15:24.091 INFO:teuthology.orchestra.run.smithi120.stdout:alertmanager.smithi120 smithi120 *:9093,9094 running (5m) 45s ago 7m 12.5M - 0.23.0 ba2b418f427c 3db24fffbb9f 2024-02-11T16:15:24.091 INFO:teuthology.orchestra.run.smithi120.stdout:crash.smithi120 smithi120 running (7m) 45s ago 7m 6956k - 16.2.14-530-g5db25abe b2573f70982b dc285610aeaf 2024-02-11T16:15:24.091 INFO:teuthology.orchestra.run.smithi120.stdout:crash.smithi183 smithi183 running (6m) 46s ago 6m 7063k - 16.2.14-530-g5db25abe b2573f70982b 604839e2cb51 2024-02-11T16:15:24.091 INFO:teuthology.orchestra.run.smithi120.stdout:grafana.smithi120 smithi120 *:3000 running (5m) 45s ago 6m 40.5M - 8.3.5 dad864ee21e9 ed80c6895f1c 2024-02-11T16:15:24.091 INFO:teuthology.orchestra.run.smithi120.stdout:mgr.smithi120.tpsohu smithi120 *:9283 running (8m) 45s ago 8m 428M - 16.2.14-530-g5db25abe b2573f70982b aaf7a11abfbd 2024-02-11T16:15:24.091 INFO:teuthology.orchestra.run.smithi120.stdout:mgr.smithi183.pltuwd smithi183 *:8443,9283 running (6m) 46s ago 6m 374M - 16.2.14-530-g5db25abe b2573f70982b 3e8cc8d301ce 2024-02-11T16:15:24.091 INFO:teuthology.orchestra.run.smithi120.stdout:mon.smithi120 smithi120 running (8m) 45s ago 8m 59.7M 2048M 16.2.14-530-g5db25abe b2573f70982b 8de6722b4195 2024-02-11T16:15:24.091 INFO:teuthology.orchestra.run.smithi120.stdout:mon.smithi183 smithi183 running (6m) 46s ago 6m 58.2M 2048M 16.2.14-530-g5db25abe b2573f70982b c42061dbc095 2024-02-11T16:15:24.091 INFO:teuthology.orchestra.run.smithi120.stdout:node-exporter.smithi120 smithi120 *:9100 running (6m) 45s ago 6m 9956k - 1.3.1 1dbe0e931976 08e793f0cb76 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:node-exporter.smithi183 smithi183 *:9100 running (5m) 46s ago 6m 9.97M - 1.3.1 1dbe0e931976 896aee7a9ee9 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:osd.0 smithi183 running (4m) 46s ago 4m 32.8M 4028M 16.2.14-530-g5db25abe b2573f70982b 65cb96d81f18 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:osd.1 smithi120 running (4m) 45s ago 4m 33.4M 3260M 16.2.14-530-g5db25abe b2573f70982b 9f330db8baf9 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:osd.2 smithi183 running (4m) 46s ago 4m 33.2M 4028M 16.2.14-530-g5db25abe b2573f70982b 63b3e3dd4774 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:osd.3 smithi120 running (4m) 45s ago 4m 34.0M 3260M 16.2.14-530-g5db25abe b2573f70982b bbd5f94b65d4 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:osd.4 smithi183 running (4m) 46s ago 4m 34.9M 4028M 16.2.14-530-g5db25abe b2573f70982b f4172db8d6ad 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:osd.5 smithi120 running (4m) 45s ago 4m 32.4M 3260M 16.2.14-530-g5db25abe b2573f70982b efe6729b5d06 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:osd.6 smithi183 running (4m) 46s ago 4m 32.6M 4028M 16.2.14-530-g5db25abe b2573f70982b b92a62ab26b4 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:osd.7 smithi120 running (3m) 45s ago 4m 33.3M 3260M 16.2.14-530-g5db25abe b2573f70982b e587bcae6953 2024-02-11T16:15:24.092 INFO:teuthology.orchestra.run.smithi120.stdout:prometheus.smithi120 smithi120 *:9095 running (5m) 45s ago 6m 53.0M - 2.33.4 514e6a882f6e 23fac31959fa 2024-02-11T16:15:24.915 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- bash -c 'ceph orch ls' 2024-02-11T16:15:25.107 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:24 smithi120 bash[14220]: cluster 2024-02-11T16:15:23.545444+0000 mgr.smithi120.tpsohu (mgr.14180) 252 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:25.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:24 smithi183 bash[18593]: cluster 2024-02-11T16:15:23.545444+0000 mgr.smithi120.tpsohu (mgr.14180) 252 : cluster [DBG] pgmap v232: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:26.095 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:25 smithi120 bash[14220]: audit 2024-02-11T16:15:24.070196+0000 mgr.smithi120.tpsohu (mgr.14180) 253 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:26.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:25 smithi183 bash[18593]: audit 2024-02-11T16:15:24.070196+0000 mgr.smithi120.tpsohu (mgr.14180) 253 : audit [DBG] from='client.14504 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:27.035 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:26 smithi120 bash[14220]: cluster 2024-02-11T16:15:25.546163+0000 mgr.smithi120.tpsohu (mgr.14180) 254 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:27.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:26 smithi183 bash[18593]: cluster 2024-02-11T16:15:25.546163+0000 mgr.smithi120.tpsohu (mgr.14180) 254 : cluster [DBG] pgmap v233: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:28.332 INFO:teuthology.orchestra.run.smithi120.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-02-11T16:15:28.332 INFO:teuthology.orchestra.run.smithi120.stdout:alertmanager ?:9093,9094 1/1 50s ago 8m count:1 2024-02-11T16:15:28.332 INFO:teuthology.orchestra.run.smithi120.stdout:crash 2/2 50s ago 8m * 2024-02-11T16:15:28.332 INFO:teuthology.orchestra.run.smithi120.stdout:grafana ?:3000 1/1 50s ago 8m count:1 2024-02-11T16:15:28.332 INFO:teuthology.orchestra.run.smithi120.stdout:mgr 2/2 50s ago 8m count:2 2024-02-11T16:15:28.333 INFO:teuthology.orchestra.run.smithi120.stdout:mon 2/2 50s ago 6m smithi120:172.21.15.120=smithi120;smithi183:172.21.15.183=smithi183;count:2 2024-02-11T16:15:28.333 INFO:teuthology.orchestra.run.smithi120.stdout:node-exporter ?:9100 2/2 50s ago 8m * 2024-02-11T16:15:28.333 INFO:teuthology.orchestra.run.smithi120.stdout:osd.all-available-devices 8 50s ago 5m * 2024-02-11T16:15:28.333 INFO:teuthology.orchestra.run.smithi120.stdout:prometheus ?:9095 1/1 50s ago 8m count:1 2024-02-11T16:15:28.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:28 smithi120 bash[14220]: cluster 2024-02-11T16:15:27.546775+0000 mgr.smithi120.tpsohu (mgr.14180) 255 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:29.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:28 smithi183 bash[18593]: cluster 2024-02-11T16:15:27.546775+0000 mgr.smithi120.tpsohu (mgr.14180) 255 : cluster [DBG] pgmap v234: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:29.127 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- bash -c 'ceph orch host ls' 2024-02-11T16:15:30.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:29 smithi183 bash[18593]: audit 2024-02-11T16:15:28.320174+0000 mgr.smithi120.tpsohu (mgr.14180) 256 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:30.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:29 smithi120 bash[14220]: audit 2024-02-11T16:15:28.320174+0000 mgr.smithi120.tpsohu (mgr.14180) 256 : audit [DBG] from='client.14508 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:30.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:30 smithi120 bash[14220]: cluster 2024-02-11T16:15:29.547375+0000 mgr.smithi120.tpsohu (mgr.14180) 257 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:31.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:30 smithi183 bash[18593]: cluster 2024-02-11T16:15:29.547375+0000 mgr.smithi120.tpsohu (mgr.14180) 257 : cluster [DBG] pgmap v235: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:32.467 INFO:teuthology.orchestra.run.smithi120.stdout:HOST ADDR LABELS STATUS 2024-02-11T16:15:32.467 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 172.21.15.120 2024-02-11T16:15:32.467 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 172.21.15.183 2024-02-11T16:15:32.467 INFO:teuthology.orchestra.run.smithi120.stdout:2 hosts in cluster 2024-02-11T16:15:32.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:32 smithi120 bash[14220]: cluster 2024-02-11T16:15:31.548033+0000 mgr.smithi120.tpsohu (mgr.14180) 258 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:33.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:32 smithi183 bash[18593]: cluster 2024-02-11T16:15:31.548033+0000 mgr.smithi120.tpsohu (mgr.14180) 258 : cluster [DBG] pgmap v236: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:33.285 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- bash -c 'ceph orch device ls' 2024-02-11T16:15:34.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:33 smithi183 bash[18593]: audit 2024-02-11T16:15:32.465082+0000 mgr.smithi120.tpsohu (mgr.14180) 259 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:34.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:33 smithi120 bash[14220]: audit 2024-02-11T16:15:32.465082+0000 mgr.smithi120.tpsohu (mgr.14180) 259 : audit [DBG] from='client.14512 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:35.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:34 smithi183 bash[18593]: cluster 2024-02-11T16:15:33.548666+0000 mgr.smithi120.tpsohu (mgr.14180) 260 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:35.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:34 smithi120 bash[14220]: cluster 2024-02-11T16:15:33.548666+0000 mgr.smithi120.tpsohu (mgr.14180) 260 : cluster [DBG] pgmap v237: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:36.729 INFO:teuthology.orchestra.run.smithi120.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-11T16:15:36.729 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_PHFT620400XV400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-11T16:15:36.729 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme1n1 ssd Linux_840d61aa891b5a963075 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:36.729 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme2n1 ssd Linux_b5999e028d2c595e5324 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:36.730 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme3n1 ssd Linux_2c950a43a98641cea6fa 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:36.730 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme4n1 ssd Linux_e73c7c3d0afc4b789746 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:36.730 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_PHFT620500QJ400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-11T16:15:36.730 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme1n1 ssd Linux_5be0187fc736ac2dd723 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:36.730 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme2n1 ssd Linux_283bb742646a7eb4da2e 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:36.730 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme3n1 ssd Linux_230992e272c9add06f78 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:36.730 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme4n1 ssd Linux_c9b300b5f454d6c643c1 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:37.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:36 smithi183 bash[18593]: cluster 2024-02-11T16:15:35.549307+0000 mgr.smithi120.tpsohu (mgr.14180) 261 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:37.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:36 smithi120 bash[14220]: cluster 2024-02-11T16:15:35.549307+0000 mgr.smithi120.tpsohu (mgr.14180) 261 : cluster [DBG] pgmap v238: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:37.511 INFO:teuthology.run_tasks:Running task vip... 2024-02-11T16:15:37.522 INFO:tasks.vip:Allocating static IPs for each host... 2024-02-11T16:15:37.522 INFO:tasks.vip:peername 172.21.15.120 2024-02-11T16:15:37.525 INFO:tasks.vip:172.21.15.120 in 172.21.0.0/20, pos 3959 2024-02-11T16:15:37.530 INFO:tasks.vip:smithi120.front.sepia.ceph.com static 10.0.15.120, vnet 10.0.0.0/16 2024-02-11T16:15:37.530 INFO:tasks.vip:VIPs are {map(str, vips)} 2024-02-11T16:15:37.530 DEBUG:teuthology.orchestra.run.smithi120:> sudo ip route ls 2024-02-11T16:15:37.545 INFO:teuthology.orchestra.run.smithi120.stdout:default via 172.21.15.254 dev enp3s0f1 2024-02-11T16:15:37.546 INFO:teuthology.orchestra.run.smithi120.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.120 metric 100 2024-02-11T16:15:37.546 INFO:teuthology.orchestra.run.smithi120.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-11T16:15:37.546 INFO:teuthology.orchestra.run.smithi120.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.120 2024-02-11T16:15:37.546 INFO:teuthology.orchestra.run.smithi120.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.120 metric 100 2024-02-11T16:15:37.547 INFO:tasks.vip:Configuring 10.0.15.120 on smithi120.front.sepia.ceph.com iface enp3s0f1... 2024-02-11T16:15:37.547 DEBUG:teuthology.orchestra.run.smithi120:> sudo ip addr add 10.0.15.120/16 dev enp3s0f1 2024-02-11T16:15:37.604 INFO:tasks.vip:peername 172.21.15.183 2024-02-11T16:15:37.607 INFO:tasks.vip:172.21.15.183 in 172.21.0.0/20, pos 4022 2024-02-11T16:15:37.611 INFO:tasks.vip:smithi183.front.sepia.ceph.com static 10.0.15.183, vnet 10.0.0.0/16 2024-02-11T16:15:37.611 DEBUG:teuthology.orchestra.run.smithi183:> sudo ip route ls 2024-02-11T16:15:37.625 INFO:teuthology.orchestra.run.smithi183.stdout:default via 172.21.15.254 dev enp3s0f1 2024-02-11T16:15:37.625 INFO:teuthology.orchestra.run.smithi183.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.183 metric 100 2024-02-11T16:15:37.625 INFO:teuthology.orchestra.run.smithi183.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-02-11T16:15:37.625 INFO:teuthology.orchestra.run.smithi183.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.183 2024-02-11T16:15:37.626 INFO:teuthology.orchestra.run.smithi183.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.183 metric 100 2024-02-11T16:15:37.626 INFO:tasks.vip:Configuring 10.0.15.183 on smithi183.front.sepia.ceph.com iface enp3s0f1... 2024-02-11T16:15:37.626 DEBUG:teuthology.orchestra.run.smithi183:> sudo ip addr add 10.0.15.183/16 dev enp3s0f1 2024-02-11T16:15:37.684 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-11T16:15:37.693 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T16:15:37.693 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- bash -c 'ceph orch device ls --refresh' 2024-02-11T16:15:38.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:37 smithi183 bash[18593]: audit 2024-02-11T16:15:36.719965+0000 mgr.smithi120.tpsohu (mgr.14180) 262 : audit [DBG] from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:38.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:37 smithi120 bash[14220]: audit 2024-02-11T16:15:36.719965+0000 mgr.smithi120.tpsohu (mgr.14180) 262 : audit [DBG] from='client.14516 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:39.037 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:38 smithi120 bash[14220]: cluster 2024-02-11T16:15:37.550006+0000 mgr.smithi120.tpsohu (mgr.14180) 263 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:39.038 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:38 smithi120 bash[14220]: audit 2024-02-11T16:15:38.604072+0000 mon.smithi120 (mon.0) 616 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:15:39.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:38 smithi183 bash[18593]: cluster 2024-02-11T16:15:37.550006+0000 mgr.smithi120.tpsohu (mgr.14180) 263 : cluster [DBG] pgmap v239: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:39.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:38 smithi183 bash[18593]: audit 2024-02-11T16:15:38.604072+0000 mon.smithi120 (mon.0) 616 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:15:41.043 INFO:teuthology.orchestra.run.smithi120.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-02-11T16:15:41.043 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_PHFT620400XV400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-11T16:15:41.043 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme1n1 ssd Linux_840d61aa891b5a963075 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:41.043 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme2n1 ssd Linux_b5999e028d2c595e5324 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:41.043 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme3n1 ssd Linux_2c950a43a98641cea6fa 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:41.044 INFO:teuthology.orchestra.run.smithi120.stdout:smithi120 /dev/nvme4n1 ssd Linux_e73c7c3d0afc4b789746 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:41.044 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme0n1 ssd INTEL SSDPEDMD400G4_PHFT620500QJ400BGN 372G 3m ago Has a FileSystem, LVM detected 2024-02-11T16:15:41.044 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme1n1 ssd Linux_5be0187fc736ac2dd723 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:41.044 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme2n1 ssd Linux_283bb742646a7eb4da2e 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:41.044 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme3n1 ssd Linux_230992e272c9add06f78 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:41.044 INFO:teuthology.orchestra.run.smithi120.stdout:smithi183 /dev/nvme4n1 ssd Linux_c9b300b5f454d6c643c1 89.4G 3m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-02-11T16:15:41.075 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:40 smithi120 bash[14220]: cluster 2024-02-11T16:15:39.550402+0000 mgr.smithi120.tpsohu (mgr.14180) 264 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:41.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:40 smithi183 bash[18593]: cluster 2024-02-11T16:15:39.550402+0000 mgr.smithi120.tpsohu (mgr.14180) 264 : cluster [DBG] pgmap v240: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:41.838 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-11T16:15:41.847 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T16:15:41.847 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-11T16:15:41.861 INFO:teuthology.orchestra.run.smithi120.stderr:+ systemctl stop nfs-server 2024-02-11T16:15:41.989 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi183.front.sepia.ceph.com 2024-02-11T16:15:41.989 DEBUG:teuthology.orchestra.run.smithi183:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-02-11T16:15:42.003 INFO:teuthology.orchestra.run.smithi183.stderr:+ systemctl stop nfs-server 2024-02-11T16:15:42.153 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-11T16:15:42.162 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T16:15:42.162 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-02-11T16:15:43.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:42 smithi183 bash[18593]: audit 2024-02-11T16:15:41.033714+0000 mgr.smithi120.tpsohu (mgr.14180) 265 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:43.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:42 smithi183 bash[18593]: cluster 2024-02-11T16:15:41.550902+0000 mgr.smithi120.tpsohu (mgr.14180) 266 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:43.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:42 smithi120 bash[14220]: audit 2024-02-11T16:15:41.033714+0000 mgr.smithi120.tpsohu (mgr.14180) 265 : audit [DBG] from='client.14520 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:43.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:42 smithi120 bash[14220]: cluster 2024-02-11T16:15:41.550902+0000 mgr.smithi120.tpsohu (mgr.14180) 266 : cluster [DBG] pgmap v241: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:45.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:44 smithi183 bash[18593]: cluster 2024-02-11T16:15:43.551461+0000 mgr.smithi120.tpsohu (mgr.14180) 267 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:45.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:44 smithi183 bash[18593]: audit 2024-02-11T16:15:44.012776+0000 mon.smithi120 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:45.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:44 smithi120 bash[14220]: cluster 2024-02-11T16:15:43.551461+0000 mgr.smithi120.tpsohu (mgr.14180) 267 : cluster [DBG] pgmap v242: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:45.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:44 smithi120 bash[14220]: audit 2024-02-11T16:15:44.012776+0000 mon.smithi120 (mon.0) 617 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:45.626 INFO:teuthology.orchestra.run.smithi120.stdout:Scheduled rgw.foorgw update... 2024-02-11T16:15:46.451 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.120/16' 2024-02-11T16:15:46.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:46 smithi120 bash[14220]: cluster 2024-02-11T16:15:45.552004+0000 mgr.smithi120.tpsohu (mgr.14180) 268 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:46.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:46 smithi120 bash[14220]: audit 2024-02-11T16:15:45.617939+0000 mgr.smithi120.tpsohu (mgr.14180) 269 : audit [DBG] from='client.14524 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:46.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:46 smithi120 bash[14220]: cephadm 2024-02-11T16:15:45.619313+0000 mgr.smithi120.tpsohu (mgr.14180) 270 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-11T16:15:46.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:46 smithi120 bash[14220]: audit 2024-02-11T16:15:45.624938+0000 mon.smithi120 (mon.0) 618 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:46.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:46 smithi120 bash[14220]: audit 2024-02-11T16:15:45.888887+0000 mon.smithi120 (mon.0) 619 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:47.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:46 smithi183 bash[18593]: cluster 2024-02-11T16:15:45.552004+0000 mgr.smithi120.tpsohu (mgr.14180) 268 : cluster [DBG] pgmap v243: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:47.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:46 smithi183 bash[18593]: audit 2024-02-11T16:15:45.617939+0000 mgr.smithi120.tpsohu (mgr.14180) 269 : audit [DBG] from='client.14524 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:47.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:46 smithi183 bash[18593]: cephadm 2024-02-11T16:15:45.619313+0000 mgr.smithi120.tpsohu (mgr.14180) 270 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-11T16:15:47.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:46 smithi183 bash[18593]: audit 2024-02-11T16:15:45.624938+0000 mon.smithi120 (mon.0) 618 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:47.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:46 smithi183 bash[18593]: audit 2024-02-11T16:15:45.888887+0000 mon.smithi120 (mon.0) 619 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:48.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:48 smithi120 bash[14220]: cluster 2024-02-11T16:15:47.552678+0000 mgr.smithi120.tpsohu (mgr.14180) 271 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:49.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:48 smithi183 bash[18593]: cluster 2024-02-11T16:15:47.552678+0000 mgr.smithi120.tpsohu (mgr.14180) 271 : cluster [DBG] pgmap v244: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:50.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:50 smithi120 bash[14220]: cluster 2024-02-11T16:15:49.553252+0000 mgr.smithi120.tpsohu (mgr.14180) 272 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:50.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:50 smithi120 bash[14220]: audit 2024-02-11T16:15:49.822993+0000 mgr.smithi120.tpsohu (mgr.14180) 273 : audit [DBG] from='client.14528 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.120/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:50.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:50 smithi120 bash[14220]: audit 2024-02-11T16:15:49.825967+0000 mon.smithi120 (mon.0) 620 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-11T16:15:51.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:50 smithi183 bash[18593]: cluster 2024-02-11T16:15:49.553252+0000 mgr.smithi120.tpsohu (mgr.14180) 272 : cluster [DBG] pgmap v245: 1 pgs: 1 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:51.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:50 smithi183 bash[18593]: audit 2024-02-11T16:15:49.822993+0000 mgr.smithi120.tpsohu (mgr.14180) 273 : audit [DBG] from='client.14528 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.120/16", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:15:51.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:50 smithi183 bash[18593]: audit 2024-02-11T16:15:49.825967+0000 mon.smithi120 (mon.0) 620 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pool create", "pool": ".nfs"}]: dispatch 2024-02-11T16:15:51.703 INFO:teuthology.orchestra.run.smithi120.stdout:NFS Cluster Created Successfully 2024-02-11T16:15:51.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:51 smithi183 bash[18593]: audit 2024-02-11T16:15:50.646257+0000 mon.smithi120 (mon.0) 621 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-11T16:15:51.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:51 smithi183 bash[18593]: cluster 2024-02-11T16:15:50.646323+0000 mon.smithi120 (mon.0) 622 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-11T16:15:51.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:51 smithi183 bash[18593]: audit 2024-02-11T16:15:50.649509+0000 mon.smithi120 (mon.0) 623 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-11T16:15:51.943 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:51 smithi120 bash[14220]: audit 2024-02-11T16:15:50.646257+0000 mon.smithi120 (mon.0) 621 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pool create", "pool": ".nfs"}]': finished 2024-02-11T16:15:51.943 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:51 smithi120 bash[14220]: cluster 2024-02-11T16:15:50.646323+0000 mon.smithi120 (mon.0) 622 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-02-11T16:15:51.943 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:51 smithi120 bash[14220]: audit 2024-02-11T16:15:50.649509+0000 mon.smithi120 (mon.0) 623 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]: dispatch 2024-02-11T16:15:52.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:52 smithi120 bash[14220]: cluster 2024-02-11T16:15:51.553924+0000 mgr.smithi120.tpsohu (mgr.14180) 274 : cluster [DBG] pgmap v247: 33 pgs: 10 creating+peering, 1 active+clean, 22 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:52.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:52 smithi120 bash[14220]: audit 2024-02-11T16:15:51.660385+0000 mon.smithi120 (mon.0) 624 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-11T16:15:52.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:52 smithi120 bash[14220]: cluster 2024-02-11T16:15:51.660582+0000 mon.smithi120 (mon.0) 625 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-11T16:15:52.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:52 smithi120 bash[14220]: cephadm 2024-02-11T16:15:51.692983+0000 mgr.smithi120.tpsohu (mgr.14180) 275 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-11T16:15:52.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:52 smithi120 bash[14220]: audit 2024-02-11T16:15:51.696820+0000 mon.smithi120 (mon.0) 626 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:52.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:52 smithi120 bash[14220]: cephadm 2024-02-11T16:15:51.698984+0000 mgr.smithi120.tpsohu (mgr.14180) 276 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-11T16:15:52.905 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:52 smithi120 bash[14220]: audit 2024-02-11T16:15:51.702079+0000 mon.smithi120 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:53.007 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-11T16:15:53.016 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T16:15:53.016 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-02-11T16:15:53.031 INFO:teuthology.orchestra.run.smithi120.stderr:+ dnf install -y python3-boto3 2024-02-11T16:15:53.031 INFO:teuthology.orchestra.run.smithi120.stderr:bash: dnf: command not found 2024-02-11T16:15:53.031 INFO:teuthology.orchestra.run.smithi120.stderr:+ apt install -y python3-boto3 2024-02-11T16:15:53.037 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:15:53.037 INFO:teuthology.orchestra.run.smithi120.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-02-11T16:15:53.037 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:15:53.096 INFO:teuthology.orchestra.run.smithi120.stdout:Reading package lists... 2024-02-11T16:15:53.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:52 smithi183 bash[18593]: cluster 2024-02-11T16:15:51.553924+0000 mgr.smithi120.tpsohu (mgr.14180) 274 : cluster [DBG] pgmap v247: 33 pgs: 10 creating+peering, 1 active+clean, 22 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:53.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:52 smithi183 bash[18593]: audit 2024-02-11T16:15:51.660385+0000 mon.smithi120 (mon.0) 624 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-02-11T16:15:53.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:52 smithi183 bash[18593]: cluster 2024-02-11T16:15:51.660582+0000 mon.smithi120 (mon.0) 625 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-02-11T16:15:53.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:52 smithi183 bash[18593]: cephadm 2024-02-11T16:15:51.692983+0000 mgr.smithi120.tpsohu (mgr.14180) 275 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-02-11T16:15:53.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:52 smithi183 bash[18593]: audit 2024-02-11T16:15:51.696820+0000 mon.smithi120 (mon.0) 626 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:53.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:52 smithi183 bash[18593]: cephadm 2024-02-11T16:15:51.698984+0000 mgr.smithi120.tpsohu (mgr.14180) 276 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-02-11T16:15:53.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:52 smithi183 bash[18593]: audit 2024-02-11T16:15:51.702079+0000 mon.smithi120 (mon.0) 627 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:53.330 INFO:teuthology.orchestra.run.smithi120.stdout:Building dependency tree... 2024-02-11T16:15:53.331 INFO:teuthology.orchestra.run.smithi120.stdout:Reading state information... 2024-02-11T16:15:53.546 INFO:teuthology.orchestra.run.smithi120.stdout:The following additional packages will be installed: 2024-02-11T16:15:53.547 INFO:teuthology.orchestra.run.smithi120.stdout: docutils-common libpaper-utils libpaper1 python3-botocore python3-docutils 2024-02-11T16:15:53.547 INFO:teuthology.orchestra.run.smithi120.stdout: python3-jmespath python3-pygments python3-roman python3-s3transfer 2024-02-11T16:15:53.548 INFO:teuthology.orchestra.run.smithi120.stdout:Suggested packages: 2024-02-11T16:15:53.548 INFO:teuthology.orchestra.run.smithi120.stdout: docutils-doc fonts-linuxlibertine | ttf-linux-libertine texlive-lang-french 2024-02-11T16:15:53.548 INFO:teuthology.orchestra.run.smithi120.stdout: texlive-latex-base texlive-latex-recommended python-pygments-doc 2024-02-11T16:15:53.584 INFO:teuthology.orchestra.run.smithi120.stdout:The following NEW packages will be installed: 2024-02-11T16:15:53.586 INFO:teuthology.orchestra.run.smithi120.stdout: docutils-common libpaper-utils libpaper1 python3-boto3 python3-botocore 2024-02-11T16:15:53.586 INFO:teuthology.orchestra.run.smithi120.stdout: python3-docutils python3-jmespath python3-pygments python3-roman 2024-02-11T16:15:53.586 INFO:teuthology.orchestra.run.smithi120.stdout: python3-s3transfer 2024-02-11T16:15:53.773 INFO:teuthology.orchestra.run.smithi120.stdout:0 upgraded, 10 newly installed, 0 to remove and 266 not upgraded. 2024-02-11T16:15:53.773 INFO:teuthology.orchestra.run.smithi120.stdout:Need to get 4,480 kB of archives. 2024-02-11T16:15:53.773 INFO:teuthology.orchestra.run.smithi120.stdout:After this operation, 53.0 MB of additional disk space will be used. 2024-02-11T16:15:53.773 INFO:teuthology.orchestra.run.smithi120.stdout:Get:1 http://archive.ubuntu.com/ubuntu focal/main amd64 docutils-common all 0.16+dfsg-2 [116 kB] 2024-02-11T16:15:53.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:53 smithi183 bash[18593]: cluster 2024-02-11T16:15:52.665046+0000 mon.smithi120 (mon.0) 628 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-11T16:15:53.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:53 smithi120 bash[14220]: cluster 2024-02-11T16:15:52.665046+0000 mon.smithi120 (mon.0) 628 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-02-11T16:15:54.138 INFO:teuthology.orchestra.run.smithi120.stdout:Get:2 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper1 amd64 1.1.28 [13.0 kB] 2024-02-11T16:15:54.144 INFO:teuthology.orchestra.run.smithi120.stdout:Get:3 http://archive.ubuntu.com/ubuntu focal/main amd64 libpaper-utils amd64 1.1.28 [8,400 B] 2024-02-11T16:15:54.148 INFO:teuthology.orchestra.run.smithi120.stdout:Get:4 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-roman all 2.0.0-3build1 [8,728 B] 2024-02-11T16:15:54.165 INFO:teuthology.orchestra.run.smithi120.stdout:Get:5 http://archive.ubuntu.com/ubuntu focal/main amd64 python3-docutils all 0.16+dfsg-2 [368 kB] 2024-02-11T16:15:54.347 INFO:teuthology.orchestra.run.smithi120.stdout:Get:6 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-jmespath all 0.9.4-2ubuntu1 [21.5 kB] 2024-02-11T16:15:54.347 INFO:teuthology.orchestra.run.smithi120.stdout:Get:7 http://archive.ubuntu.com/ubuntu focal-updates/universe amd64 python3-botocore all 1.16.19+repack-1ubuntu0.20.04.1 [3,255 kB] 2024-02-11T16:15:54.572 INFO:teuthology.orchestra.run.smithi120.stdout:Get:8 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-s3transfer all 0.3.3-1 [46.6 kB] 2024-02-11T16:15:54.573 INFO:teuthology.orchestra.run.smithi120.stdout:Get:9 http://archive.ubuntu.com/ubuntu focal/universe amd64 python3-boto3 all 1.9.253-1 [63.7 kB] 2024-02-11T16:15:54.574 INFO:teuthology.orchestra.run.smithi120.stdout:Get:10 http://archive.ubuntu.com/ubuntu focal-updates/main amd64 python3-pygments all 2.3.1+dfsg-1ubuntu2.2 [579 kB] 2024-02-11T16:15:54.929 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: unable to initialize frontend: Dialog 2024-02-11T16:15:54.929 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-11T16:15:54.930 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: falling back to frontend: Readline 2024-02-11T16:15:54.990 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: unable to initialize frontend: Readline 2024-02-11T16:15:54.990 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: (This frontend requires a controlling tty.) 2024-02-11T16:15:54.990 INFO:teuthology.orchestra.run.smithi120.stderr:debconf: falling back to frontend: Teletype 2024-02-11T16:15:54.996 INFO:teuthology.orchestra.run.smithi120.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-02-11T16:15:55.054 INFO:teuthology.orchestra.run.smithi120.stdout:Fetched 4,480 kB in 1s (4,488 kB/s) 2024-02-11T16:15:55.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:54 smithi183 bash[18593]: cluster 2024-02-11T16:15:53.554395+0000 mgr.smithi120.tpsohu (mgr.14180) 277 : cluster [DBG] pgmap v250: 33 pgs: 10 creating+peering, 12 active+clean, 11 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:55.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:54 smithi183 bash[18593]: cluster 2024-02-11T16:15:53.676801+0000 mon.smithi120 (mon.0) 629 : cluster [DBG] mgrmap e19: smithi120.tpsohu(active, since 7m), standbys: smithi183.pltuwd 2024-02-11T16:15:55.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:54 smithi183 bash[18593]: audit 2024-02-11T16:15:54.514458+0000 mon.smithi120 (mon.0) 630 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:55.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:54 smithi120 bash[14220]: cluster 2024-02-11T16:15:53.554395+0000 mgr.smithi120.tpsohu (mgr.14180) 277 : cluster [DBG] pgmap v250: 33 pgs: 10 creating+peering, 12 active+clean, 11 unknown; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:55.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:54 smithi120 bash[14220]: cluster 2024-02-11T16:15:53.676801+0000 mon.smithi120 (mon.0) 629 : cluster [DBG] mgrmap e19: smithi120.tpsohu(active, since 7m), standbys: smithi183.pltuwd 2024-02-11T16:15:55.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:54 smithi120 bash[14220]: audit 2024-02-11T16:15:54.514458+0000 mon.smithi120 (mon.0) 630 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:15:55.381 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package docutils-common. 2024-02-11T16:15:55.432 INFO:teuthology.orchestra.run.smithi120.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 ... 112645 files and directories currently installed.) 2024-02-11T16:15:55.435 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../0-docutils-common_0.16+dfsg-2_all.deb ... 2024-02-11T16:15:55.596 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking docutils-common (0.16+dfsg-2) ... 2024-02-11T16:15:56.303 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package libpaper1:amd64. 2024-02-11T16:15:56.317 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../1-libpaper1_1.1.28_amd64.deb ... 2024-02-11T16:15:56.423 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking libpaper1:amd64 (1.1.28) ... 2024-02-11T16:15:56.663 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package libpaper-utils. 2024-02-11T16:15:56.678 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../2-libpaper-utils_1.1.28_amd64.deb ... 2024-02-11T16:15:56.721 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking libpaper-utils (1.1.28) ... 2024-02-11T16:15:57.011 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-roman. 2024-02-11T16:15:57.027 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../3-python3-roman_2.0.0-3build1_all.deb ... 2024-02-11T16:15:57.069 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-roman (2.0.0-3build1) ... 2024-02-11T16:15:57.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:56 smithi183 bash[18593]: cluster 2024-02-11T16:15:55.554845+0000 mgr.smithi120.tpsohu (mgr.14180) 278 : cluster [DBG] pgmap v251: 33 pgs: 10 creating+peering, 23 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:57.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:56 smithi120 bash[14220]: cluster 2024-02-11T16:15:55.554845+0000 mgr.smithi120.tpsohu (mgr.14180) 278 : cluster [DBG] pgmap v251: 33 pgs: 10 creating+peering, 23 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:57.748 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-docutils. 2024-02-11T16:15:57.766 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../4-python3-docutils_0.16+dfsg-2_all.deb ... 2024-02-11T16:15:58.224 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-docutils (0.16+dfsg-2) ... 2024-02-11T16:15:58.851 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-jmespath. 2024-02-11T16:15:58.862 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../5-python3-jmespath_0.9.4-2ubuntu1_all.deb ... 2024-02-11T16:15:58.901 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-jmespath (0.9.4-2ubuntu1) ... 2024-02-11T16:15:59.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:58 smithi183 bash[18593]: cluster 2024-02-11T16:15:57.555607+0000 mgr.smithi120.tpsohu (mgr.14180) 279 : cluster [DBG] pgmap v252: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:59.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:58 smithi120 bash[14220]: cluster 2024-02-11T16:15:57.555607+0000 mgr.smithi120.tpsohu (mgr.14180) 279 : cluster [DBG] pgmap v252: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:15:59.213 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-botocore. 2024-02-11T16:15:59.226 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../6-python3-botocore_1.16.19+repack-1ubuntu0.20.04.1_all.deb ... 2024-02-11T16:15:59.271 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-botocore (1.16.19+repack-1ubuntu0.20.04.1) ... 2024-02-11T16:16:00.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:58.801204+0000 mon.smithi120 (mon.0) 631 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:00.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:59.096231+0000 mon.smithi120 (mon.0) 632 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:00.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:59.097397+0000 mon.smithi120 (mon.0) 633 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:16:00.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:59.106738+0000 mon.smithi120 (mon.0) 634 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:00.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:59.115088+0000 mon.smithi120 (mon.0) 635 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:16:00.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:59.128471+0000 mon.smithi120 (mon.0) 636 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:00.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:59.129233+0000 mon.smithi120 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi183.ccjjuh", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-11T16:16:00.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:59.134770+0000 mon.smithi120 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi183.ccjjuh", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-11T16:16:00.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:59.141598+0000 mon.smithi120 (mon.0) 639 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:00.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:15:59 smithi183 bash[18593]: audit 2024-02-11T16:15:59.142772+0000 mon.smithi120 (mon.0) 640 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:58.801204+0000 mon.smithi120 (mon.0) 631 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:59.096231+0000 mon.smithi120 (mon.0) 632 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:59.097397+0000 mon.smithi120 (mon.0) 633 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:16:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:59.106738+0000 mon.smithi120 (mon.0) 634 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:00.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:59.115088+0000 mon.smithi120 (mon.0) 635 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:16:00.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:59.128471+0000 mon.smithi120 (mon.0) 636 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:00.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:59.129233+0000 mon.smithi120 (mon.0) 637 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi183.ccjjuh", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-11T16:16:00.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:59.134770+0000 mon.smithi120 (mon.0) 638 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi183.ccjjuh", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-11T16:16:00.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:59.141598+0000 mon.smithi120 (mon.0) 639 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:00.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:15:59 smithi120 bash[14220]: audit 2024-02-11T16:15:59.142772+0000 mon.smithi120 (mon.0) 640 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:00.662 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-s3transfer. 2024-02-11T16:16:00.675 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../7-python3-s3transfer_0.3.3-1_all.deb ... 2024-02-11T16:16:00.721 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-s3transfer (0.3.3-1) ... 2024-02-11T16:16:01.046 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-boto3. 2024-02-11T16:16:01.059 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../8-python3-boto3_1.9.253-1_all.deb ... 2024-02-11T16:16:01.105 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-boto3 (1.9.253-1) ... 2024-02-11T16:16:01.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:00 smithi183 bash[18593]: cephadm 2024-02-11T16:15:59.121481+0000 mgr.smithi120.tpsohu (mgr.14180) 280 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-11T16:16:01.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:00 smithi183 bash[18593]: cephadm 2024-02-11T16:15:59.143794+0000 mgr.smithi120.tpsohu (mgr.14180) 281 : cephadm [INF] Deploying daemon rgw.foorgw.smithi183.ccjjuh on smithi183 2024-02-11T16:16:01.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:00 smithi183 bash[18593]: cluster 2024-02-11T16:15:59.556046+0000 mgr.smithi120.tpsohu (mgr.14180) 282 : cluster [DBG] pgmap v253: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:01.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:00 smithi120 bash[14220]: cephadm 2024-02-11T16:15:59.121481+0000 mgr.smithi120.tpsohu (mgr.14180) 280 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-02-11T16:16:01.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:00 smithi120 bash[14220]: cephadm 2024-02-11T16:15:59.143794+0000 mgr.smithi120.tpsohu (mgr.14180) 281 : cephadm [INF] Deploying daemon rgw.foorgw.smithi183.ccjjuh on smithi183 2024-02-11T16:16:01.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:00 smithi120 bash[14220]: cluster 2024-02-11T16:15:59.556046+0000 mgr.smithi120.tpsohu (mgr.14180) 282 : cluster [DBG] pgmap v253: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:01.462 INFO:teuthology.orchestra.run.smithi120.stdout:Selecting previously unselected package python3-pygments. 2024-02-11T16:16:01.475 INFO:teuthology.orchestra.run.smithi120.stdout:Preparing to unpack .../9-python3-pygments_2.3.1+dfsg-1ubuntu2.2_all.deb ... 2024-02-11T16:16:01.521 INFO:teuthology.orchestra.run.smithi120.stdout:Unpacking python3-pygments (2.3.1+dfsg-1ubuntu2.2) ... 2024-02-11T16:16:01.922 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up libpaper1:amd64 (1.1.28) ... 2024-02-11T16:16:02.210 INFO:teuthology.orchestra.run.smithi120.stdout:debconf: unable to initialize frontend: Dialog 2024-02-11T16:16:02.210 INFO:teuthology.orchestra.run.smithi120.stdout:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-02-11T16:16:02.210 INFO:teuthology.orchestra.run.smithi120.stdout:debconf: falling back to frontend: Readline 2024-02-11T16:16:03.062 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:16:03.063 INFO:teuthology.orchestra.run.smithi120.stdout:Creating config file /etc/papersize with new version 2024-02-11T16:16:03.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:02 smithi183 bash[18593]: cluster 2024-02-11T16:16:01.556507+0000 mgr.smithi120.tpsohu (mgr.14180) 283 : cluster [DBG] pgmap v254: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:03.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:02 smithi183 bash[18593]: audit 2024-02-11T16:16:01.719639+0000 mon.smithi120 (mon.0) 641 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:03.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:02 smithi183 bash[18593]: audit 2024-02-11T16:16:01.721720+0000 mon.smithi120 (mon.0) 642 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.dwbrwy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-11T16:16:03.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:02 smithi183 bash[18593]: audit 2024-02-11T16:16:01.727716+0000 mon.smithi120 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.dwbrwy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-11T16:16:03.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:02 smithi183 bash[18593]: audit 2024-02-11T16:16:01.734691+0000 mon.smithi120 (mon.0) 644 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:03.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:02 smithi183 bash[18593]: audit 2024-02-11T16:16:01.736391+0000 mon.smithi120 (mon.0) 645 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:03.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:02 smithi183 bash[18593]: cephadm 2024-02-11T16:16:01.737575+0000 mgr.smithi120.tpsohu (mgr.14180) 284 : cephadm [INF] Deploying daemon rgw.foorgw.smithi120.dwbrwy on smithi120 2024-02-11T16:16:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:02 smithi120 bash[14220]: cluster 2024-02-11T16:16:01.556507+0000 mgr.smithi120.tpsohu (mgr.14180) 283 : cluster [DBG] pgmap v254: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:02 smithi120 bash[14220]: audit 2024-02-11T16:16:01.719639+0000 mon.smithi120 (mon.0) 641 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:02 smithi120 bash[14220]: audit 2024-02-11T16:16:01.721720+0000 mon.smithi120 (mon.0) 642 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.dwbrwy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-11T16:16:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:02 smithi120 bash[14220]: audit 2024-02-11T16:16:01.727716+0000 mon.smithi120 (mon.0) 643 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi120.dwbrwy", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-11T16:16:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:02 smithi120 bash[14220]: audit 2024-02-11T16:16:01.734691+0000 mon.smithi120 (mon.0) 644 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:03.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:02 smithi120 bash[14220]: audit 2024-02-11T16:16:01.736391+0000 mon.smithi120 (mon.0) 645 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:03.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:02 smithi120 bash[14220]: cephadm 2024-02-11T16:16:01.737575+0000 mgr.smithi120.tpsohu (mgr.14180) 284 : cephadm [INF] Deploying daemon rgw.foorgw.smithi120.dwbrwy on smithi120 2024-02-11T16:16:03.508 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up libpaper-utils (1.1.28) ... 2024-02-11T16:16:03.796 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-roman (2.0.0-3build1) ... 2024-02-11T16:16:04.577 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-pygments (2.3.1+dfsg-1ubuntu2.2) ... 2024-02-11T16:16:05.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:04 smithi120 bash[14220]: cluster 2024-02-11T16:16:03.556905+0000 mgr.smithi120.tpsohu (mgr.14180) 285 : cluster [DBG] pgmap v255: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:05.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:04 smithi120 bash[14220]: cluster 2024-02-11T16:16:03.730230+0000 mon.smithi120 (mon.0) 646 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-11T16:16:05.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:04 smithi120 bash[14220]: audit 2024-02-11T16:16:03.732838+0000 mon.smithi183 (mon.1) 21 : audit [INF] from='client.? 172.21.15.183:0/1408221913' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-11T16:16:05.030 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:04 smithi120 bash[14220]: audit 2024-02-11T16:16:03.739097+0000 mon.smithi120 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-11T16:16:05.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:04 smithi183 bash[18593]: cluster 2024-02-11T16:16:03.556905+0000 mgr.smithi120.tpsohu (mgr.14180) 285 : cluster [DBG] pgmap v255: 33 pgs: 33 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:05.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:04 smithi183 bash[18593]: cluster 2024-02-11T16:16:03.730230+0000 mon.smithi120 (mon.0) 646 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-02-11T16:16:05.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:04 smithi183 bash[18593]: audit 2024-02-11T16:16:03.732838+0000 mon.smithi183 (mon.1) 21 : audit [INF] from='client.? 172.21.15.183:0/1408221913' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-11T16:16:05.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:04 smithi183 bash[18593]: audit 2024-02-11T16:16:03.739097+0000 mon.smithi120 (mon.0) 647 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]: dispatch 2024-02-11T16:16:05.280 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-jmespath (0.9.4-2ubuntu1) ... 2024-02-11T16:16:06.068 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up docutils-common (0.16+dfsg-2) ... 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:04.735157+0000 mon.smithi120 (mon.0) 648 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: cluster 2024-02-11T16:16:04.735438+0000 mon.smithi120 (mon.0) 649 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.325692+0000 mon.smithi120 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.332579+0000 mon.smithi120 (mon.0) 651 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.354022+0000 mon.smithi120 (mon.0) 652 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.leoduh", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.358248+0000 mon.smithi120 (mon.0) 653 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.leoduh", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.359271+0000 mon.smithi120 (mon.0) 654 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.363120+0000 mon.smithi120 (mon.0) 655 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.364488+0000 mon.smithi120 (mon.0) 656 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.413621+0000 mon.smithi120 (mon.0) 657 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-11T16:16:06.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.417930+0000 mon.smithi120 (mon.0) 658 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-11T16:16:06.110 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.476675+0000 mon.smithi120 (mon.0) 659 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.leoduh-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-11T16:16:06.110 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.480943+0000 mon.smithi120 (mon.0) 660 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.leoduh-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-11T16:16:06.110 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:05 smithi183 bash[18593]: audit 2024-02-11T16:16:05.487207+0000 mon.smithi120 (mon.0) 661 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:06.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:04.735157+0000 mon.smithi120 (mon.0) 648 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-02-11T16:16:06.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: cluster 2024-02-11T16:16:04.735438+0000 mon.smithi120 (mon.0) 649 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-02-11T16:16:06.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.325692+0000 mon.smithi120 (mon.0) 650 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:06.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.332579+0000 mon.smithi120 (mon.0) 651 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.354022+0000 mon.smithi120 (mon.0) 652 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.leoduh", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]: dispatch 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.358248+0000 mon.smithi120 (mon.0) 653 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.leoduh", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.359271+0000 mon.smithi120 (mon.0) 654 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]: dispatch 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.363120+0000 mon.smithi120 (mon.0) 655 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.364488+0000 mon.smithi120 (mon.0) 656 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.413621+0000 mon.smithi120 (mon.0) 657 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]: dispatch 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.417930+0000 mon.smithi120 (mon.0) 658 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.476675+0000 mon.smithi120 (mon.0) 659 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.leoduh-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]: dispatch 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.480943+0000 mon.smithi120 (mon.0) 660 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi120.leoduh-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-02-11T16:16:06.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:05 smithi120 bash[14220]: audit 2024-02-11T16:16:05.487207+0000 mon.smithi120 (mon.0) 661 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:16:07.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:06 smithi183 bash[18593]: cephadm 2024-02-11T16:16:05.353632+0000 mgr.smithi120.tpsohu (mgr.14180) 286 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.leoduh 2024-02-11T16:16:07.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:06 smithi183 bash[18593]: cephadm 2024-02-11T16:16:05.358983+0000 mgr.smithi120.tpsohu (mgr.14180) 287 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-11T16:16:07.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:06 smithi183 bash[18593]: cephadm 2024-02-11T16:16:05.475820+0000 mgr.smithi120.tpsohu (mgr.14180) 288 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-11T16:16:07.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:06 smithi183 bash[18593]: cephadm 2024-02-11T16:16:05.476148+0000 mgr.smithi120.tpsohu (mgr.14180) 289 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.leoduh-rgw 2024-02-11T16:16:07.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:06 smithi183 bash[18593]: cephadm 2024-02-11T16:16:05.488385+0000 mgr.smithi120.tpsohu (mgr.14180) 290 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi120.leoduh on smithi120 2024-02-11T16:16:07.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:06 smithi183 bash[18593]: cluster 2024-02-11T16:16:05.557394+0000 mgr.smithi120.tpsohu (mgr.14180) 291 : cluster [DBG] pgmap v258: 65 pgs: 10 creating+peering, 19 unknown, 36 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:07.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:06 smithi183 bash[18593]: cluster 2024-02-11T16:16:05.747817+0000 mon.smithi120 (mon.0) 662 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-11T16:16:07.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:06 smithi183 bash[18593]: audit 2024-02-11T16:16:05.753901+0000 mon.smithi183 (mon.1) 22 : audit [INF] from='client.? 172.21.15.183:0/1408221913' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-11T16:16:07.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:06 smithi183 bash[18593]: audit 2024-02-11T16:16:05.759300+0000 mon.smithi120 (mon.0) 663 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-11T16:16:07.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:06 smithi120 bash[14220]: cephadm 2024-02-11T16:16:05.353632+0000 mgr.smithi120.tpsohu (mgr.14180) 286 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.leoduh 2024-02-11T16:16:07.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:06 smithi120 bash[14220]: cephadm 2024-02-11T16:16:05.358983+0000 mgr.smithi120.tpsohu (mgr.14180) 287 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-02-11T16:16:07.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:06 smithi120 bash[14220]: cephadm 2024-02-11T16:16:05.475820+0000 mgr.smithi120.tpsohu (mgr.14180) 288 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-02-11T16:16:07.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:06 smithi120 bash[14220]: cephadm 2024-02-11T16:16:05.476148+0000 mgr.smithi120.tpsohu (mgr.14180) 289 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi120.leoduh-rgw 2024-02-11T16:16:07.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:06 smithi120 bash[14220]: cephadm 2024-02-11T16:16:05.488385+0000 mgr.smithi120.tpsohu (mgr.14180) 290 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi120.leoduh on smithi120 2024-02-11T16:16:07.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:06 smithi120 bash[14220]: cluster 2024-02-11T16:16:05.557394+0000 mgr.smithi120.tpsohu (mgr.14180) 291 : cluster [DBG] pgmap v258: 65 pgs: 10 creating+peering, 19 unknown, 36 active+clean; 0 B data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:07.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:06 smithi120 bash[14220]: cluster 2024-02-11T16:16:05.747817+0000 mon.smithi120 (mon.0) 662 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-02-11T16:16:07.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:06 smithi120 bash[14220]: audit 2024-02-11T16:16:05.753901+0000 mon.smithi183 (mon.1) 22 : audit [INF] from='client.? 172.21.15.183:0/1408221913' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-11T16:16:07.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:06 smithi120 bash[14220]: audit 2024-02-11T16:16:05.759300+0000 mon.smithi120 (mon.0) 663 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]: dispatch 2024-02-11T16:16:07.171 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for man-db (2.9.1-1) ... 2024-02-11T16:16:08.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:08 smithi120 bash[14220]: audit 2024-02-11T16:16:06.750065+0000 mon.smithi120 (mon.0) 664 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-11T16:16:08.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:08 smithi120 bash[14220]: cluster 2024-02-11T16:16:06.750368+0000 mon.smithi120 (mon.0) 665 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-11T16:16:08.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:08 smithi183 bash[18593]: audit 2024-02-11T16:16:06.750065+0000 mon.smithi120 (mon.0) 664 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-02-11T16:16:08.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:08 smithi183 bash[18593]: cluster 2024-02-11T16:16:06.750368+0000 mon.smithi120 (mon.0) 665 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-02-11T16:16:08.552 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for shared-mime-info (1.15-1) ... 2024-02-11T16:16:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:09 smithi183 bash[18593]: cluster 2024-02-11T16:16:07.558752+0000 mgr.smithi120.tpsohu (mgr.14180) 292 : cluster [DBG] pgmap v261: 97 pgs: 12 creating+peering, 29 unknown, 56 active+clean; 16 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 511 B/s wr, 0 op/s 2024-02-11T16:16:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:09 smithi183 bash[18593]: cluster 2024-02-11T16:16:08.080792+0000 mon.smithi120 (mon.0) 666 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-11T16:16:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:09 smithi183 bash[18593]: audit 2024-02-11T16:16:08.082224+0000 mon.smithi120 (mon.0) 667 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-11T16:16:09.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:09 smithi183 bash[18593]: audit 2024-02-11T16:16:08.088874+0000 mon.smithi183 (mon.1) 23 : audit [INF] from='client.? 172.21.15.183:0/1408221913' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-11T16:16:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:09 smithi183 bash[18593]: audit 2024-02-11T16:16:08.091470+0000 mon.smithi120 (mon.0) 668 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-11T16:16:09.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:09 smithi183 bash[18593]: audit 2024-02-11T16:16:08.299475+0000 mon.smithi120 (mon.0) 669 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:09.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:09 smithi120 bash[14220]: cluster 2024-02-11T16:16:07.558752+0000 mgr.smithi120.tpsohu (mgr.14180) 292 : cluster [DBG] pgmap v261: 97 pgs: 12 creating+peering, 29 unknown, 56 active+clean; 16 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 255 B/s rd, 511 B/s wr, 0 op/s 2024-02-11T16:16:09.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:09 smithi120 bash[14220]: cluster 2024-02-11T16:16:08.080792+0000 mon.smithi120 (mon.0) 666 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-02-11T16:16:09.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:09 smithi120 bash[14220]: audit 2024-02-11T16:16:08.082224+0000 mon.smithi120 (mon.0) 667 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-11T16:16:09.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:09 smithi120 bash[14220]: audit 2024-02-11T16:16:08.088874+0000 mon.smithi183 (mon.1) 23 : audit [INF] from='client.? 172.21.15.183:0/1408221913' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-11T16:16:09.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:09 smithi120 bash[14220]: audit 2024-02-11T16:16:08.091470+0000 mon.smithi120 (mon.0) 668 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]: dispatch 2024-02-11T16:16:09.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:09 smithi120 bash[14220]: audit 2024-02-11T16:16:08.299475+0000 mon.smithi120 (mon.0) 669 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:10.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:10 smithi183 bash[18593]: audit 2024-02-11T16:16:09.087150+0000 mon.smithi120 (mon.0) 670 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-11T16:16:10.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:10 smithi183 bash[18593]: audit 2024-02-11T16:16:09.087397+0000 mon.smithi120 (mon.0) 671 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-11T16:16:10.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:10 smithi183 bash[18593]: cluster 2024-02-11T16:16:09.087553+0000 mon.smithi120 (mon.0) 672 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-11T16:16:10.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:10 smithi183 bash[18593]: audit 2024-02-11T16:16:09.110003+0000 mon.smithi120 (mon.0) 673 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:10.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:10 smithi183 bash[18593]: audit 2024-02-11T16:16:09.119572+0000 mon.smithi120 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:10.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:10 smithi183 bash[18593]: cephadm 2024-02-11T16:16:09.135557+0000 mgr.smithi120.tpsohu (mgr.14180) 293 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi183.eabvjq on smithi183 2024-02-11T16:16:10.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:10 smithi183 bash[18593]: cluster 2024-02-11T16:16:09.559367+0000 mgr.smithi120.tpsohu (mgr.14180) 294 : cluster [DBG] pgmap v264: 129 pgs: 18 creating+peering, 44 unknown, 67 active+clean; 108 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 1023 B/s wr, 2 op/s 2024-02-11T16:16:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:10 smithi120 bash[14220]: audit 2024-02-11T16:16:09.087150+0000 mon.smithi120 (mon.0) 670 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-11T16:16:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:10 smithi120 bash[14220]: audit 2024-02-11T16:16:09.087397+0000 mon.smithi120 (mon.0) 671 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-02-11T16:16:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:10 smithi120 bash[14220]: cluster 2024-02-11T16:16:09.087553+0000 mon.smithi120 (mon.0) 672 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-02-11T16:16:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:10 smithi120 bash[14220]: audit 2024-02-11T16:16:09.110003+0000 mon.smithi120 (mon.0) 673 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:10 smithi120 bash[14220]: audit 2024-02-11T16:16:09.119572+0000 mon.smithi120 (mon.0) 674 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:10.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:10 smithi120 bash[14220]: cephadm 2024-02-11T16:16:09.135557+0000 mgr.smithi120.tpsohu (mgr.14180) 293 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi183.eabvjq on smithi183 2024-02-11T16:16:10.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:10 smithi120 bash[14220]: cluster 2024-02-11T16:16:09.559367+0000 mgr.smithi120.tpsohu (mgr.14180) 294 : cluster [DBG] pgmap v264: 129 pgs: 18 creating+peering, 44 unknown, 67 active+clean; 108 B data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1.7 KiB/s rd, 1023 B/s wr, 2 op/s 2024-02-11T16:16:11.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:11 smithi120 bash[14220]: cluster 2024-02-11T16:16:10.097181+0000 mon.smithi120 (mon.0) 675 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-11T16:16:11.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:11 smithi120 bash[14220]: audit 2024-02-11T16:16:10.099287+0000 mon.smithi120 (mon.0) 676 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-11T16:16:11.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:11 smithi120 bash[14220]: audit 2024-02-11T16:16:10.106675+0000 mon.smithi183 (mon.1) 24 : audit [INF] from='client.? 172.21.15.183:0/2619743934' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-11T16:16:11.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:11 smithi120 bash[14220]: audit 2024-02-11T16:16:10.110001+0000 mon.smithi120 (mon.0) 677 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-11T16:16:11.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:11 smithi183 bash[18593]: cluster 2024-02-11T16:16:10.097181+0000 mon.smithi120 (mon.0) 675 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-02-11T16:16:11.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:11 smithi183 bash[18593]: audit 2024-02-11T16:16:10.099287+0000 mon.smithi120 (mon.0) 676 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-11T16:16:11.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:11 smithi183 bash[18593]: audit 2024-02-11T16:16:10.106675+0000 mon.smithi183 (mon.1) 24 : audit [INF] from='client.? 172.21.15.183:0/2619743934' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-11T16:16:11.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:11 smithi183 bash[18593]: audit 2024-02-11T16:16:10.110001+0000 mon.smithi120 (mon.0) 677 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]: dispatch 2024-02-11T16:16:12.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: audit 2024-02-11T16:16:11.104456+0000 mon.smithi183 (mon.1) 25 : audit [INF] from='client.? 172.21.15.183:0/2619743934' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-11T16:16:12.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: audit 2024-02-11T16:16:11.104597+0000 mon.smithi120 (mon.0) 678 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-11T16:16:12.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: audit 2024-02-11T16:16:11.104858+0000 mon.smithi120 (mon.0) 679 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-11T16:16:12.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: cluster 2024-02-11T16:16:11.105039+0000 mon.smithi120 (mon.0) 680 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-11T16:16:12.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: audit 2024-02-11T16:16:11.110797+0000 mon.smithi120 (mon.0) 681 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-11T16:16:12.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: audit 2024-02-11T16:16:11.119562+0000 mon.smithi120 (mon.0) 682 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-11T16:16:12.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: cluster 2024-02-11T16:16:11.560217+0000 mgr.smithi120.tpsohu (mgr.14180) 295 : cluster [DBG] pgmap v267: 161 pgs: 19 creating+peering, 24 unknown, 118 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.0 KiB/s rd, 1.2 KiB/s wr, 5 op/s 2024-02-11T16:16:12.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: audit 2024-02-11T16:16:12.102602+0000 mon.smithi120 (mon.0) 683 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-11T16:16:12.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: audit 2024-02-11T16:16:12.102734+0000 mon.smithi120 (mon.0) 684 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-11T16:16:12.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:12 smithi120 bash[14220]: cluster 2024-02-11T16:16:12.102786+0000 mon.smithi120 (mon.0) 685 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-11T16:16:12.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: audit 2024-02-11T16:16:11.104456+0000 mon.smithi183 (mon.1) 25 : audit [INF] from='client.? 172.21.15.183:0/2619743934' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-11T16:16:12.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: audit 2024-02-11T16:16:11.104597+0000 mon.smithi120 (mon.0) 678 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-11T16:16:12.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: audit 2024-02-11T16:16:11.104858+0000 mon.smithi120 (mon.0) 679 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-02-11T16:16:12.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: cluster 2024-02-11T16:16:11.105039+0000 mon.smithi120 (mon.0) 680 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-02-11T16:16:12.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: audit 2024-02-11T16:16:11.110797+0000 mon.smithi120 (mon.0) 681 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-11T16:16:12.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: audit 2024-02-11T16:16:11.119562+0000 mon.smithi120 (mon.0) 682 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-11T16:16:12.517 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: cluster 2024-02-11T16:16:11.560217+0000 mgr.smithi120.tpsohu (mgr.14180) 295 : cluster [DBG] pgmap v267: 161 pgs: 19 creating+peering, 24 unknown, 118 active+clean; 1.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.0 KiB/s rd, 1.2 KiB/s wr, 5 op/s 2024-02-11T16:16:12.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: audit 2024-02-11T16:16:12.102602+0000 mon.smithi120 (mon.0) 683 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi183.ccjjuh' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-11T16:16:12.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: audit 2024-02-11T16:16:12.102734+0000 mon.smithi120 (mon.0) 684 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-11T16:16:12.518 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:12 smithi183 bash[18593]: cluster 2024-02-11T16:16:12.102786+0000 mon.smithi120 (mon.0) 685 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-02-11T16:16:14.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:14 smithi183 bash[18593]: audit 2024-02-11T16:16:13.314995+0000 mon.smithi120 (mon.0) 686 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:14.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:14 smithi183 bash[18593]: cluster 2024-02-11T16:16:13.561023+0000 mgr.smithi120.tpsohu (mgr.14180) 296 : cluster [DBG] pgmap v269: 161 pgs: 17 creating+peering, 10 unknown, 134 active+clean; 2.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 3.8 KiB/s wr, 62 op/s 2024-02-11T16:16:14.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:14 smithi120 bash[14220]: audit 2024-02-11T16:16:13.314995+0000 mon.smithi120 (mon.0) 686 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:14.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:14 smithi120 bash[14220]: cluster 2024-02-11T16:16:13.561023+0000 mgr.smithi120.tpsohu (mgr.14180) 296 : cluster [DBG] pgmap v269: 161 pgs: 17 creating+peering, 10 unknown, 134 active+clean; 2.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 30 KiB/s rd, 3.8 KiB/s wr, 62 op/s 2024-02-11T16:16:16.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:16 smithi120 bash[14220]: cluster 2024-02-11T16:16:15.561630+0000 mgr.smithi120.tpsohu (mgr.14180) 297 : cluster [DBG] pgmap v270: 161 pgs: 6 creating+peering, 155 active+clean; 4.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 75 KiB/s rd, 5.8 KiB/s wr, 167 op/s 2024-02-11T16:16:17.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:16 smithi183 bash[18593]: cluster 2024-02-11T16:16:15.561630+0000 mgr.smithi120.tpsohu (mgr.14180) 297 : cluster [DBG] pgmap v270: 161 pgs: 6 creating+peering, 155 active+clean; 4.2 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 75 KiB/s rd, 5.8 KiB/s wr, 167 op/s 2024-02-11T16:16:18.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:18 smithi120 bash[14220]: cluster 2024-02-11T16:16:17.562777+0000 mgr.smithi120.tpsohu (mgr.14180) 298 : cluster [DBG] pgmap v271: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 79 KiB/s rd, 5.4 KiB/s wr, 176 op/s 2024-02-11T16:16:18.968 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:18 smithi183 bash[18593]: cluster 2024-02-11T16:16:17.562777+0000 mgr.smithi120.tpsohu (mgr.14180) 298 : cluster [DBG] pgmap v271: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 79 KiB/s rd, 5.4 KiB/s wr, 176 op/s 2024-02-11T16:16:20.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:20 smithi183 bash[18593]: cluster 2024-02-11T16:16:19.563759+0000 mgr.smithi120.tpsohu (mgr.14180) 299 : cluster [DBG] pgmap v272: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 69 KiB/s rd, 4.6 KiB/s wr, 155 op/s 2024-02-11T16:16:20.859 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:20 smithi183 bash[18593]: audit 2024-02-11T16:16:20.430559+0000 mon.smithi120 (mon.0) 687 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:20.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:20 smithi120 bash[14220]: cluster 2024-02-11T16:16:19.563759+0000 mgr.smithi120.tpsohu (mgr.14180) 299 : cluster [DBG] pgmap v272: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 69 KiB/s rd, 4.6 KiB/s wr, 155 op/s 2024-02-11T16:16:20.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:20 smithi120 bash[14220]: audit 2024-02-11T16:16:20.430559+0000 mon.smithi120 (mon.0) 687 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:21.858 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:21 smithi183 bash[18593]: cephadm 2024-02-11T16:16:20.433873+0000 mgr.smithi120.tpsohu (mgr.14180) 300 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi120.aswjdm on smithi120 2024-02-11T16:16:21.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:21 smithi120 bash[14220]: cephadm 2024-02-11T16:16:20.433873+0000 mgr.smithi120.tpsohu (mgr.14180) 300 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi120.aswjdm on smithi120 2024-02-11T16:16:22.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:22 smithi120 bash[14220]: cluster 2024-02-11T16:16:21.565168+0000 mgr.smithi120.tpsohu (mgr.14180) 301 : cluster [DBG] pgmap v273: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 58 KiB/s rd, 3.9 KiB/s wr, 131 op/s 2024-02-11T16:16:23.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:22 smithi183 bash[18593]: cluster 2024-02-11T16:16:21.565168+0000 mgr.smithi120.tpsohu (mgr.14180) 301 : cluster [DBG] pgmap v273: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 58 KiB/s rd, 3.9 KiB/s wr, 131 op/s 2024-02-11T16:16:24.608 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:24 smithi183 bash[18593]: audit 2024-02-11T16:16:23.329931+0000 mon.smithi120 (mon.0) 688 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:24.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:24 smithi183 bash[18593]: cluster 2024-02-11T16:16:23.566230+0000 mgr.smithi120.tpsohu (mgr.14180) 302 : cluster [DBG] pgmap v274: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 51 KiB/s rd, 3.4 KiB/s wr, 114 op/s 2024-02-11T16:16:24.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:24 smithi120 bash[14220]: audit 2024-02-11T16:16:23.329931+0000 mon.smithi120 (mon.0) 688 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:24.654 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:24 smithi120 bash[14220]: cluster 2024-02-11T16:16:23.566230+0000 mgr.smithi120.tpsohu (mgr.14180) 302 : cluster [DBG] pgmap v274: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 51 KiB/s rd, 3.4 KiB/s wr, 114 op/s 2024-02-11T16:16:26.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:26 smithi120 bash[14220]: cluster 2024-02-11T16:16:25.567232+0000 mgr.smithi120.tpsohu (mgr.14180) 303 : cluster [DBG] pgmap v275: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 2.1 KiB/s wr, 87 op/s 2024-02-11T16:16:27.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:26 smithi183 bash[18593]: cluster 2024-02-11T16:16:25.567232+0000 mgr.smithi120.tpsohu (mgr.14180) 303 : cluster [DBG] pgmap v275: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 38 KiB/s rd, 2.1 KiB/s wr, 87 op/s 2024-02-11T16:16:28.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:28 smithi120 bash[14220]: cluster 2024-02-11T16:16:27.568042+0000 mgr.smithi120.tpsohu (mgr.14180) 304 : cluster [DBG] pgmap v276: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 597 B/s wr, 26 op/s 2024-02-11T16:16:29.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:28 smithi183 bash[18593]: cluster 2024-02-11T16:16:27.568042+0000 mgr.smithi120.tpsohu (mgr.14180) 304 : cluster [DBG] pgmap v276: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 597 B/s wr, 26 op/s 2024-02-11T16:16:30.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:30 smithi120 bash[14220]: cluster 2024-02-11T16:16:29.569008+0000 mgr.smithi120.tpsohu (mgr.14180) 305 : cluster [DBG] pgmap v277: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:31.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:30 smithi183 bash[18593]: cluster 2024-02-11T16:16:29.569008+0000 mgr.smithi120.tpsohu (mgr.14180) 305 : cluster [DBG] pgmap v277: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:32.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:32 smithi120 bash[14220]: cluster 2024-02-11T16:16:31.569905+0000 mgr.smithi120.tpsohu (mgr.14180) 306 : cluster [DBG] pgmap v278: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:33.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:32 smithi183 bash[18593]: cluster 2024-02-11T16:16:31.569905+0000 mgr.smithi120.tpsohu (mgr.14180) 306 : cluster [DBG] pgmap v278: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:34.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:34 smithi120 bash[14220]: cluster 2024-02-11T16:16:33.571014+0000 mgr.smithi120.tpsohu (mgr.14180) 307 : cluster [DBG] pgmap v279: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:34.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:34 smithi120 bash[14220]: audit 2024-02-11T16:16:34.632957+0000 mon.smithi120 (mon.0) 689 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:35.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:34 smithi183 bash[18593]: cluster 2024-02-11T16:16:33.571014+0000 mgr.smithi120.tpsohu (mgr.14180) 307 : cluster [DBG] pgmap v279: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:35.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:34 smithi183 bash[18593]: audit 2024-02-11T16:16:34.632957+0000 mon.smithi120 (mon.0) 689 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:35.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:35 smithi120 bash[14220]: audit 2024-02-11T16:16:34.640749+0000 mon.smithi120 (mon.0) 690 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:35.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:35 smithi120 bash[14220]: cephadm 2024-02-11T16:16:34.641637+0000 mgr.smithi120.tpsohu (mgr.14180) 308 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-02-11T16:16:35.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:35 smithi120 bash[14220]: cephadm 2024-02-11T16:16:34.650132+0000 mgr.smithi120.tpsohu (mgr.14180) 309 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi120.hbjepe on smithi120 2024-02-11T16:16:36.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:35 smithi183 bash[18593]: audit 2024-02-11T16:16:34.640749+0000 mon.smithi120 (mon.0) 690 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:36.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:35 smithi183 bash[18593]: cephadm 2024-02-11T16:16:34.641637+0000 mgr.smithi120.tpsohu (mgr.14180) 308 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi120 interface enp3s0f1 2024-02-11T16:16:36.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:35 smithi183 bash[18593]: cephadm 2024-02-11T16:16:34.650132+0000 mgr.smithi120.tpsohu (mgr.14180) 309 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi120.hbjepe on smithi120 2024-02-11T16:16:37.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:36 smithi183 bash[18593]: cluster 2024-02-11T16:16:35.572244+0000 mgr.smithi120.tpsohu (mgr.14180) 310 : cluster [DBG] pgmap v280: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:37.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:36 smithi120 bash[14220]: cluster 2024-02-11T16:16:35.572244+0000 mgr.smithi120.tpsohu (mgr.14180) 310 : cluster [DBG] pgmap v280: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:37.471 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for sgml-base (1.29.1) ... 2024-02-11T16:16:37.675 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-docutils (0.16+dfsg-2) ... 2024-02-11T16:16:38.059 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst-buildhtml to provide /usr/bin/rst-buildhtml (rst-buildhtml) in auto mode 2024-02-11T16:16:38.088 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html to provide /usr/bin/rst2html (rst2html) in auto mode 2024-02-11T16:16:38.123 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html4 to provide /usr/bin/rst2html4 (rst2html4) in auto mode 2024-02-11T16:16:38.149 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2html5 to provide /usr/bin/rst2html5 (rst2html5) in auto mode 2024-02-11T16:16:38.174 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2latex to provide /usr/bin/rst2latex (rst2latex) in auto mode 2024-02-11T16:16:38.200 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2man to provide /usr/bin/rst2man (rst2man) in auto mode 2024-02-11T16:16:38.225 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt to provide /usr/bin/rst2odt (rst2odt) in auto mode 2024-02-11T16:16:38.250 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2odt_prepstyles to provide /usr/bin/rst2odt_prepstyles (rst2odt_prepstyles) in auto mode 2024-02-11T16:16:38.276 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2pseudoxml to provide /usr/bin/rst2pseudoxml (rst2pseudoxml) in auto mode 2024-02-11T16:16:38.300 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2s5 to provide /usr/bin/rst2s5 (rst2s5) in auto mode 2024-02-11T16:16:38.327 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xetex to provide /usr/bin/rst2xetex (rst2xetex) in auto mode 2024-02-11T16:16:38.352 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rst2xml to provide /usr/bin/rst2xml (rst2xml) in auto mode 2024-02-11T16:16:38.385 INFO:teuthology.orchestra.run.smithi120.stdout:update-alternatives: using /usr/share/docutils/scripts/python3/rstpep2html to provide /usr/bin/rstpep2html (rstpep2html) in auto mode 2024-02-11T16:16:38.785 INFO:teuthology.orchestra.run.smithi120.stdout:Processing triggers for libc-bin (2.31-0ubuntu9.9) ... 2024-02-11T16:16:38.951 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-botocore (1.16.19+repack-1ubuntu0.20.04.1) ... 2024-02-11T16:16:39.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:38 smithi183 bash[18593]: cluster 2024-02-11T16:16:37.573368+0000 mgr.smithi120.tpsohu (mgr.14180) 311 : cluster [DBG] pgmap v281: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-11T16:16:39.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:38 smithi120 bash[14220]: cluster 2024-02-11T16:16:37.573368+0000 mgr.smithi120.tpsohu (mgr.14180) 311 : cluster [DBG] pgmap v281: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 170 B/s rd, 0 op/s 2024-02-11T16:16:39.324 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-s3transfer (0.3.3-1) ... 2024-02-11T16:16:39.668 INFO:teuthology.orchestra.run.smithi120.stdout:Setting up python3-boto3 (1.9.253-1) ... 2024-02-11T16:16:39.980 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:39 smithi183 bash[18593]: audit 2024-02-11T16:16:39.470395+0000 mon.smithi120 (mon.0) 691 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1d", "id": [4, 0]}]: dispatch 2024-02-11T16:16:40.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:39 smithi120 bash[14220]: audit 2024-02-11T16:16:39.470395+0000 mon.smithi120 (mon.0) 691 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1d", "id": [4, 0]}]: dispatch 2024-02-11T16:16:40.394 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c '/home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo > /tmp/user.json' 2024-02-11T16:16:40.450 INFO:teuthology.orchestra.run.smithi120.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-02-11T16:16:41.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:40 smithi183 bash[18593]: cluster 2024-02-11T16:16:39.574048+0000 mgr.smithi120.tpsohu (mgr.14180) 312 : cluster [DBG] pgmap v282: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:41.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:40 smithi183 bash[18593]: audit 2024-02-11T16:16:39.670794+0000 mon.smithi120 (mon.0) 692 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1d", "id": [4, 0]}]': finished 2024-02-11T16:16:41.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:40 smithi183 bash[18593]: cluster 2024-02-11T16:16:39.671041+0000 mon.smithi120 (mon.0) 693 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-11T16:16:41.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:40 smithi120 bash[14220]: cluster 2024-02-11T16:16:39.574048+0000 mgr.smithi120.tpsohu (mgr.14180) 312 : cluster [DBG] pgmap v282: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:16:41.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:40 smithi120 bash[14220]: audit 2024-02-11T16:16:39.670794+0000 mon.smithi120 (mon.0) 692 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.1d", "id": [4, 0]}]': finished 2024-02-11T16:16:41.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:40 smithi120 bash[14220]: cluster 2024-02-11T16:16:39.671041+0000 mon.smithi120 (mon.0) 693 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-02-11T16:16:42.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:41 smithi183 bash[18593]: cluster 2024-02-11T16:16:40.676638+0000 mon.smithi120 (mon.0) 694 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-11T16:16:42.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:41 smithi120 bash[14220]: cluster 2024-02-11T16:16:40.676638+0000 mon.smithi120 (mon.0) 694 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-02-11T16:16:43.044 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:42 smithi120 bash[14220]: cluster 2024-02-11T16:16:41.575065+0000 mgr.smithi120.tpsohu (mgr.14180) 313 : cluster [DBG] pgmap v285: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-11T16:16:43.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:42 smithi183 bash[18593]: cluster 2024-02-11T16:16:41.575065+0000 mgr.smithi120.tpsohu (mgr.14180) 313 : cluster [DBG] pgmap v285: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-11T16:16:45.107 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:44 smithi120 bash[14220]: cluster 2024-02-11T16:16:43.576086+0000 mgr.smithi120.tpsohu (mgr.14180) 314 : cluster [DBG] pgmap v286: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-11T16:16:45.107 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:44 smithi120 bash[14220]: audit 2024-02-11T16:16:44.148957+0000 mon.smithi120 (mon.0) 695 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:45.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:44 smithi183 bash[18593]: cluster 2024-02-11T16:16:43.576086+0000 mgr.smithi120.tpsohu (mgr.14180) 314 : cluster [DBG] pgmap v286: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-11T16:16:45.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:44 smithi183 bash[18593]: audit 2024-02-11T16:16:44.148957+0000 mon.smithi120 (mon.0) 695 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:45.274 INFO:teuthology.orchestra.run.smithi120.stderr:Inferring fsid 639b0136-c8f7-11ee-95b9-87774f69a715 2024-02-11T16:16:45.300 INFO:teuthology.orchestra.run.smithi120.stderr:Using recent ceph image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:a502f12df31fe0d2d8e9eeec9fe2e9a18b9362c10004847eb4d4911eecc1bc78 2024-02-11T16:16:46.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:45 smithi183 bash[18593]: cephadm 2024-02-11T16:16:44.151999+0000 mgr.smithi120.tpsohu (mgr.14180) 315 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi183 interface enp3s0f1 2024-02-11T16:16:46.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:45 smithi183 bash[18593]: cephadm 2024-02-11T16:16:44.152722+0000 mgr.smithi120.tpsohu (mgr.14180) 316 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi183.ipnmcv on smithi183 2024-02-11T16:16:46.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:45 smithi120 bash[14220]: cephadm 2024-02-11T16:16:44.151999+0000 mgr.smithi120.tpsohu (mgr.14180) 315 : cephadm [INF] 10.0.31.120 is in 10.0.0.0/16 on smithi183 interface enp3s0f1 2024-02-11T16:16:46.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:45 smithi120 bash[14220]: cephadm 2024-02-11T16:16:44.152722+0000 mgr.smithi120.tpsohu (mgr.14180) 316 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi183.ipnmcv on smithi183 2024-02-11T16:16:46.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:46 smithi120 bash[14220]: cluster 2024-02-11T16:16:45.577275+0000 mgr.smithi120.tpsohu (mgr.14180) 317 : cluster [DBG] pgmap v287: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:47.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:46 smithi183 bash[18593]: cluster 2024-02-11T16:16:45.577275+0000 mgr.smithi120.tpsohu (mgr.14180) 317 : cluster [DBG] pgmap v287: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail 2024-02-11T16:16:48.830 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:48 smithi120 bash[14220]: cluster 2024-02-11T16:16:47.578474+0000 mgr.smithi120.tpsohu (mgr.14180) 318 : cluster [DBG] pgmap v288: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-11T16:16:49.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:48 smithi183 bash[18593]: cluster 2024-02-11T16:16:47.578474+0000 mgr.smithi120.tpsohu (mgr.14180) 318 : cluster [DBG] pgmap v288: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 127 B/s rd, 0 op/s 2024-02-11T16:16:49.161 INFO:teuthology.run_tasks:Running task python... 2024-02-11T16:16:49.174 INFO:tasks.python:Running python on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T16:16:49.174 INFO:tasks.python:import boto3 import json with open('/tmp/user.json', 'rt') as f: info = json.loads(f.read()) s3 = boto3.resource( 's3', aws_access_key_id=info['keys'][0]['access_key'], aws_secret_access_key=info['keys'][0]['secret_key'], endpoint_url='http://localhost:8800', ) bucket = s3.Bucket('foobucket') bucket.create() bucket.put_object(Key='myobject', Body='thebody') 2024-02-11T16:16:49.174 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-02-11T16:16:50.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:50 smithi183 bash[18593]: cluster 2024-02-11T16:16:49.579385+0000 mgr.smithi120.tpsohu (mgr.14180) 319 : cluster [DBG] pgmap v289: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-02-11T16:16:50.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:50 smithi120 bash[14220]: cluster 2024-02-11T16:16:49.579385+0000 mgr.smithi120.tpsohu (mgr.14180) 319 : cluster [DBG] pgmap v289: 161 pgs: 161 active+clean; 4.9 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 103 B/s rd, 0 op/s 2024-02-11T16:16:51.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:51 smithi183 bash[18593]: cluster 2024-02-11T16:16:50.060469+0000 mon.smithi120 (mon.0) 696 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-11T16:16:51.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:51 smithi183 bash[18593]: audit 2024-02-11T16:16:50.065197+0000 mon.smithi120 (mon.0) 697 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-11T16:16:51.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:51 smithi183 bash[18593]: audit 2024-02-11T16:16:51.062825+0000 mon.smithi120 (mon.0) 698 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-11T16:16:51.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:51 smithi183 bash[18593]: cluster 2024-02-11T16:16:51.063114+0000 mon.smithi120 (mon.0) 699 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-11T16:16:51.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:51 smithi183 bash[18593]: audit 2024-02-11T16:16:51.065757+0000 mon.smithi120 (mon.0) 700 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-11T16:16:51.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:51 smithi120 bash[14220]: cluster 2024-02-11T16:16:50.060469+0000 mon.smithi120 (mon.0) 696 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-02-11T16:16:51.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:51 smithi120 bash[14220]: audit 2024-02-11T16:16:50.065197+0000 mon.smithi120 (mon.0) 697 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]: dispatch 2024-02-11T16:16:51.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:51 smithi120 bash[14220]: audit 2024-02-11T16:16:51.062825+0000 mon.smithi120 (mon.0) 698 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-02-11T16:16:51.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:51 smithi120 bash[14220]: cluster 2024-02-11T16:16:51.063114+0000 mon.smithi120 (mon.0) 699 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-02-11T16:16:51.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:51 smithi120 bash[14220]: audit 2024-02-11T16:16:51.065757+0000 mon.smithi120 (mon.0) 700 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]: dispatch 2024-02-11T16:16:52.358 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:52 smithi183 bash[18593]: cluster 2024-02-11T16:16:51.580342+0000 mgr.smithi120.tpsohu (mgr.14180) 320 : cluster [DBG] pgmap v292: 193 pgs: 7 creating+peering, 21 unknown, 165 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 255 B/s wr, 1 op/s 2024-02-11T16:16:52.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:52 smithi183 bash[18593]: audit 2024-02-11T16:16:52.066631+0000 mon.smithi120 (mon.0) 701 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-11T16:16:52.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:52 smithi183 bash[18593]: cluster 2024-02-11T16:16:52.066775+0000 mon.smithi120 (mon.0) 702 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-11T16:16:52.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:52 smithi120 bash[14220]: cluster 2024-02-11T16:16:51.580342+0000 mgr.smithi120.tpsohu (mgr.14180) 320 : cluster [DBG] pgmap v292: 193 pgs: 7 creating+peering, 21 unknown, 165 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 1023 B/s rd, 255 B/s wr, 1 op/s 2024-02-11T16:16:52.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:52 smithi120 bash[14220]: audit 2024-02-11T16:16:52.066631+0000 mon.smithi120 (mon.0) 701 : audit [INF] from='client.? 172.21.15.120:0/3409281893' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-02-11T16:16:52.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:52 smithi120 bash[14220]: cluster 2024-02-11T16:16:52.066775+0000 mon.smithi120 (mon.0) 702 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-02-11T16:16:54.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:53 smithi183 bash[18593]: audit 2024-02-11T16:16:52.705380+0000 mon.smithi120 (mon.0) 703 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:54.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:53 smithi183 bash[18593]: audit 2024-02-11T16:16:52.708032+0000 mon.smithi120 (mon.0) 704 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:16:54.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:53 smithi183 bash[18593]: cluster 2024-02-11T16:16:53.086204+0000 mon.smithi120 (mon.0) 705 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-11T16:16:54.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:53 smithi183 bash[18593]: audit 2024-02-11T16:16:53.100004+0000 mon.smithi120 (mon.0) 706 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-11T16:16:54.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:53 smithi183 bash[18593]: audit 2024-02-11T16:16:53.362260+0000 mon.smithi120 (mon.0) 707 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:54.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:53 smithi120 bash[14220]: audit 2024-02-11T16:16:52.705380+0000 mon.smithi120 (mon.0) 703 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:54.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:53 smithi120 bash[14220]: audit 2024-02-11T16:16:52.708032+0000 mon.smithi120 (mon.0) 704 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:16:54.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:53 smithi120 bash[14220]: cluster 2024-02-11T16:16:53.086204+0000 mon.smithi120 (mon.0) 705 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-02-11T16:16:54.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:53 smithi120 bash[14220]: audit 2024-02-11T16:16:53.100004+0000 mon.smithi120 (mon.0) 706 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd=[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]: dispatch 2024-02-11T16:16:54.155 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:53 smithi120 bash[14220]: audit 2024-02-11T16:16:53.362260+0000 mon.smithi120 (mon.0) 707 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:54.167 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-02-11T16:16:54.177 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T16:16:54.178 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- bash -c 'ceph nfs export create rgw --cluster-id foo --pseudo-path /foouser --user-id foouser' 2024-02-11T16:16:55.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:54 smithi183 bash[18593]: cluster 2024-02-11T16:16:53.581287+0000 mgr.smithi120.tpsohu (mgr.14180) 321 : cluster [DBG] pgmap v295: 225 pgs: 10 creating+peering, 42 unknown, 173 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 511 B/s wr, 4 op/s 2024-02-11T16:16:55.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:54 smithi183 bash[18593]: audit 2024-02-11T16:16:54.090507+0000 mon.smithi120 (mon.0) 708 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-11T16:16:55.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:54 smithi183 bash[18593]: cluster 2024-02-11T16:16:54.090707+0000 mon.smithi120 (mon.0) 709 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-11T16:16:55.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:54 smithi120 bash[14220]: cluster 2024-02-11T16:16:53.581287+0000 mgr.smithi120.tpsohu (mgr.14180) 321 : cluster [DBG] pgmap v295: 225 pgs: 10 creating+peering, 42 unknown, 173 active+clean; 5.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 3.0 KiB/s rd, 511 B/s wr, 4 op/s 2024-02-11T16:16:55.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:54 smithi120 bash[14220]: audit 2024-02-11T16:16:54.090507+0000 mon.smithi120 (mon.0) 708 : audit [INF] from='client.? 172.21.15.120:0/1177292596' entity='client.rgw.foorgw.smithi120.dwbrwy' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-02-11T16:16:55.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:54 smithi120 bash[14220]: cluster 2024-02-11T16:16:54.090707+0000 mon.smithi120 (mon.0) 709 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-02-11T16:16:56.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:56 smithi183 bash[18593]: cluster 2024-02-11T16:16:55.090783+0000 mon.smithi120 (mon.0) 710 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-11T16:16:56.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:56 smithi183 bash[18593]: cluster 2024-02-11T16:16:55.582310+0000 mgr.smithi120.tpsohu (mgr.14180) 322 : cluster [DBG] pgmap v298: 225 pgs: 10 creating+peering, 9 unknown, 206 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.5 KiB/s wr, 8 op/s 2024-02-11T16:16:56.406 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:56 smithi120 bash[14220]: cluster 2024-02-11T16:16:55.090783+0000 mon.smithi120 (mon.0) 710 : cluster [DBG] osdmap e61: 8 total, 8 up, 8 in 2024-02-11T16:16:56.407 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:56 smithi120 bash[14220]: cluster 2024-02-11T16:16:55.582310+0000 mgr.smithi120.tpsohu (mgr.14180) 322 : cluster [DBG] pgmap v298: 225 pgs: 10 creating+peering, 9 unknown, 206 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.7 KiB/s rd, 1.5 KiB/s wr, 8 op/s 2024-02-11T16:16:58.166 INFO:teuthology.orchestra.run.smithi120.stdout:{ 2024-02-11T16:16:58.167 INFO:teuthology.orchestra.run.smithi120.stdout: "bind": "/foouser", 2024-02-11T16:16:58.167 INFO:teuthology.orchestra.run.smithi120.stdout: "path": "/", 2024-02-11T16:16:58.167 INFO:teuthology.orchestra.run.smithi120.stdout: "cluster": "foo", 2024-02-11T16:16:58.167 INFO:teuthology.orchestra.run.smithi120.stdout: "mode": "RW", 2024-02-11T16:16:58.167 INFO:teuthology.orchestra.run.smithi120.stdout: "squash": "none" 2024-02-11T16:16:58.167 INFO:teuthology.orchestra.run.smithi120.stdout:} 2024-02-11T16:16:58.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:58 smithi120 bash[14220]: cluster 2024-02-11T16:16:57.583421+0000 mgr.smithi120.tpsohu (mgr.14180) 323 : cluster [DBG] pgmap v299: 225 pgs: 8 creating+peering, 217 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 1.3 KiB/s wr, 8 op/s 2024-02-11T16:16:58.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:58 smithi120 bash[14220]: audit 2024-02-11T16:16:58.466002+0000 mon.smithi120 (mon.0) 711 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:16:58.999 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-11T16:16:59.009 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-02-11T16:16:59.009 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph orch ls -f json 2024-02-11T16:16:59.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:58 smithi183 bash[18593]: cluster 2024-02-11T16:16:57.583421+0000 mgr.smithi120.tpsohu (mgr.14180) 323 : cluster [DBG] pgmap v299: 225 pgs: 8 creating+peering, 217 active+clean; 6.3 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.2 KiB/s rd, 1.3 KiB/s wr, 8 op/s 2024-02-11T16:16:59.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:58 smithi183 bash[18593]: audit 2024-02-11T16:16:58.466002+0000 mon.smithi120 (mon.0) 711 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:59 smithi183 bash[18593]: audit 2024-02-11T16:16:57.966927+0000 mgr.smithi120.tpsohu (mgr.14180) 324 : audit [DBG] from='client.14582 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:17:00.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:59 smithi183 bash[18593]: audit 2024-02-11T16:16:58.915299+0000 mon.smithi120 (mon.0) 712 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:59 smithi183 bash[18593]: audit 2024-02-11T16:16:58.917577+0000 mon.smithi120 (mon.0) 713 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:17:00.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:59 smithi183 bash[18593]: audit 2024-02-11T16:16:58.919104+0000 mon.smithi120 (mon.0) 714 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:17:00.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:59 smithi183 bash[18593]: audit 2024-02-11T16:16:59.333438+0000 mon.smithi120 (mon.0) 715 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:59 smithi183 bash[18593]: audit 2024-02-11T16:16:59.343769+0000 mon.smithi120 (mon.0) 716 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:59 smithi183 bash[18593]: audit 2024-02-11T16:16:59.350762+0000 mon.smithi120 (mon.0) 717 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:59 smithi183 bash[18593]: audit 2024-02-11T16:16:59.361846+0000 mon.smithi120 (mon.0) 718 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:17:00.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:16:59 smithi183 bash[18593]: audit 2024-02-11T16:16:59.381925+0000 mon.smithi120 (mon.0) 719 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:59 smithi120 bash[14220]: audit 2024-02-11T16:16:57.966927+0000 mgr.smithi120.tpsohu (mgr.14180) 324 : audit [DBG] from='client.14582 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "cluster_id": "foo", "pseudo_path": "/foouser", "user_id": "foouser", "target": ["mon-mgr", ""]}]: dispatch 2024-02-11T16:17:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:59 smithi120 bash[14220]: audit 2024-02-11T16:16:58.915299+0000 mon.smithi120 (mon.0) 712 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:59 smithi120 bash[14220]: audit 2024-02-11T16:16:58.917577+0000 mon.smithi120 (mon.0) 713 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:17:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:59 smithi120 bash[14220]: audit 2024-02-11T16:16:58.919104+0000 mon.smithi120 (mon.0) 714 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:17:00.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:59 smithi120 bash[14220]: audit 2024-02-11T16:16:59.333438+0000 mon.smithi120 (mon.0) 715 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:59 smithi120 bash[14220]: audit 2024-02-11T16:16:59.343769+0000 mon.smithi120 (mon.0) 716 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:59 smithi120 bash[14220]: audit 2024-02-11T16:16:59.350762+0000 mon.smithi120 (mon.0) 717 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:00.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:59 smithi120 bash[14220]: audit 2024-02-11T16:16:59.361846+0000 mon.smithi120 (mon.0) 718 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:17:00.405 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:16:59 smithi120 bash[14220]: audit 2024-02-11T16:16:59.381925+0000 mon.smithi120 (mon.0) 719 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:01.177 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:00 smithi120 bash[14220]: cephadm 2024-02-11T16:16:58.926160+0000 mgr.smithi120.tpsohu (mgr.14180) 325 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-11T16:17:01.177 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:00 smithi120 bash[14220]: cephadm 2024-02-11T16:16:59.386141+0000 mgr.smithi120.tpsohu (mgr.14180) 326 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-02-11T16:17:01.177 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:00 smithi120 bash[14220]: cephadm 2024-02-11T16:16:59.395643+0000 mgr.smithi120.tpsohu (mgr.14180) 327 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-02-11T16:17:01.177 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:00 smithi120 bash[14220]: cluster 2024-02-11T16:16:59.584755+0000 mgr.smithi120.tpsohu (mgr.14180) 328 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.0 KiB/s rd, 1.2 KiB/s wr, 9 op/s 2024-02-11T16:17:01.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:00 smithi183 bash[18593]: cephadm 2024-02-11T16:16:58.926160+0000 mgr.smithi120.tpsohu (mgr.14180) 325 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-11T16:17:01.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:00 smithi183 bash[18593]: cephadm 2024-02-11T16:16:59.386141+0000 mgr.smithi120.tpsohu (mgr.14180) 326 : cephadm [INF] Reconfiguring prometheus.smithi120 (dependencies changed)... 2024-02-11T16:17:01.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:00 smithi183 bash[18593]: cephadm 2024-02-11T16:16:59.395643+0000 mgr.smithi120.tpsohu (mgr.14180) 327 : cephadm [INF] Reconfiguring daemon prometheus.smithi120 on smithi120 2024-02-11T16:17:01.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:00 smithi183 bash[18593]: cluster 2024-02-11T16:16:59.584755+0000 mgr.smithi120.tpsohu (mgr.14180) 328 : cluster [DBG] pgmap v300: 225 pgs: 225 active+clean; 6.7 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 4.0 KiB/s rd, 1.2 KiB/s wr, 9 op/s 2024-02-11T16:17:03.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:02 smithi120 bash[14220]: cluster 2024-02-11T16:17:01.585915+0000 mgr.smithi120.tpsohu (mgr.14180) 329 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 6.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 1.2 KiB/s wr, 19 op/s 2024-02-11T16:17:03.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:02 smithi183 bash[18593]: cluster 2024-02-11T16:17:01.585915+0000 mgr.smithi120.tpsohu (mgr.14180) 329 : cluster [DBG] pgmap v301: 225 pgs: 225 active+clean; 6.8 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 1.2 KiB/s wr, 19 op/s 2024-02-11T16:17:04.489 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:17:04.489 INFO:teuthology.orchestra.run.smithi120.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-11T16:07:26.254949Z", "last_refresh": "2024-02-11T16:16:58.899150Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-11T16:07:17.259556Z", "last_refresh": "2024-02-11T16:16:58.452646Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-11T16:07:21.295780Z", "last_refresh": "2024-02-11T16:16:58.899569Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-11T16:15:51.702408Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.120/16"}, "status": {"created": "2024-02-11T16:15:51.699001Z", "last_refresh": "2024-02-11T16:16:58.454759Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.120/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-11T16:07:15.339979Z", "last_refresh": "2024-02-11T16:16:58.453126Z", "running": 2, "size": 2}}, {"events": ["2024-02-11T16:09:01.280112Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi120:172.21.15.120=smithi120", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-11T16:09:01.275075Z", "last_refresh": "2024-02-11T16:16:58.453342Z", "running": 2, "size": 2}}, {"events": ["2024-02-11T16:15:51.697224Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-11T16:15:51.693000Z", "last_refresh": "2024-02-11T16:16:58.901289Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-11T16:07:23.226676Z", "last_refresh": "2024-02-11T16:16:58.453545Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-11T16:09:39.466738Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-11T16:09:39.462399Z", "last_refresh": "2024-02-11T16:16:58.453744Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-11T16:07:19.227026Z", "last_refresh": "2024-02-11T16:16:58.899984Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-02-11T16:15:45.625205Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-11T16:15:59.121503Z", "last_refresh": "2024-02-11T16:16:58.454551Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-11T16:17:05.189 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:04 smithi120 bash[14220]: cluster 2024-02-11T16:17:03.587098+0000 mgr.smithi120.tpsohu (mgr.14180) 330 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.1 KiB/s wr, 19 op/s 2024-02-11T16:17:05.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:04 smithi183 bash[18593]: cluster 2024-02-11T16:17:03.587098+0000 mgr.smithi120.tpsohu (mgr.14180) 330 : cluster [DBG] pgmap v302: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 12 KiB/s rd, 1.1 KiB/s wr, 19 op/s 2024-02-11T16:17:05.882 INFO:tasks.cephadm:nfs.foo has 1/1 2024-02-11T16:17:05.883 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-02-11T16:17:05.892 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-02-11T16:17:05.892 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5db25abe00e218b6920215c0bef70af7e47c7152 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 -- ceph orch ls -f json 2024-02-11T16:17:06.096 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:05 smithi120 bash[14220]: audit 2024-02-11T16:17:04.478296+0000 mgr.smithi120.tpsohu (mgr.14180) 331 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-11T16:17:06.097 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:05 smithi120 bash[14220]: cluster 2024-02-11T16:17:05.588547+0000 mgr.smithi120.tpsohu (mgr.14180) 332 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 780 B/s wr, 17 op/s 2024-02-11T16:17:06.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:05 smithi183 bash[18593]: audit 2024-02-11T16:17:04.478296+0000 mgr.smithi120.tpsohu (mgr.14180) 331 : audit [DBG] from='client.14636 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-11T16:17:06.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:05 smithi183 bash[18593]: cluster 2024-02-11T16:17:05.588547+0000 mgr.smithi120.tpsohu (mgr.14180) 332 : cluster [DBG] pgmap v303: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 11 KiB/s rd, 780 B/s wr, 17 op/s 2024-02-11T16:17:08.544 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:08 smithi120 bash[14220]: audit 2024-02-11T16:17:07.223242+0000 mon.smithi120 (mon.0) 720 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:08.545 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:08 smithi120 bash[14220]: audit 2024-02-11T16:17:07.230718+0000 mon.smithi120 (mon.0) 721 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-11T16:17:08.545 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:08 smithi120 bash[14220]: audit 2024-02-11T16:17:07.231316+0000 mgr.smithi120.tpsohu (mgr.14180) 333 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-11T16:17:08.545 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:08 smithi120 bash[14220]: audit 2024-02-11T16:17:07.236293+0000 mon.smithi120 (mon.0) 722 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:17:08.545 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:08 smithi120 bash[14220]: cluster 2024-02-11T16:17:07.589948+0000 mgr.smithi120.tpsohu (mgr.14180) 334 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-02-11T16:17:08.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:08 smithi183 bash[18593]: audit 2024-02-11T16:17:07.223242+0000 mon.smithi120 (mon.0) 720 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:08.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:08 smithi183 bash[18593]: audit 2024-02-11T16:17:07.230718+0000 mon.smithi120 (mon.0) 721 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-11T16:17:08.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:08 smithi183 bash[18593]: audit 2024-02-11T16:17:07.231316+0000 mgr.smithi120.tpsohu (mgr.14180) 333 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-02-11T16:17:08.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:08 smithi183 bash[18593]: audit 2024-02-11T16:17:07.236293+0000 mon.smithi120 (mon.0) 722 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config dump", "format": "json"}]: dispatch 2024-02-11T16:17:08.609 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:08 smithi183 bash[18593]: cluster 2024-02-11T16:17:07.589948+0000 mgr.smithi120.tpsohu (mgr.14180) 334 : cluster [DBG] pgmap v304: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.4 KiB/s rd, 511 B/s wr, 13 op/s 2024-02-11T16:17:10.675 INFO:teuthology.orchestra.run.smithi120.stdout: 2024-02-11T16:17:10.675 INFO:teuthology.orchestra.run.smithi120.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-02-11T16:07:26.254949Z", "last_refresh": "2024-02-11T16:16:58.899150Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-02-11T16:07:17.259556Z", "last_refresh": "2024-02-11T16:16:58.452646Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "status": {"created": "2024-02-11T16:07:21.295780Z", "last_refresh": "2024-02-11T16:16:58.899569Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-02-11T16:15:51.702408Z service:ingress.nfs.foo [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "nfs.foo", "service_name": "ingress.nfs.foo", "service_type": "ingress", "spec": {"backend_service": "nfs.foo", "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.120/16"}, "status": {"created": "2024-02-11T16:15:51.699001Z", "last_refresh": "2024-02-11T16:16:58.454759Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.120/16"}}, {"placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-02-11T16:07:15.339979Z", "last_refresh": "2024-02-11T16:16:58.453126Z", "running": 2, "size": 2}}, {"events": ["2024-02-11T16:09:01.280112Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi120:172.21.15.120=smithi120", "smithi183:172.21.15.183=smithi183"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-02-11T16:09:01.275075Z", "last_refresh": "2024-02-11T16:16:58.453342Z", "running": 2, "size": 2}}, {"events": ["2024-02-11T16:15:51.697224Z service:nfs.foo [INFO] \"service was created\""], "placement": {"count": 1}, "service_id": "foo", "service_name": "nfs.foo", "service_type": "nfs", "spec": {"port": 12049}, "status": {"created": "2024-02-11T16:15:51.693000Z", "last_refresh": "2024-02-11T16:16:58.901289Z", "ports": [12049], "running": 1, "size": 1}}, {"placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-02-11T16:07:23.226676Z", "last_refresh": "2024-02-11T16:16:58.453545Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-02-11T16:09:39.466738Z service:osd.all-available-devices [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_id": "all-available-devices", "service_name": "osd.all-available-devices", "service_type": "osd", "spec": {"data_devices": {"all": true}, "filter_logic": "AND", "objectstore": "bluestore"}, "status": {"created": "2024-02-11T16:09:39.462399Z", "last_refresh": "2024-02-11T16:16:58.453744Z", "running": 8, "size": 8}}, {"placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-02-11T16:07:19.227026Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2024-02-11T16:15:45.625205Z service:rgw.foorgw [INFO] \"service was created\""], "placement": {"count": 2}, "service_id": "foorgw", "service_name": "rgw.foorgw", "service_type": "rgw", "spec": {"rgw_frontend_port": 8800}, "status": {"created": "2024-02-11T16:15:59.121503Z", "last_refresh": "2024-02-11T16:16:58.454551Z", "ports": [8800], "running": 2, "size": 2}}] 2024-02-11T16:17:10.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:10 smithi120 bash[14220]: cluster 2024-02-11T16:17:09.591234+0000 mgr.smithi120.tpsohu (mgr.14180) 335 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.3 KiB/s rd, 426 B/s wr, 12 op/s 2024-02-11T16:17:11.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:10 smithi183 bash[18593]: cluster 2024-02-11T16:17:09.591234+0000 mgr.smithi120.tpsohu (mgr.14180) 335 : cluster [DBG] pgmap v305: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 9.3 KiB/s rd, 426 B/s wr, 12 op/s 2024-02-11T16:17:11.507 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-02-11T16:17:11.508 INFO:teuthology.run_tasks:Running task vip.exec... 2024-02-11T16:17:11.517 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T16:17:11.518 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-02-11T16:17:11.533 INFO:teuthology.orchestra.run.smithi120.stderr:+ mkdir /mnt/foo 2024-02-11T16:17:11.553 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-02-11T16:17:11.608 INFO:teuthology.orchestra.run.smithi120.stderr:+ sleep 5 2024-02-11T16:17:11.904 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:11 smithi120 bash[14220]: audit 2024-02-11T16:17:10.664845+0000 mgr.smithi120.tpsohu (mgr.14180) 336 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-11T16:17:12.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:11 smithi183 bash[18593]: audit 2024-02-11T16:17:10.664845+0000 mgr.smithi120.tpsohu (mgr.14180) 336 : audit [DBG] from='client.14640 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-02-11T16:17:13.108 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:12 smithi183 bash[18593]: cluster 2024-02-11T16:17:11.592849+0000 mgr.smithi120.tpsohu (mgr.14180) 337 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.2 KiB/s rd, 341 B/s wr, 11 op/s 2024-02-11T16:17:13.154 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:12 smithi120 bash[14220]: cluster 2024-02-11T16:17:11.592849+0000 mgr.smithi120.tpsohu (mgr.14180) 337 : cluster [DBG] pgmap v306: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 8.2 KiB/s rd, 341 B/s wr, 11 op/s 2024-02-11T16:17:14.359 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:14 smithi183 bash[18593]: audit 2024-02-11T16:17:13.024481+0000 mon.smithi120 (mon.0) 723 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:14.360 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:14 smithi183 bash[18593]: cluster 2024-02-11T16:17:13.594075+0000 mgr.smithi120.tpsohu (mgr.14180) 338 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 170 B/s wr, 3 op/s 2024-02-11T16:17:14.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:14 smithi120 bash[14220]: audit 2024-02-11T16:17:13.024481+0000 mon.smithi120 (mon.0) 723 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:14.404 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:14 smithi120 bash[14220]: cluster 2024-02-11T16:17:13.594075+0000 mgr.smithi120.tpsohu (mgr.14180) 338 : cluster [DBG] pgmap v307: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 2.4 KiB/s rd, 170 B/s wr, 3 op/s 2024-02-11T16:17:16.610 DEBUG:teuthology.orchestra.run.smithi120:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.120:/foouser /mnt/foo' 2024-02-11T16:17:16.666 INFO:teuthology.orchestra.run.smithi120.stderr:+ mount -t nfs 10.0.31.120:/foouser /mnt/foo 2024-02-11T16:17:16.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:16 smithi120 bash[14220]: cluster 2024-02-11T16:17:15.595127+0000 mgr.smithi120.tpsohu (mgr.14180) 339 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:17:16.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:16 smithi120 bash[14220]: audit 2024-02-11T16:17:16.161393+0000 mon.smithi120 (mon.0) 724 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:16.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:16 smithi120 bash[14220]: audit 2024-02-11T16:17:16.438615+0000 mon.smithi120 (mon.0) 725 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:17:16.871 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:16 smithi120 bash[14220]: audit 2024-02-11T16:17:16.440227+0000 mon.smithi120 (mon.0) 726 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:17:17.080 INFO:teuthology.orchestra.run.smithi120.stderr:mount.nfs: Protocol not supported 2024-02-11T16:17:17.082 DEBUG:teuthology.orchestra.run:got remote process result: 32 2024-02-11T16:17:17.082 ERROR:teuthology.run_tasks:Saw exception from tasks. Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_5db25abe00e218b6920215c0bef70af7e47c7152/qa/tasks/vip.py", line 60, in exec remote.run( File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi120 with status 32: "sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.120:/foouser /mnt/foo'" 2024-02-11T16:17:17.325 ERROR:teuthology.util.sentry: Sentry event: https://sentry.ceph.com/organizations/ceph/?query=878beeaa9fd54adebe4919aa862f5c26 Traceback (most recent call last): File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/run_tasks.py", line 105, in run_tasks manager = run_one_task(taskname, ctx=ctx, config=config) File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/run_tasks.py", line 83, in run_one_task return task(**kwargs) File "/home/teuthworker/src/github.com_ceph_ceph-c_5db25abe00e218b6920215c0bef70af7e47c7152/qa/tasks/vip.py", line 60, in exec remote.run( File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/remote.py", line 523, in run r = self._runner(client=self.ssh, name=self.shortname, **kwargs) File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 455, in run r.wait() File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 161, in wait self._raise_for_status() File "/home/teuthworker/src/git.ceph.com_teuthology_d9fdb2209e15b39d9f061fd85399f352ce0f0894/teuthology/orchestra/run.py", line 181, in _raise_for_status raise CommandFailedError( teuthology.exceptions.CommandFailedError: Command failed on smithi120 with status 32: "sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.120:/foouser /mnt/foo'" 2024-02-11T16:17:17.327 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-02-11T16:17:17.340 INFO:tasks.vip:Removing 10.0.15.120 (and any VIPs) on smithi120.front.sepia.ceph.com iface enp3s0f1... 2024-02-11T16:17:17.341 DEBUG:teuthology.orchestra.run.smithi120:> sudo ip addr del 10.0.15.120/16 dev enp3s0f1 2024-02-11T16:17:17.345 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:16 smithi183 bash[18593]: cluster 2024-02-11T16:17:15.595127+0000 mgr.smithi120.tpsohu (mgr.14180) 339 : cluster [DBG] pgmap v308: 225 pgs: 225 active+clean; 7.5 KiB data, 2.3 GiB used, 713 GiB / 715 GiB avail; 85 B/s rd, 0 op/s 2024-02-11T16:17:17.345 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:16 smithi183 bash[18593]: audit 2024-02-11T16:17:16.161393+0000 mon.smithi120 (mon.0) 724 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:17.345 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:16 smithi183 bash[18593]: audit 2024-02-11T16:17:16.438615+0000 mon.smithi120 (mon.0) 725 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "config generate-minimal-conf"}]: dispatch 2024-02-11T16:17:17.345 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:16 smithi183 bash[18593]: audit 2024-02-11T16:17:16.440227+0000 mon.smithi120 (mon.0) 726 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "auth get", "entity": "client.admin"}]: dispatch 2024-02-11T16:17:17.361 DEBUG:teuthology.orchestra.run.smithi120:> sudo ip addr del 10.0.31.120/16 dev enp3s0f1 2024-02-11T16:17:17.418 INFO:tasks.vip:Removing 10.0.15.183 (and any VIPs) on smithi183.front.sepia.ceph.com iface enp3s0f1... 2024-02-11T16:17:17.419 DEBUG:teuthology.orchestra.run.smithi183:> sudo ip addr del 10.0.15.183/16 dev enp3s0f1 2024-02-11T16:17:17.437 DEBUG:teuthology.orchestra.run.smithi183:> sudo ip addr del 10.0.31.120/16 dev enp3s0f1 2024-02-11T16:17:17.495 INFO:teuthology.orchestra.run.smithi183.stderr:RTNETLINK answers: Cannot assign requested address 2024-02-11T16:17:17.496 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-02-11T16:17:17.497 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-02-11T16:17:17.507 INFO:tasks.cephadm:Teardown begin 2024-02-11T16:17:17.508 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-11T16:17:17.523 DEBUG:teuthology.orchestra.run.smithi183:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-11T16:17:17.556 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-02-11T16:17:17.556 DEBUG:teuthology.orchestra.run.smithi120:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-11T16:17:17.572 DEBUG:teuthology.orchestra.run.smithi183:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-02-11T16:17:17.607 INFO:tasks.cephadm:Stopping all daemons... 2024-02-11T16:17:17.607 INFO:tasks.cephadm.mon.smithi120:Stopping mon.smithi120... 2024-02-11T16:17:17.607 DEBUG:teuthology.orchestra.run.smithi120:> sudo systemctl stop ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi120 2024-02-11T16:17:17.894 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:17 smithi120 systemd[1]: Stopping Ceph mon.smithi120 for 639b0136-c8f7-11ee-95b9-87774f69a715... 2024-02-11T16:17:17.894 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:17 smithi120 bash[63897]: Error response from daemon: No such container: ceph-639b0136-c8f7-11ee-95b9-87774f69a715-mon.smithi120 2024-02-11T16:17:17.894 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:17 smithi120 bash[14220]: cephadm 2024-02-11T16:17:16.447575+0000 mgr.smithi120.tpsohu (mgr.14180) 340 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-11T16:17:17.894 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:17 smithi120 bash[14220]: audit 2024-02-11T16:17:16.712326+0000 mon.smithi120 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:17.894 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:17 smithi120 bash[14220]: audit 2024-02-11T16:17:16.721555+0000 mon.smithi120 (mon.0) 728 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:17:17.894 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:17 smithi120 bash[14220]: audit 2024-02-11T16:17:16.735644+0000 mon.smithi120 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:17.895 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:17 smithi120 bash[14220]: debug 2024-02-11T16:17:17.809+0000 7f3654985700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi120 -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-02-11T16:17:17.895 INFO:journalctl@ceph.mon.smithi120.smithi120.stdout:Feb 11 16:17:17 smithi120 bash[14220]: debug 2024-02-11T16:17:17.809+0000 7f3654985700 -1 mon.smithi120@0(leader) e2 *** Got Signal Terminated *** 2024-02-11T16:17:18.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:17 smithi183 bash[18593]: cephadm 2024-02-11T16:17:16.447575+0000 mgr.smithi120.tpsohu (mgr.14180) 340 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-02-11T16:17:18.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:17 smithi183 bash[18593]: audit 2024-02-11T16:17:16.712326+0000 mon.smithi120 (mon.0) 727 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:18.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:17 smithi183 bash[18593]: audit 2024-02-11T16:17:16.721555+0000 mon.smithi120 (mon.0) 728 : audit [DBG] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' cmd=[{"prefix": "osd tree", "states": ["destroyed"], "format": "json"}]: dispatch 2024-02-11T16:17:18.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:17 smithi183 bash[18593]: audit 2024-02-11T16:17:16.735644+0000 mon.smithi120 (mon.0) 729 : audit [INF] from='mgr.14180 172.21.15.120:0/3120309548' entity='mgr.smithi120.tpsohu' 2024-02-11T16:17:18.866 DEBUG:teuthology.orchestra.run.smithi120:> sudo pkill -f 'journalctl -f -n 0 -u ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi120.service' 2024-02-11T16:17:18.912 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-11T16:17:18.912 INFO:tasks.cephadm.mon.smithi120:Stopped mon.smithi120 2024-02-11T16:17:18.913 INFO:tasks.cephadm.mon.smithi183:Stopping mon.smithi183... 2024-02-11T16:17:18.913 DEBUG:teuthology.orchestra.run.smithi183:> sudo systemctl stop ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi183 2024-02-11T16:17:19.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:18 smithi183 systemd[1]: Stopping Ceph mon.smithi183 for 639b0136-c8f7-11ee-95b9-87774f69a715... 2024-02-11T16:17:19.109 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:18 smithi183 bash[40679]: Error response from daemon: No such container: ceph-639b0136-c8f7-11ee-95b9-87774f69a715-mon.smithi183 2024-02-11T16:17:19.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:19 smithi183 bash[18593]: debug 2024-02-11T16:17:19.170+0000 7f7d6414c700 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi183 -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-02-11T16:17:19.514 INFO:journalctl@ceph.mon.smithi183.smithi183.stdout:Feb 11 16:17:19 smithi183 bash[18593]: debug 2024-02-11T16:17:19.170+0000 7f7d6414c700 -1 mon.smithi183@1(peon) e2 *** Got Signal Terminated *** 2024-02-11T16:17:20.221 DEBUG:teuthology.orchestra.run.smithi183:> sudo pkill -f 'journalctl -f -n 0 -u ceph-639b0136-c8f7-11ee-95b9-87774f69a715@mon.smithi183.service' 2024-02-11T16:17:20.270 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-02-11T16:17:20.270 INFO:tasks.cephadm.mon.smithi183:Stopped mon.smithi183 2024-02-11T16:17:20.271 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 --force --keep-logs 2024-02-11T16:18:32.130 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 --force --keep-logs 2024-02-11T16:19:29.111 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-11T16:19:29.127 DEBUG:teuthology.orchestra.run.smithi183:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-02-11T16:19:29.141 INFO:tasks.cephadm:Archiving crash dumps... 2024-02-11T16:19:29.143 DEBUG:teuthology.misc:Transferring archived files from smithi120:/var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202/remote/ubuntu@smithi120.front.sepia.ceph.com/crash 2024-02-11T16:19:29.144 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/crash -- . 2024-02-11T16:19:29.183 INFO:teuthology.orchestra.run.smithi120.stderr:tar: /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/crash: Cannot open: No such file or directory 2024-02-11T16:19:29.184 INFO:teuthology.orchestra.run.smithi120.stderr:tar: Error is not recoverable: exiting now 2024-02-11T16:19:29.185 DEBUG:teuthology.misc:Transferring archived files from smithi183:/var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/crash to /home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202/remote/ubuntu@smithi183.front.sepia.ceph.com/crash 2024-02-11T16:19:29.186 DEBUG:teuthology.orchestra.run.smithi183:> sudo tar c -f - -C /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/crash -- . 2024-02-11T16:19:29.201 INFO:teuthology.orchestra.run.smithi183.stderr:tar: /var/lib/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/crash: Cannot open: No such file or directory 2024-02-11T16:19:29.201 INFO:teuthology.orchestra.run.smithi183.stderr:tar: Error is not recoverable: exiting now 2024-02-11T16:19:29.202 INFO:tasks.cephadm:Checking cluster log for badness... 2024-02-11T16:19:29.203 DEBUG:teuthology.orchestra.run.smithi120:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph.log | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | head -n 1 2024-02-11T16:19:29.241 INFO:teuthology.orchestra.run.smithi120.stderr:grep: /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph.log: No such file or directory 2024-02-11T16:19:29.243 INFO:tasks.cephadm:Compressing logs... 2024-02-11T16:19:29.243 DEBUG:teuthology.orchestra.run.smithi120:> 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-02-11T16:19:29.292 DEBUG:teuthology.orchestra.run.smithi183:> 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-02-11T16:19:29.305 INFO:teuthology.orchestra.run.smithi120.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-11T16:19:29.307 INFO:teuthology.orchestra.run.smithi183.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-02-11T16:19:29.318 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-client.rgw.foorgw.smithi120.dwbrwy.log 2024-02-11T16:19:29.318 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.5.log 2024-02-11T16:19:29.319 INFO:teuthology.orchestra.run.smithi183.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mon.smithi183.log 2024-02-11T16:19:29.320 INFO:teuthology.orchestra.run.smithi183.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-client.rgw.foorgw.smithi183.ccjjuh.log 2024-02-11T16:19:29.321 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mon.smithi120.log 2024-02-11T16:19:29.321 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-client.rgw.foorgw.smithi120.dwbrwy.log: gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.1.log 2024-02-11T16:19:29.321 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.5.log: 61.8% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-client.rgw.foorgw.smithi120.dwbrwy.log.gz 2024-02-11T16:19:29.321 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mon.smithi120.log: gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mgr.smithi120.tpsohu.log 2024-02-11T16:19:29.322 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.3.log 2024-02-11T16:19:29.324 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.1.log: /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mgr.smithi120.tpsohu.log: gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-volume.log 2024-02-11T16:19:29.324 INFO:teuthology.orchestra.run.smithi120.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.7.log 2024-02-11T16:19:29.324 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.3.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-11T16:19:29.326 INFO:teuthology.orchestra.run.smithi183.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mgr.smithi183.pltuwd.log 2024-02-11T16:19:29.326 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mon.smithi183.log: gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.6.log 2024-02-11T16:19:29.326 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-client.rgw.foorgw.smithi183.ccjjuh.log: /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mgr.smithi183.pltuwd.log: 59.8% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-client.rgw.foorgw.smithi183.ccjjuh.log.gz 2024-02-11T16:19:29.326 INFO:teuthology.orchestra.run.smithi183.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.0.log 2024-02-11T16:19:29.326 INFO:teuthology.orchestra.run.smithi183.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.4.log 2024-02-11T16:19:29.326 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.6.log: /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-volume.log 2024-02-11T16:19:29.327 INFO:teuthology.orchestra.run.smithi183.stderr:gzip -5 --verbose -- /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.2.log 2024-02-11T16:19:29.327 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.4.log: /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-02-11T16:19:29.327 INFO:teuthology.orchestra.run.smithi183.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.2.log: /var/log/ceph/cephadm.log: 92.3% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mgr.smithi183.pltuwd.log.gz 2024-02-11T16:19:29.329 INFO:teuthology.orchestra.run.smithi183.stderr: 89.4% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-11T16:19:29.333 INFO:teuthology.orchestra.run.smithi120.stderr:/var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-volume.log: /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.7.log: /var/log/ceph/cephadm.log: 92.6% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-volume.log.gz 2024-02-11T16:19:29.334 INFO:teuthology.orchestra.run.smithi183.stderr: 92.6% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-volume.log.gz 2024-02-11T16:19:29.338 INFO:teuthology.orchestra.run.smithi120.stderr: 91.1% -- replaced with /var/log/ceph/cephadm.log.gz 2024-02-11T16:19:29.424 INFO:teuthology.orchestra.run.smithi120.stderr: 88.8% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mgr.smithi120.tpsohu.log.gz 2024-02-11T16:19:29.457 INFO:teuthology.orchestra.run.smithi183.stderr: 92.9% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mon.smithi183.log.gz 2024-02-11T16:19:29.506 INFO:teuthology.orchestra.run.smithi120.stderr: 93.6% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.5.log.gz 2024-02-11T16:19:29.588 INFO:teuthology.orchestra.run.smithi183.stderr: 93.5% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.0.log.gz 2024-02-11T16:19:29.590 INFO:teuthology.orchestra.run.smithi120.stderr: 93.6% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.7.log.gz 2024-02-11T16:19:29.596 INFO:teuthology.orchestra.run.smithi183.stderr: 93.4% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.2.log.gz 2024-02-11T16:19:29.597 INFO:teuthology.orchestra.run.smithi120.stderr: 93.5% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.1.log.gz 2024-02-11T16:19:29.635 INFO:teuthology.orchestra.run.smithi120.stderr: 93.7% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.3.log.gz 2024-02-11T16:19:29.657 INFO:teuthology.orchestra.run.smithi183.stderr: 93.6% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.4.log.gz 2024-02-11T16:19:29.659 INFO:teuthology.orchestra.run.smithi120.stderr: 91.0% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-mon.smithi120.log.gz 2024-02-11T16:19:29.660 INFO:teuthology.orchestra.run.smithi120.stderr: 2024-02-11T16:19:29.660 INFO:teuthology.orchestra.run.smithi120.stderr:real 0m0.366s 2024-02-11T16:19:29.661 INFO:teuthology.orchestra.run.smithi120.stderr:user 0m1.467s 2024-02-11T16:19:29.661 INFO:teuthology.orchestra.run.smithi120.stderr:sys 0m0.075s 2024-02-11T16:19:29.675 INFO:teuthology.orchestra.run.smithi183.stderr: 93.4% -- replaced with /var/log/ceph/639b0136-c8f7-11ee-95b9-87774f69a715/ceph-osd.6.log.gz 2024-02-11T16:19:29.675 INFO:teuthology.orchestra.run.smithi183.stderr: 2024-02-11T16:19:29.675 INFO:teuthology.orchestra.run.smithi183.stderr:real 0m0.378s 2024-02-11T16:19:29.676 INFO:teuthology.orchestra.run.smithi183.stderr:user 0m1.343s 2024-02-11T16:19:29.676 INFO:teuthology.orchestra.run.smithi183.stderr:sys 0m0.071s 2024-02-11T16:19:29.677 INFO:tasks.cephadm:Archiving logs... 2024-02-11T16:19:29.677 DEBUG:teuthology.misc:Transferring archived files from smithi120:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202/remote/ubuntu@smithi120.front.sepia.ceph.com/log 2024-02-11T16:19:29.678 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-11T16:19:29.924 DEBUG:teuthology.misc:Transferring archived files from smithi183:/var/log/ceph to /home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202/remote/ubuntu@smithi183.front.sepia.ceph.com/log 2024-02-11T16:19:29.925 DEBUG:teuthology.orchestra.run.smithi183:> sudo tar c -f - -C /var/log/ceph -- . 2024-02-11T16:19:30.109 INFO:tasks.cephadm:Removing cluster... 2024-02-11T16:19:30.110 DEBUG:teuthology.orchestra.run.smithi120:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 --force 2024-02-11T16:19:31.463 DEBUG:teuthology.orchestra.run.smithi183:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 639b0136-c8f7-11ee-95b9-87774f69a715 --force 2024-02-11T16:19:32.820 INFO:tasks.cephadm:Removing cephadm ... 2024-02-11T16:19:32.821 DEBUG:teuthology.orchestra.run.smithi120:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-11T16:19:32.828 DEBUG:teuthology.orchestra.run.smithi183:> rm -rf /home/ubuntu/cephtest/cephadm 2024-02-11T16:19:32.835 INFO:tasks.cephadm:Teardown complete 2024-02-11T16:19:32.836 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-02-11T16:19:32.849 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_1... 2024-02-11T16:19:32.849 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_1 2024-02-11T16:19:33.175 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-11T16:19:33.176 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:33.177 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_2... 2024-02-11T16:19:33.177 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_2 2024-02-11T16:19:33.495 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-11T16:19:33.496 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:33.497 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_3... 2024-02-11T16:19:33.497 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_3 2024-02-11T16:19:33.783 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-11T16:19:33.785 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:33.785 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi120:/dev/vg_nvme/lv_4... 2024-02-11T16:19:33.786 DEBUG:teuthology.orchestra.run.smithi120:> sudo nvme disconnect -n lv_4 2024-02-11T16:19:34.063 INFO:teuthology.orchestra.run.smithi120.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-11T16:19:34.064 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:34.065 DEBUG:teuthology.orchestra.run.smithi120:> set -ex 2024-02-11T16:19:34.065 DEBUG:teuthology.orchestra.run.smithi120:> sudo dd of=/scratch_devs 2024-02-11T16:19:34.085 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi183:/dev/vg_nvme/lv_1... 2024-02-11T16:19:34.085 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme disconnect -n lv_1 2024-02-11T16:19:34.367 INFO:teuthology.orchestra.run.smithi183.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-02-11T16:19:34.368 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:34.369 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi183:/dev/vg_nvme/lv_2... 2024-02-11T16:19:34.369 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme disconnect -n lv_2 2024-02-11T16:19:34.650 INFO:teuthology.orchestra.run.smithi183.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-02-11T16:19:34.652 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:34.652 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi183:/dev/vg_nvme/lv_3... 2024-02-11T16:19:34.653 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme disconnect -n lv_3 2024-02-11T16:19:34.943 INFO:teuthology.orchestra.run.smithi183.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-02-11T16:19:34.944 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:34.947 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi183:/dev/vg_nvme/lv_4... 2024-02-11T16:19:34.948 DEBUG:teuthology.orchestra.run.smithi183:> sudo nvme disconnect -n lv_4 2024-02-11T16:19:35.226 INFO:teuthology.orchestra.run.smithi183.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-02-11T16:19:35.228 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:35.228 DEBUG:teuthology.orchestra.run.smithi183:> set -ex 2024-02-11T16:19:35.229 DEBUG:teuthology.orchestra.run.smithi183:> sudo dd of=/scratch_devs 2024-02-11T16:19:35.243 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-02-11T16:19:35.255 INFO:teuthology.task.clock:Checking final clock skew... 2024-02-11T16:19:35.255 DEBUG:teuthology.orchestra.run.smithi120:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-11T16:19:35.258 DEBUG:teuthology.orchestra.run.smithi183:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-02-11T16:19:35.275 INFO:teuthology.orchestra.run.smithi120.stdout: remote refid st t when poll reach delay offset jitter 2024-02-11T16:19:35.276 INFO:teuthology.orchestra.run.smithi120.stdout:============================================================================== 2024-02-11T16:19:35.276 INFO:teuthology.orchestra.run.smithi120.stdout:*hv01.front.sepi 44.4.53.2 2 u 53 64 377 0.077 -0.740 0.035 2024-02-11T16:19:35.276 INFO:teuthology.orchestra.run.smithi120.stdout:+hv02.front.sepi 96.245.170.99 3 u 54 64 377 0.092 0.793 0.029 2024-02-11T16:19:35.276 INFO:teuthology.orchestra.run.smithi120.stdout:+hv03.front.sepi 74.6.168.72 3 u 61 64 377 0.076 0.250 0.066 2024-02-11T16:19:35.276 INFO:teuthology.orchestra.run.smithi120.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 0.000 0.000 2024-02-11T16:19:35.303 INFO:teuthology.orchestra.run.smithi183.stdout: remote refid st t when poll reach delay offset jitter 2024-02-11T16:19:35.304 INFO:teuthology.orchestra.run.smithi183.stdout:============================================================================== 2024-02-11T16:19:35.304 INFO:teuthology.orchestra.run.smithi183.stdout:*hv01.front.sepi 44.4.53.2 2 u 56 64 377 0.090 1.563 1.065 2024-02-11T16:19:35.304 INFO:teuthology.orchestra.run.smithi183.stdout:+hv02.front.sepi 96.245.170.99 3 u 54 64 377 0.075 1.748 1.248 2024-02-11T16:19:35.304 INFO:teuthology.orchestra.run.smithi183.stdout:+hv03.front.sepi 74.6.168.72 3 u 60 64 377 0.081 1.145 1.240 2024-02-11T16:19:35.304 INFO:teuthology.orchestra.run.smithi183.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 0.000 0.000 2024-02-11T16:19:35.305 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-02-11T16:19:35.316 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-02-11T16:19:35.317 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-02-11T16:19:35.328 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-02-11T16:19:35.338 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-02-11T16:19:35.348 INFO:teuthology.task.internal:Duration was 1176.237917 seconds 2024-02-11T16:19:35.348 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-02-11T16:19:35.359 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-02-11T16:19:35.359 DEBUG:teuthology.orchestra.run.smithi120:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-11T16:19:35.362 DEBUG:teuthology.orchestra.run.smithi183:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-02-11T16:19:35.410 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-02-11T16:19:35.410 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi120.front.sepia.ceph.com 2024-02-11T16:19:35.410 DEBUG:teuthology.orchestra.run.smithi120:> 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-02-11T16:19:35.465 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi183.front.sepia.ceph.com 2024-02-11T16:19:35.465 DEBUG:teuthology.orchestra.run.smithi183:> 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-02-11T16:19:35.480 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-02-11T16:19:35.480 DEBUG:teuthology.orchestra.run.smithi120:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-11T16:19:35.508 DEBUG:teuthology.orchestra.run.smithi183:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-02-11T16:19:35.566 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-02-11T16:19:35.566 DEBUG:teuthology.orchestra.run.smithi120:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-11T16:19:35.569 DEBUG:teuthology.orchestra.run.smithi183:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-02-11T16:19:35.697 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-02-11T16:19:35.709 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-02-11T16:19:35.709 DEBUG:teuthology.orchestra.run.smithi120:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-11T16:19:35.724 DEBUG:teuthology.orchestra.run.smithi183:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-02-11T16:19:35.742 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-02-11T16:19:35.753 DEBUG:teuthology.orchestra.run.smithi120:> 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-02-11T16:19:35.768 DEBUG:teuthology.orchestra.run.smithi183:> 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-02-11T16:19:35.781 INFO:teuthology.orchestra.run.smithi120.stdout:kernel.core_pattern = core 2024-02-11T16:19:35.799 INFO:teuthology.orchestra.run.smithi183.stdout:kernel.core_pattern = core 2024-02-11T16:19:35.828 DEBUG:teuthology.orchestra.run.smithi120:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-11T16:19:35.855 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:35.856 DEBUG:teuthology.orchestra.run.smithi183:> test -e /home/ubuntu/cephtest/archive/coredump 2024-02-11T16:19:35.875 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-02-11T16:19:35.875 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-02-11T16:19:35.886 INFO:teuthology.task.internal:Transferring archived files... 2024-02-11T16:19:35.887 DEBUG:teuthology.misc:Transferring archived files from smithi120:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202/remote/smithi120 2024-02-11T16:19:35.888 DEBUG:teuthology.orchestra.run.smithi120:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-11T16:19:35.926 DEBUG:teuthology.misc:Transferring archived files from smithi183:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202/remote/smithi183 2024-02-11T16:19:35.927 DEBUG:teuthology.orchestra.run.smithi183:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-02-11T16:19:35.952 INFO:teuthology.task.internal:Removing archive directory... 2024-02-11T16:19:35.952 DEBUG:teuthology.orchestra.run.smithi120:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-11T16:19:35.964 DEBUG:teuthology.orchestra.run.smithi183:> rm -rf -- /home/ubuntu/cephtest/archive 2024-02-11T16:19:35.996 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-02-11T16:19:36.011 INFO:teuthology.task.internal:Not uploading archives. 2024-02-11T16:19:36.011 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-02-11T16:19:36.022 INFO:teuthology.task.internal:Tidying up after the test... 2024-02-11T16:19:36.023 DEBUG:teuthology.orchestra.run.smithi120:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-11T16:19:36.025 DEBUG:teuthology.orchestra.run.smithi183:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-02-11T16:19:36.030 INFO:teuthology.orchestra.run.smithi120.stdout: 1048601 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 11 16:19 /home/ubuntu/cephtest 2024-02-11T16:19:36.045 INFO:teuthology.orchestra.run.smithi183.stdout: 1048601 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Feb 11 16:19 /home/ubuntu/cephtest 2024-02-11T16:19:36.047 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-02-11T16:19:36.059 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-02-11T16:19:36.087 INFO:teuthology.nuke:Checking targets against current locks 2024-02-11T16:19:36.116 DEBUG:teuthology.nuke:shortname: smithi120 2024-02-11T16:19:36.117 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-11T16:19:36.146 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi120.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-11 15:50:49.757096', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2024-02-11T16:19:36.149 DEBUG:teuthology.nuke:shortname: smithi183 2024-02-11T16:19:36.150 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-02-11T16:19:36.175 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi183.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/yuriw-2024-02-11_15:26:36-rados-wip-yuri8-testing-2024-02-07-0820-pacific-distro-default-smithi/7556202', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '20.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-02-11 15:50:49.758623', 'locked_by': 'scheduled_yuriw@teuthology', 'mac_address': None, 'ssh_pub_key': 'ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBFyT/r7xuKfmg50w0OdQebr4A/ptJo1Zk6DyZNZNZM/q5rW+sznh+wvHqeT3e4YtCdZLaXyvMms8o8u8H5nXOYM='} 2024-02-11T16:19:36.199 INFO:teuthology.orchestra.console.smithi120:Power off 2024-02-11T16:19:36.200 DEBUG:teuthology.orchestra.console.smithi120:pexpect command: ipmitool -H smithi120.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-11T16:19:36.223 DEBUG:teuthology.orchestra.console.smithi120:power off output: Chassis Power Control: Down/Off 2024-02-11T16:19:36.224 DEBUG:teuthology.orchestra.console.smithi120:pexpect command: ipmitool -H smithi120.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-11T16:19:36.240 INFO:teuthology.orchestra.console.smithi183:Power off 2024-02-11T16:19:36.240 DEBUG:teuthology.orchestra.console.smithi183:pexpect command: ipmitool -H smithi183.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power off 2024-02-11T16:19:36.250 DEBUG:teuthology.orchestra.console.smithi120:check power output: Chassis Power is on 2024-02-11T16:19:36.262 DEBUG:teuthology.orchestra.console.smithi183:power off output: Chassis Power Control: Down/Off 2024-02-11T16:19:36.263 DEBUG:teuthology.orchestra.console.smithi183:pexpect command: ipmitool -H smithi183.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-11T16:19:36.288 DEBUG:teuthology.orchestra.console.smithi183:check power output: Chassis Power is on 2024-02-11T16:19:40.252 DEBUG:teuthology.orchestra.console.smithi120:pexpect command: ipmitool -H smithi120.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-11T16:19:40.289 DEBUG:teuthology.orchestra.console.smithi183:pexpect command: ipmitool -H smithi183.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-11T16:19:40.366 DEBUG:teuthology.orchestra.console.smithi120:check power output: Chassis Power is on 2024-02-11T16:19:40.400 DEBUG:teuthology.orchestra.console.smithi183:check power output: Chassis Power is on 2024-02-11T16:19:44.372 DEBUG:teuthology.orchestra.console.smithi120:pexpect command: ipmitool -H smithi120.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-11T16:19:44.401 DEBUG:teuthology.orchestra.console.smithi183:pexpect command: ipmitool -H smithi183.ipmi.sepia.ceph.com -I lanplus -U inktank -P ApGNXcA7 power status 2024-02-11T16:19:44.483 DEBUG:teuthology.orchestra.console.smithi120:check power output: Chassis Power is off 2024-02-11T16:19:44.512 DEBUG:teuthology.orchestra.console.smithi183:check power output: Chassis Power is off 2024-02-11T16:19:44.585 INFO:teuthology.orchestra.console.smithi120:Power off completed 2024-02-11T16:19:44.614 INFO:teuthology.orchestra.console.smithi183:Power off completed 2024-02-11T16:19:44.718 INFO:teuthology.run:Summary data: description: rados/cephadm/smoke-roleless/{0-distro/ubuntu_20.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-user 3-final} duration: 1176.2379169464111 failure_reason: 'Command failed on smithi120 with status 32: "sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c ''mount -t nfs 10.0.31.120:/foouser /mnt/foo''"' owner: scheduled_yuriw@teuthology sentry_event: https://sentry.ceph.com/organizations/ceph/?query=878beeaa9fd54adebe4919aa862f5c26 status: fail success: false 2024-02-11T16:19:44.719 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-02-11T16:19:44.796 INFO:teuthology.run:FAIL