2024-09-21T11:37:56.928 INFO:root:teuthology version: 1.2.2.dev2+g3752d38 2024-09-21T11:37:56.945 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-21T11:37:57.043 INFO:teuthology.run:Config: archive_path: /home/teuthworker/archive/gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi/7913879 branch: wip-guits-main-2024-09-21-0813 description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} email: gabrioux@ibm.com first_in_suite: false job_id: '7913879' kernel: kdb: 1 sha1: distro ktype: distro last_in_suite: false machine_type: smithi name: gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi no_nested_subset: false openstack: - volumes: count: 4 size: 10 os_type: ubuntu os_version: '22.04' overrides: admin_socket: branch: wip-guits-main-2024-09-21-0813 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\) - CEPHADM_DAEMON_PLACE_FAIL - CEPHADM_FAILED_DAEMON log-only-match: - CEPHADM_ sha1: 5c1cdc3c470dae78e91a0ed2bcf13509a046d301 ceph-deploy: conf: client: log file: /var/log/ceph/ceph-$name.$pid.log mon: {} install: ceph: flavor: default sha1: 5c1cdc3c470dae78e91a0ed2bcf13509a046d301 workunit: branch: wip-guits-main-2024-09-21-0813 sha1: 5c1cdc3c470dae78e91a0ed2bcf13509a046d301 owner: scheduled_gabrioux@teuthology priority: 70 repo: https://git.ceph.com/ceph-ci.git roles: - - host.a - client.0 - - host.b - client.1 seed: 3041 sha1: 5c1cdc3c470dae78e91a0ed2bcf13509a046d301 sleep_before_teardown: 0 subset: 1/8 suite: orch:cephadm suite_branch: wip-guits-main-2024-09-21-0813 suite_path: /home/teuthworker/src/git.ceph.com_ceph-c_5c1cdc3c470dae78e91a0ed2bcf13509a046d301/qa suite_relpath: qa suite_repo: https://git.ceph.com/ceph-ci.git suite_sha1: 5c1cdc3c470dae78e91a0ed2bcf13509a046d301 targets: smithi078.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBOfgR3KzLfYTQd48PK0RmYZ6Cht4ehrvHu+emmEcMTPE/xY3eR87outc2W8Jh0CzkHZQAMA95Fk+RXfJFuZPoSA= smithi195.front.sepia.ceph.com: ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBEQNbFErE3JXUd8XEhLDh7Vy02v9Zxf8Al8zfXPGQj/d3aefIMhtUTSfooTzwrtMLvoIux8Ft1ZTATvplCBoGP4= 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 --bucket foobucket --cluster-id foo --pseudo-path /foobucket - 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}}:/foobucket /mnt/foo - find /mnt/foo -ls - grep thebody /mnt/foo/myobject - echo test > /mnt/foo/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 /foobucket - 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: 3752d3834a7b6cd13dc17dfaa6c2fd3658f3439a timestamp: 2024-09-21_10:07:29 tube: smithi user: gabrioux verbose: true worker_log: /home/teuthworker/archive/worker_logs/dispatcher.smithi.2902 2024-09-21T11:37:57.043 INFO:teuthology.run:suite_path is set to /home/teuthworker/src/git.ceph.com_ceph-c_5c1cdc3c470dae78e91a0ed2bcf13509a046d301/qa; will attempt to use it 2024-09-21T11:37:57.044 INFO:teuthology.run:Found tasks at /home/teuthworker/src/git.ceph.com_ceph-c_5c1cdc3c470dae78e91a0ed2bcf13509a046d301/qa/tasks 2024-09-21T11:37:57.045 INFO:teuthology.run_tasks:Running task internal.check_packages... 2024-09-21T11:37:57.047 INFO:teuthology.task.internal:Checking packages... 2024-09-21T11:37:57.075 INFO:teuthology.task.internal:Checking packages for os_type 'ubuntu', flavor 'default' and ceph hash '5c1cdc3c470dae78e91a0ed2bcf13509a046d301' 2024-09-21T11:37:57.075 WARNING:teuthology.packaging:More than one of ref, tag, branch, or sha1 supplied; using branch 2024-09-21T11:37:57.075 INFO:teuthology.packaging:ref: None 2024-09-21T11:37:57.075 INFO:teuthology.packaging:tag: None 2024-09-21T11:37:57.076 INFO:teuthology.packaging:branch: wip-guits-main-2024-09-21-0813 2024-09-21T11:37:57.076 INFO:teuthology.packaging:sha1: 5c1cdc3c470dae78e91a0ed2bcf13509a046d301 2024-09-21T11:37:57.076 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&ref=wip-guits-main-2024-09-21-0813 2024-09-21T11:37:57.220 INFO:teuthology.task.internal:Found packages for ceph version 19.3.0-5103-g5c1cdc3c-1jammy 2024-09-21T11:37:57.221 INFO:teuthology.run_tasks:Running task internal.buildpackages_prep... 2024-09-21T11:37:57.227 INFO:teuthology.task.internal:no buildpackages task found 2024-09-21T11:37:57.227 INFO:teuthology.run_tasks:Running task internal.save_config... 2024-09-21T11:37:57.250 INFO:teuthology.task.internal:Saving configuration 2024-09-21T11:37:57.263 INFO:teuthology.run_tasks:Running task internal.check_lock... 2024-09-21T11:37:57.299 INFO:teuthology.task.internal.check_lock:Checking locks... 2024-09-21T11:37:57.325 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi078.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi/7913879', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-21 11:32:33.941434', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFuZJCcuyM4XDPHVnMix+3jkEIC4q6p9rmezK7C0lhGi'} 2024-09-21T11:37:57.349 DEBUG:teuthology.task.internal.check_lock:machine status is {'name': 'smithi195.front.sepia.ceph.com', 'description': '/home/teuthworker/archive/gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi/7913879', 'up': True, 'machine_type': 'smithi', 'is_vm': False, 'vm_host': None, 'os_type': 'ubuntu', 'os_version': '22.04', 'arch': 'x86_64', 'locked': True, 'locked_since': '2024-09-21 11:32:33.943460', 'locked_by': 'scheduled_gabrioux@teuthology', 'mac_address': None, 'ssh_pub_key': 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIN8tGXZGTmWft2r/FxN0p32weE5dclRD333HdlF1t4MD'} 2024-09-21T11:37:57.349 INFO:teuthology.run_tasks:Running task internal.add_remotes... 2024-09-21T11:37:57.356 INFO:teuthology.task.internal:roles: ubuntu@smithi078.front.sepia.ceph.com - ['host.a', 'client.0'] 2024-09-21T11:37:57.356 INFO:teuthology.task.internal:roles: ubuntu@smithi195.front.sepia.ceph.com - ['host.b', 'client.1'] 2024-09-21T11:37:57.356 INFO:teuthology.run_tasks:Running task console_log... 2024-09-21T11:37:57.458 DEBUG:teuthology.exit:Installing handler: Handler(exiter=, func=.kill_console_loggers at 0x7f9cfe620280>, signals=[15]) 2024-09-21T11:37:57.458 INFO:teuthology.run_tasks:Running task internal.connect... 2024-09-21T11:37:57.464 INFO:teuthology.task.internal:Opening connections... 2024-09-21T11:37:57.464 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:37:57.465 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi078.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:37:57.559 DEBUG:teuthology.task.internal:connecting to ubuntu@smithi195.front.sepia.ceph.com 2024-09-21T11:37:57.559 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:37:57.652 INFO:teuthology.run_tasks:Running task internal.push_inventory... 2024-09-21T11:37:57.659 DEBUG:teuthology.orchestra.run.smithi078:> uname -m 2024-09-21T11:37:57.664 INFO:teuthology.orchestra.run.smithi078.stdout:x86_64 2024-09-21T11:37:57.665 DEBUG:teuthology.orchestra.run.smithi078:> cat /etc/os-release 2024-09-21T11:37:57.710 INFO:teuthology.orchestra.run.smithi078.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:NAME="Ubuntu" 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:VERSION_ID="22.04" 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:VERSION_CODENAME=jammy 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:ID=ubuntu 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:ID_LIKE=debian 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-21T11:37:57.711 INFO:teuthology.orchestra.run.smithi078.stdout:UBUNTU_CODENAME=jammy 2024-09-21T11:37:57.712 INFO:teuthology.lock.ops:Updating smithi078.front.sepia.ceph.com on lock server 2024-09-21T11:37:57.736 DEBUG:teuthology.orchestra.run.smithi195:> uname -m 2024-09-21T11:37:57.741 INFO:teuthology.orchestra.run.smithi195.stdout:x86_64 2024-09-21T11:37:57.742 DEBUG:teuthology.orchestra.run.smithi195:> cat /etc/os-release 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:PRETTY_NAME="Ubuntu 22.04.1 LTS" 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:NAME="Ubuntu" 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:VERSION_ID="22.04" 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:VERSION="22.04.1 LTS (Jammy Jellyfish)" 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:VERSION_CODENAME=jammy 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:ID=ubuntu 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:ID_LIKE=debian 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:HOME_URL="https://www.ubuntu.com/" 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:SUPPORT_URL="https://help.ubuntu.com/" 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:BUG_REPORT_URL="https://bugs.launchpad.net/ubuntu/" 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:PRIVACY_POLICY_URL="https://www.ubuntu.com/legal/terms-and-policies/privacy-policy" 2024-09-21T11:37:57.791 INFO:teuthology.orchestra.run.smithi195.stdout:UBUNTU_CODENAME=jammy 2024-09-21T11:37:57.792 INFO:teuthology.lock.ops:Updating smithi195.front.sepia.ceph.com on lock server 2024-09-21T11:37:57.819 INFO:teuthology.run_tasks:Running task internal.serialize_remote_roles... 2024-09-21T11:37:57.827 INFO:teuthology.run_tasks:Running task internal.check_conflict... 2024-09-21T11:37:57.833 INFO:teuthology.task.internal:Checking for old test directory... 2024-09-21T11:37:57.834 DEBUG:teuthology.orchestra.run.smithi078:> test '!' -e /home/ubuntu/cephtest 2024-09-21T11:37:57.836 DEBUG:teuthology.orchestra.run.smithi195:> test '!' -e /home/ubuntu/cephtest 2024-09-21T11:37:57.841 INFO:teuthology.run_tasks:Running task internal.check_ceph_data... 2024-09-21T11:37:57.847 INFO:teuthology.task.internal:Checking for non-empty /var/lib/ceph... 2024-09-21T11:37:57.847 DEBUG:teuthology.orchestra.run.smithi078:> test -z $(ls -A /var/lib/ceph) 2024-09-21T11:37:57.884 DEBUG:teuthology.orchestra.run.smithi195:> test -z $(ls -A /var/lib/ceph) 2024-09-21T11:37:57.922 INFO:teuthology.run_tasks:Running task internal.vm_setup... 2024-09-21T11:37:57.977 INFO:teuthology.run_tasks:Running task kernel... 2024-09-21T11:37:57.990 INFO:teuthology.task.kernel:normalize config orig: {'kdb': 1, 'sha1': 'distro'} 2024-09-21T11:37:57.990 INFO:teuthology.task.kernel:config {'host.a': {'kdb': 1, 'sha1': 'distro'}, 'host.b': {'kdb': 1, 'sha1': 'distro'}}, timeout 300 2024-09-21T11:37:57.990 DEBUG:teuthology.orchestra.run.smithi078:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-21T11:37:57.991 DEBUG:teuthology.orchestra.run.smithi195:> test -f /run/.containerenv -o -f /.dockerenv 2024-09-21T11:37:57.995 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T11:37:57.996 DEBUG:teuthology.orchestra.run.smithi078:> uname -r 2024-09-21T11:37:57.996 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T11:37:57.997 DEBUG:teuthology.orchestra.run.smithi195:> uname -r 2024-09-21T11:37:58.042 INFO:teuthology.orchestra.run.smithi078.stdout:5.15.0-56-generic 2024-09-21T11:37:58.042 INFO:teuthology.task.kernel:Running kernel on smithi078: 5.15.0-56-generic 2024-09-21T11:37:58.043 DEBUG:teuthology.orchestra.run.smithi078:> sudo apt-get clean 2024-09-21T11:37:58.043 INFO:teuthology.orchestra.run.smithi195.stdout:5.15.0-56-generic 2024-09-21T11:37:58.044 INFO:teuthology.task.kernel:Running kernel on smithi195: 5.15.0-56-generic 2024-09-21T11:37:58.044 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get clean 2024-09-21T11:37:58.174 DEBUG:teuthology.orchestra.run.smithi078:> sudo apt-get update 2024-09-21T11:37:58.179 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get update 2024-09-21T11:37:58.437 INFO:teuthology.orchestra.run.smithi078.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-21T11:37:58.438 INFO:teuthology.orchestra.run.smithi078.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-21T11:37:58.504 INFO:teuthology.orchestra.run.smithi078.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-21T11:37:58.520 INFO:teuthology.orchestra.run.smithi078.stdout:Get:4 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-21T11:37:58.543 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-21T11:37:58.549 INFO:teuthology.orchestra.run.smithi195.stdout:Get:2 http://security.ubuntu.com/ubuntu jammy-security InRelease [129 kB] 2024-09-21T11:37:58.601 INFO:teuthology.orchestra.run.smithi195.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease [128 kB] 2024-09-21T11:37:58.672 INFO:teuthology.orchestra.run.smithi078.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [703 kB] 2024-09-21T11:37:58.736 INFO:teuthology.orchestra.run.smithi078.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,062 kB] 2024-09-21T11:37:58.775 INFO:teuthology.orchestra.run.smithi078.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [356 kB] 2024-09-21T11:37:58.777 INFO:teuthology.orchestra.run.smithi078.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-21T11:37:58.780 INFO:teuthology.orchestra.run.smithi078.stdout:Get:9 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,499 kB] 2024-09-21T11:37:58.798 INFO:teuthology.orchestra.run.smithi078.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-21T11:37:58.819 INFO:teuthology.orchestra.run.smithi078.stdout:Get:11 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [430 kB] 2024-09-21T11:37:58.821 INFO:teuthology.orchestra.run.smithi078.stdout:Get:12 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-21T11:37:58.824 INFO:teuthology.orchestra.run.smithi078.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,125 kB] 2024-09-21T11:37:58.856 INFO:teuthology.orchestra.run.smithi078.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [733 kB] 2024-09-21T11:37:58.861 INFO:teuthology.orchestra.run.smithi078.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-21T11:37:58.863 INFO:teuthology.orchestra.run.smithi078.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-21T11:37:58.863 INFO:teuthology.orchestra.run.smithi078.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-21T11:37:58.863 INFO:teuthology.orchestra.run.smithi078.stdout:Get:18 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-21T11:37:58.864 INFO:teuthology.orchestra.run.smithi078.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-21T11:37:58.864 INFO:teuthology.orchestra.run.smithi078.stdout:Get:20 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-21T11:37:58.864 INFO:teuthology.orchestra.run.smithi078.stdout:Get:21 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-21T11:37:58.864 INFO:teuthology.orchestra.run.smithi078.stdout:Get:22 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-21T11:37:58.875 INFO:teuthology.orchestra.run.smithi078.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-21T11:37:58.893 INFO:teuthology.orchestra.run.smithi078.stdout:Get:24 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-21T11:37:58.893 INFO:teuthology.orchestra.run.smithi078.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-21T11:37:58.893 INFO:teuthology.orchestra.run.smithi078.stdout:Get:26 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-21T11:37:58.893 INFO:teuthology.orchestra.run.smithi078.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-21T11:37:58.893 INFO:teuthology.orchestra.run.smithi078.stdout:Get:28 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-21T11:37:58.956 INFO:teuthology.orchestra.run.smithi195.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease [127 kB] 2024-09-21T11:37:58.962 INFO:teuthology.orchestra.run.smithi078.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-21T11:37:58.976 INFO:teuthology.orchestra.run.smithi195.stdout:Get:5 http://security.ubuntu.com/ubuntu jammy-security/main i386 Packages [544 kB] 2024-09-21T11:37:59.095 INFO:teuthology.orchestra.run.smithi195.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main i386 Packages [703 kB] 2024-09-21T11:37:59.248 INFO:teuthology.orchestra.run.smithi078.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-21T11:37:59.272 INFO:teuthology.orchestra.run.smithi195.stdout:Get:7 http://security.ubuntu.com/ubuntu jammy-security/main amd64 Packages [1,839 kB] 2024-09-21T11:37:59.290 INFO:teuthology.orchestra.run.smithi195.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 Packages [2,062 kB] 2024-09-21T11:37:59.423 INFO:teuthology.orchestra.run.smithi078.stdout:Get:31 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-21T11:37:59.435 INFO:teuthology.orchestra.run.smithi078.stdout:Get:32 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-21T11:37:59.436 INFO:teuthology.orchestra.run.smithi078.stdout:Get:33 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-21T11:37:59.446 INFO:teuthology.orchestra.run.smithi195.stdout:Get:9 http://security.ubuntu.com/ubuntu jammy-security/main Translation-en [298 kB] 2024-09-21T11:37:59.450 INFO:teuthology.orchestra.run.smithi195.stdout:Get:10 http://archive.ubuntu.com/ubuntu jammy-updates/main Translation-en [356 kB] 2024-09-21T11:37:59.458 INFO:teuthology.orchestra.run.smithi195.stdout:Get:11 http://security.ubuntu.com/ubuntu jammy-security/main amd64 c-n-f Metadata [13.3 kB] 2024-09-21T11:37:59.459 INFO:teuthology.orchestra.run.smithi195.stdout:Get:12 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 Packages [2,431 kB] 2024-09-21T11:37:59.464 INFO:teuthology.orchestra.run.smithi195.stdout:Get:13 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 c-n-f Metadata [17.8 kB] 2024-09-21T11:37:59.465 INFO:teuthology.orchestra.run.smithi195.stdout:Get:14 http://archive.ubuntu.com/ubuntu jammy-updates/restricted i386 Packages [39.3 kB] 2024-09-21T11:37:59.466 INFO:teuthology.orchestra.run.smithi195.stdout:Get:15 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 Packages [2,499 kB] 2024-09-21T11:37:59.521 INFO:teuthology.orchestra.run.smithi078.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-21T11:37:59.522 INFO:teuthology.orchestra.run.smithi078.stdout:Get:35 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-21T11:37:59.530 INFO:teuthology.orchestra.run.smithi078.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-21T11:37:59.530 INFO:teuthology.orchestra.run.smithi078.stdout:Get:37 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [629 kB] 2024-09-21T11:37:59.535 INFO:teuthology.orchestra.run.smithi195.stdout:Get:16 http://archive.ubuntu.com/ubuntu jammy-updates/restricted Translation-en [430 kB] 2024-09-21T11:37:59.548 INFO:teuthology.orchestra.run.smithi078.stdout:Get:38 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [905 kB] 2024-09-21T11:37:59.556 INFO:teuthology.orchestra.run.smithi195.stdout:Get:17 http://archive.ubuntu.com/ubuntu jammy-updates/restricted amd64 c-n-f Metadata [616 B] 2024-09-21T11:37:59.556 INFO:teuthology.orchestra.run.smithi195.stdout:Get:18 http://security.ubuntu.com/ubuntu jammy-security/restricted i386 Packages [37.7 kB] 2024-09-21T11:37:59.557 INFO:teuthology.orchestra.run.smithi195.stdout:Get:19 http://archive.ubuntu.com/ubuntu jammy-updates/universe i386 Packages [733 kB] 2024-09-21T11:37:59.557 INFO:teuthology.orchestra.run.smithi195.stdout:Get:20 http://security.ubuntu.com/ubuntu jammy-security/restricted Translation-en [418 kB] 2024-09-21T11:37:59.565 INFO:teuthology.orchestra.run.smithi195.stdout:Get:21 http://security.ubuntu.com/ubuntu jammy-security/restricted amd64 c-n-f Metadata [584 B] 2024-09-21T11:37:59.565 INFO:teuthology.orchestra.run.smithi195.stdout:Get:22 http://security.ubuntu.com/ubuntu jammy-security/universe i386 Packages [629 kB] 2024-09-21T11:37:59.574 INFO:teuthology.orchestra.run.smithi195.stdout:Get:23 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 Packages [1,125 kB] 2024-09-21T11:37:59.576 INFO:teuthology.orchestra.run.smithi195.stdout:Get:24 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 Packages [905 kB] 2024-09-21T11:37:59.584 INFO:teuthology.orchestra.run.smithi078.stdout:Get:39 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-21T11:37:59.587 INFO:teuthology.orchestra.run.smithi078.stdout:Get:40 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-21T11:37:59.589 INFO:teuthology.orchestra.run.smithi078.stdout:Get:41 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-21T11:37:59.589 INFO:teuthology.orchestra.run.smithi078.stdout:Get:42 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-21T11:37:59.604 INFO:teuthology.orchestra.run.smithi195.stdout:Get:25 http://archive.ubuntu.com/ubuntu jammy-updates/universe Translation-en [261 kB] 2024-09-21T11:37:59.607 INFO:teuthology.orchestra.run.smithi195.stdout:Get:26 http://security.ubuntu.com/ubuntu jammy-security/universe Translation-en [177 kB] 2024-09-21T11:37:59.609 INFO:teuthology.orchestra.run.smithi195.stdout:Get:27 http://archive.ubuntu.com/ubuntu jammy-updates/universe amd64 c-n-f Metadata [26.1 kB] 2024-09-21T11:37:59.610 INFO:teuthology.orchestra.run.smithi195.stdout:Get:28 http://security.ubuntu.com/ubuntu jammy-security/universe amd64 c-n-f Metadata [19.3 kB] 2024-09-21T11:37:59.611 INFO:teuthology.orchestra.run.smithi195.stdout:Get:29 http://security.ubuntu.com/ubuntu jammy-security/multiverse i386 Packages [1,356 B] 2024-09-21T11:37:59.611 INFO:teuthology.orchestra.run.smithi195.stdout:Get:30 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 Packages [37.2 kB] 2024-09-21T11:37:59.614 INFO:teuthology.orchestra.run.smithi195.stdout:Get:31 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 Packages [43.3 kB] 2024-09-21T11:37:59.618 INFO:teuthology.orchestra.run.smithi195.stdout:Get:32 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse i386 Packages [4,752 B] 2024-09-21T11:37:59.618 INFO:teuthology.orchestra.run.smithi195.stdout:Get:33 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse Translation-en [10.8 kB] 2024-09-21T11:37:59.670 INFO:teuthology.orchestra.run.smithi078.stdout:Get:43 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-21T11:37:59.670 INFO:teuthology.orchestra.run.smithi078.stdout:Get:44 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-21T11:37:59.691 INFO:teuthology.orchestra.run.smithi195.stdout:Get:34 http://security.ubuntu.com/ubuntu jammy-security/multiverse Translation-en [7,588 B] 2024-09-21T11:37:59.692 INFO:teuthology.orchestra.run.smithi195.stdout:Get:35 http://archive.ubuntu.com/ubuntu jammy-updates/multiverse amd64 c-n-f Metadata [444 B] 2024-09-21T11:37:59.692 INFO:teuthology.orchestra.run.smithi195.stdout:Get:36 http://security.ubuntu.com/ubuntu jammy-security/multiverse amd64 c-n-f Metadata [228 B] 2024-09-21T11:37:59.692 INFO:teuthology.orchestra.run.smithi195.stdout:Get:37 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 Packages [67.8 kB] 2024-09-21T11:37:59.694 INFO:teuthology.orchestra.run.smithi195.stdout:Get:38 http://archive.ubuntu.com/ubuntu jammy-backports/main i386 Packages [59.9 kB] 2024-09-21T11:37:59.695 INFO:teuthology.orchestra.run.smithi195.stdout:Get:39 http://archive.ubuntu.com/ubuntu jammy-backports/main Translation-en [11.1 kB] 2024-09-21T11:37:59.695 INFO:teuthology.orchestra.run.smithi195.stdout:Get:40 http://archive.ubuntu.com/ubuntu jammy-backports/main amd64 c-n-f Metadata [388 B] 2024-09-21T11:37:59.696 INFO:teuthology.orchestra.run.smithi195.stdout:Get:41 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 Packages [28.8 kB] 2024-09-21T11:37:59.696 INFO:teuthology.orchestra.run.smithi195.stdout:Get:42 http://archive.ubuntu.com/ubuntu jammy-backports/universe i386 Packages [17.3 kB] 2024-09-21T11:37:59.777 INFO:teuthology.orchestra.run.smithi195.stdout:Get:43 http://archive.ubuntu.com/ubuntu jammy-backports/universe Translation-en [16.5 kB] 2024-09-21T11:37:59.777 INFO:teuthology.orchestra.run.smithi195.stdout:Get:44 http://archive.ubuntu.com/ubuntu jammy-backports/universe amd64 c-n-f Metadata [672 B] 2024-09-21T11:38:05.149 INFO:teuthology.orchestra.run.smithi078.stdout:Fetched 16.3 MB in 2s (7,204 kB/s) 2024-09-21T11:38:05.783 INFO:teuthology.orchestra.run.smithi195.stdout:Fetched 16.3 MB in 3s (5,765 kB/s) 2024-09-21T11:38:06.566 INFO:teuthology.orchestra.run.smithi078.stdout:Reading package lists... 2024-09-21T11:38:06.581 DEBUG:teuthology.orchestra.run.smithi078:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-21T11:38:06.641 INFO:teuthology.orchestra.run.smithi078.stdout:Reading package lists... 2024-09-21T11:38:06.851 INFO:teuthology.orchestra.run.smithi078.stdout:Building dependency tree... 2024-09-21T11:38:06.852 INFO:teuthology.orchestra.run.smithi078.stdout:Reading state information... 2024-09-21T11:38:07.028 INFO:teuthology.orchestra.run.smithi078.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T11:38:07.028 INFO:teuthology.orchestra.run.smithi078.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T11:38:07.028 INFO:teuthology.orchestra.run.smithi078.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T11:38:07.028 INFO:teuthology.orchestra.run.smithi078.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T11:38:07.029 INFO:teuthology.orchestra.run.smithi078.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-21T11:38:07.029 INFO:teuthology.orchestra.run.smithi078.stdout: python2.7-minimal 2024-09-21T11:38:07.029 INFO:teuthology.orchestra.run.smithi078.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T11:38:07.030 INFO:teuthology.orchestra.run.smithi078.stdout:The following additional packages will be installed: 2024-09-21T11:38:07.030 INFO:teuthology.orchestra.run.smithi078.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-21T11:38:07.030 INFO:teuthology.orchestra.run.smithi078.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-21T11:38:07.030 INFO:teuthology.orchestra.run.smithi078.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-21T11:38:07.032 INFO:teuthology.orchestra.run.smithi078.stdout:Suggested packages: 2024-09-21T11:38:07.032 INFO:teuthology.orchestra.run.smithi078.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-21T11:38:07.032 INFO:teuthology.orchestra.run.smithi078.stdout:Recommended packages: 2024-09-21T11:38:07.032 INFO:teuthology.orchestra.run.smithi078.stdout: thermald 2024-09-21T11:38:07.088 INFO:teuthology.orchestra.run.smithi078.stdout:The following NEW packages will be installed: 2024-09-21T11:38:07.089 INFO:teuthology.orchestra.run.smithi078.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-21T11:38:07.089 INFO:teuthology.orchestra.run.smithi078.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-21T11:38:07.089 INFO:teuthology.orchestra.run.smithi078.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-21T11:38:07.090 INFO:teuthology.orchestra.run.smithi078.stdout:The following packages will be upgraded: 2024-09-21T11:38:07.091 INFO:teuthology.orchestra.run.smithi078.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-21T11:38:07.145 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-09-21T11:38:07.162 DEBUG:teuthology.orchestra.run.smithi195:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-21T11:38:07.216 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-09-21T11:38:07.270 INFO:teuthology.orchestra.run.smithi078.stdout:3 upgraded, 5 newly installed, 0 to remove and 345 not upgraded. 2024-09-21T11:38:07.270 INFO:teuthology.orchestra.run.smithi078.stdout:Need to get 113 MB of archives. 2024-09-21T11:38:07.270 INFO:teuthology.orchestra.run.smithi078.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-21T11:38:07.271 INFO:teuthology.orchestra.run.smithi078.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-21T11:38:07.410 INFO:teuthology.orchestra.run.smithi195.stdout:Building dependency tree... 2024-09-21T11:38:07.410 INFO:teuthology.orchestra.run.smithi195.stdout:Reading state information... 2024-09-21T11:38:07.580 INFO:teuthology.orchestra.run.smithi195.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T11:38:07.581 INFO:teuthology.orchestra.run.smithi195.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T11:38:07.581 INFO:teuthology.orchestra.run.smithi195.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T11:38:07.581 INFO:teuthology.orchestra.run.smithi195.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T11:38:07.581 INFO:teuthology.orchestra.run.smithi195.stdout: python2 python2-dev python2-minimal python2.7 python2.7-dev 2024-09-21T11:38:07.581 INFO:teuthology.orchestra.run.smithi195.stdout: python2.7-minimal 2024-09-21T11:38:07.581 INFO:teuthology.orchestra.run.smithi195.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T11:38:07.583 INFO:teuthology.orchestra.run.smithi195.stdout:The following additional packages will be installed: 2024-09-21T11:38:07.583 INFO:teuthology.orchestra.run.smithi195.stdout: linux-generic linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-21T11:38:07.583 INFO:teuthology.orchestra.run.smithi195.stdout: linux-headers-generic linux-image-5.15.0-122-generic 2024-09-21T11:38:07.583 INFO:teuthology.orchestra.run.smithi195.stdout: linux-modules-5.15.0-122-generic linux-modules-extra-5.15.0-122-generic 2024-09-21T11:38:07.586 INFO:teuthology.orchestra.run.smithi195.stdout:Suggested packages: 2024-09-21T11:38:07.586 INFO:teuthology.orchestra.run.smithi195.stdout: fdutils linux-doc | linux-source-5.15.0 linux-tools 2024-09-21T11:38:07.586 INFO:teuthology.orchestra.run.smithi195.stdout:Recommended packages: 2024-09-21T11:38:07.586 INFO:teuthology.orchestra.run.smithi195.stdout: thermald 2024-09-21T11:38:07.640 INFO:teuthology.orchestra.run.smithi195.stdout:The following NEW packages will be installed: 2024-09-21T11:38:07.641 INFO:teuthology.orchestra.run.smithi195.stdout: linux-headers-5.15.0-122 linux-headers-5.15.0-122-generic 2024-09-21T11:38:07.641 INFO:teuthology.orchestra.run.smithi195.stdout: linux-image-5.15.0-122-generic linux-modules-5.15.0-122-generic 2024-09-21T11:38:07.641 INFO:teuthology.orchestra.run.smithi195.stdout: linux-modules-extra-5.15.0-122-generic 2024-09-21T11:38:07.643 INFO:teuthology.orchestra.run.smithi195.stdout:The following packages will be upgraded: 2024-09-21T11:38:07.643 INFO:teuthology.orchestra.run.smithi195.stdout: linux-generic linux-headers-generic linux-image-generic 2024-09-21T11:38:07.695 INFO:teuthology.orchestra.run.smithi195.stdout:3 upgraded, 5 newly installed, 0 to remove and 345 not upgraded. 2024-09-21T11:38:07.695 INFO:teuthology.orchestra.run.smithi195.stdout:Need to get 113 MB of archives. 2024-09-21T11:38:07.696 INFO:teuthology.orchestra.run.smithi195.stdout:After this operation, 584 MB of additional disk space will be used. 2024-09-21T11:38:07.696 INFO:teuthology.orchestra.run.smithi195.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-5.15.0-122-generic amd64 5.15.0-122.132 [22.7 MB] 2024-09-21T11:38:08.157 INFO:teuthology.orchestra.run.smithi195.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-21T11:38:08.271 INFO:teuthology.orchestra.run.smithi195.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-21T11:38:08.688 INFO:teuthology.orchestra.run.smithi078.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-5.15.0-122-generic amd64 5.15.0-122.132 [11.5 MB] 2024-09-21T11:38:09.038 INFO:teuthology.orchestra.run.smithi078.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-modules-extra-5.15.0-122-generic amd64 5.15.0-122.132 [63.9 MB] 2024-09-21T11:38:09.080 INFO:teuthology.orchestra.run.smithi195.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-21T11:38:09.080 INFO:teuthology.orchestra.run.smithi195.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-21T11:38:09.080 INFO:teuthology.orchestra.run.smithi195.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-21T11:38:09.202 INFO:teuthology.orchestra.run.smithi195.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-21T11:38:09.224 INFO:teuthology.orchestra.run.smithi195.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-21T11:38:09.628 INFO:teuthology.orchestra.run.smithi195.stdout:Fetched 113 MB in 2s (72.0 MB/s) 2024-09-21T11:38:09.782 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-21T11:38:11.246 INFO:teuthology.orchestra.run.smithi078.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-generic amd64 5.15.0.122.122 [1,692 B] 2024-09-21T11:38:11.246 INFO:teuthology.orchestra.run.smithi078.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-image-generic amd64 5.15.0.122.122 [2,436 B] 2024-09-21T11:38:11.246 INFO:teuthology.orchestra.run.smithi078.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122 all 5.15.0-122.132 [12.3 MB] 2024-09-21T11:38:11.635 INFO:teuthology.orchestra.run.smithi078.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-5.15.0-122-generic amd64 5.15.0-122.132 [2,827 kB] 2024-09-21T11:38:11.684 INFO:teuthology.orchestra.run.smithi078.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 linux-headers-generic amd64 5.15.0.122.122 [2,294 B] 2024-09-21T11:38:11.825 INFO:teuthology.orchestra.run.smithi195.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-21T11:38:11.829 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T11:38:11.888 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:12.094 INFO:teuthology.orchestra.run.smithi078.stdout:Fetched 113 MB in 5s (24.7 MB/s) 2024-09-21T11:38:12.252 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package linux-modules-5.15.0-122-generic. 2024-09-21T11:38:14.198 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-21T11:38:14.219 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T11:38:14.287 INFO:teuthology.orchestra.run.smithi078.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 129542 files and directories currently installed.) 2024-09-21T11:38:14.291 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../0-linux-modules-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T11:38:14.303 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:14.349 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:14.767 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-21T11:38:14.788 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T11:38:14.826 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:16.632 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package linux-image-5.15.0-122-generic. 2024-09-21T11:38:16.645 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../1-linux-image-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T11:38:16.728 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:17.177 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package linux-modules-extra-5.15.0-122-generic. 2024-09-21T11:38:17.198 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../2-linux-modules-extra-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T11:38:17.235 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:20.787 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T11:38:20.911 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T11:38:21.249 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T11:38:21.390 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T11:38:21.643 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-21T11:38:21.665 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-21T11:38:21.726 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-21T11:38:23.144 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../3-linux-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T11:38:23.271 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking linux-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T11:38:23.595 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../4-linux-image-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T11:38:23.708 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking linux-image-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T11:38:24.011 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package linux-headers-5.15.0-122. 2024-09-21T11:38:24.022 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../5-linux-headers-5.15.0-122_5.15.0-122.132_all.deb ... 2024-09-21T11:38:24.052 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-21T11:38:27.362 INFO:teuthology.orchestra.run.smithi195.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-21T11:38:27.399 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T11:38:27.437 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:29.344 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package linux-headers-5.15.0-122-generic. 2024-09-21T11:38:29.381 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../6-linux-headers-5.15.0-122-generic_5.15.0-122.132_amd64.deb ... 2024-09-21T11:38:29.419 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:29.991 INFO:teuthology.orchestra.run.smithi195.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T11:38:30.115 INFO:teuthology.orchestra.run.smithi195.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T11:38:30.432 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-21T11:38:30.536 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:30.637 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-21T11:38:30.758 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:31.929 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../7-linux-headers-generic_5.15.0.122.122_amd64.deb ... 2024-09-21T11:38:32.056 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking linux-headers-generic (5.15.0.122.122) over (5.15.0.56.54) ... 2024-09-21T11:38:32.099 INFO:teuthology.orchestra.run.smithi195.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-21T11:38:32.099 INFO:teuthology.orchestra.run.smithi195.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-21T11:38:32.099 INFO:teuthology.orchestra.run.smithi195.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-21T11:38:32.099 INFO:teuthology.orchestra.run.smithi195.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-21T11:38:32.259 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:32.374 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up linux-headers-5.15.0-122 (5.15.0-122.132) ... 2024-09-21T11:38:32.495 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up linux-headers-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:32.646 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up linux-headers-generic (5.15.0.122.122) ... 2024-09-21T11:38:32.775 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:33.653 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-21T11:38:34.244 INFO:teuthology.orchestra.run.smithi078.stdout:I: /vmlinuz.old is now a symlink to boot/vmlinuz-5.15.0-56-generic 2024-09-21T11:38:34.244 INFO:teuthology.orchestra.run.smithi078.stdout:I: /initrd.img.old is now a symlink to boot/initrd.img-5.15.0-56-generic 2024-09-21T11:38:34.244 INFO:teuthology.orchestra.run.smithi078.stdout:I: /vmlinuz is now a symlink to boot/vmlinuz-5.15.0-122-generic 2024-09-21T11:38:34.244 INFO:teuthology.orchestra.run.smithi078.stdout:I: /initrd.img is now a symlink to boot/initrd.img-5.15.0-122-generic 2024-09-21T11:38:34.463 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-21T11:38:34.705 INFO:teuthology.orchestra.run.smithi195.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:34.885 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up linux-modules-extra-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:36.115 INFO:teuthology.orchestra.run.smithi195.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:36.176 INFO:teuthology.orchestra.run.smithi195.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-21T11:38:36.176 INFO:teuthology.orchestra.run.smithi195.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-21T11:38:36.295 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up linux-image-generic (5.15.0.122.122) ... 2024-09-21T11:38:36.420 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up linux-generic (5.15.0.122.122) ... 2024-09-21T11:38:36.546 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up linux-modules-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:37.948 INFO:teuthology.orchestra.run.smithi078.stdout:Processing triggers for linux-image-5.15.0-122-generic (5.15.0-122.132) ... 2024-09-21T11:38:38.017 INFO:teuthology.orchestra.run.smithi078.stdout:/etc/kernel/postinst.d/initramfs-tools: 2024-09-21T11:38:38.017 INFO:teuthology.orchestra.run.smithi078.stdout:update-initramfs: Generating /boot/initrd.img-5.15.0-122-generic 2024-09-21T11:38:50.580 INFO:teuthology.orchestra.run.smithi195.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-21T11:38:50.580 INFO:teuthology.orchestra.run.smithi195.stdout:Sourcing file `/etc/default/grub' 2024-09-21T11:38:50.588 INFO:teuthology.orchestra.run.smithi195.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-21T11:38:50.604 INFO:teuthology.orchestra.run.smithi195.stdout:Generating grub configuration file ... 2024-09-21T11:38:50.857 INFO:teuthology.orchestra.run.smithi195.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-21T11:38:50.880 INFO:teuthology.orchestra.run.smithi195.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-21T11:38:51.148 INFO:teuthology.orchestra.run.smithi195.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-21T11:38:51.154 INFO:teuthology.orchestra.run.smithi195.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-21T11:38:51.218 INFO:teuthology.orchestra.run.smithi195.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-21T11:38:51.224 INFO:teuthology.orchestra.run.smithi195.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-21T11:38:51.373 INFO:teuthology.orchestra.run.smithi195.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-21T11:38:51.373 INFO:teuthology.orchestra.run.smithi195.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-21T11:38:51.373 INFO:teuthology.orchestra.run.smithi195.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-21T11:38:51.419 INFO:teuthology.orchestra.run.smithi195.stdout:done 2024-09-21T11:38:51.914 DEBUG:teuthology.orchestra.run.smithi195:> dpkg -s linux-image-generic 2024-09-21T11:38:51.939 INFO:teuthology.orchestra.run.smithi195.stdout:Package: linux-image-generic 2024-09-21T11:38:51.939 INFO:teuthology.orchestra.run.smithi195.stdout:Status: install ok installed 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Priority: optional 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Section: kernel 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Installed-Size: 21 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Maintainer: Ubuntu Kernel Team 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Architecture: amd64 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Source: linux-meta 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Version: 5.15.0.122.122 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Recommends: thermald 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout:Description: Generic Linux kernel image 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout: This package will always depend on the latest generic kernel image 2024-09-21T11:38:51.940 INFO:teuthology.orchestra.run.smithi195.stdout: available. 2024-09-21T11:38:51.941 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-21T11:38:51.941 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-21T11:38:51.941 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-21T11:38:51.941 INFO:teuthology.task.kernel:Installing distro kernel on host.b... 2024-09-21T11:38:51.941 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi195.front.sepia.ceph.com, path=None, version=distro) 2024-09-21T11:38:51.941 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get clean 2024-09-21T11:38:52.004 INFO:teuthology.orchestra.run.smithi078.stdout:/etc/kernel/postinst.d/zz-update-grub: 2024-09-21T11:38:52.005 INFO:teuthology.orchestra.run.smithi078.stdout:Sourcing file `/etc/default/grub' 2024-09-21T11:38:52.015 INFO:teuthology.orchestra.run.smithi078.stdout:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-21T11:38:52.029 INFO:teuthology.orchestra.run.smithi078.stdout:Generating grub configuration file ... 2024-09-21T11:38:52.061 DEBUG:teuthology.orchestra.run.smithi195:> sudo apt-get update 2024-09-21T11:38:52.298 INFO:teuthology.orchestra.run.smithi078.stdout:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-21T11:38:52.306 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-21T11:38:52.306 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-21T11:38:52.317 INFO:teuthology.orchestra.run.smithi078.stdout:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-21T11:38:52.377 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-21T11:38:52.458 INFO:teuthology.orchestra.run.smithi195.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-21T11:38:52.594 INFO:teuthology.orchestra.run.smithi078.stdout:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-21T11:38:52.599 INFO:teuthology.orchestra.run.smithi078.stdout:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-21T11:38:52.666 INFO:teuthology.orchestra.run.smithi078.stdout:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-21T11:38:52.672 INFO:teuthology.orchestra.run.smithi078.stdout:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-21T11:38:52.824 INFO:teuthology.orchestra.run.smithi078.stdout:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-21T11:38:52.825 INFO:teuthology.orchestra.run.smithi078.stdout:Systems on them will not be added to the GRUB boot configuration. 2024-09-21T11:38:52.825 INFO:teuthology.orchestra.run.smithi078.stdout:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-21T11:38:52.876 INFO:teuthology.orchestra.run.smithi078.stdout:done 2024-09-21T11:38:53.398 DEBUG:teuthology.orchestra.run.smithi078:> dpkg -s linux-image-generic 2024-09-21T11:38:53.423 INFO:teuthology.orchestra.run.smithi078.stdout:Package: linux-image-generic 2024-09-21T11:38:53.423 INFO:teuthology.orchestra.run.smithi078.stdout:Status: install ok installed 2024-09-21T11:38:53.423 INFO:teuthology.orchestra.run.smithi078.stdout:Priority: optional 2024-09-21T11:38:53.423 INFO:teuthology.orchestra.run.smithi078.stdout:Section: kernel 2024-09-21T11:38:53.423 INFO:teuthology.orchestra.run.smithi078.stdout:Installed-Size: 21 2024-09-21T11:38:53.423 INFO:teuthology.orchestra.run.smithi078.stdout:Maintainer: Ubuntu Kernel Team 2024-09-21T11:38:53.423 INFO:teuthology.orchestra.run.smithi078.stdout:Architecture: amd64 2024-09-21T11:38:53.423 INFO:teuthology.orchestra.run.smithi078.stdout:Source: linux-meta 2024-09-21T11:38:53.424 INFO:teuthology.orchestra.run.smithi078.stdout:Version: 5.15.0.122.122 2024-09-21T11:38:53.424 INFO:teuthology.orchestra.run.smithi078.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-21T11:38:53.424 INFO:teuthology.orchestra.run.smithi078.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-21T11:38:53.424 INFO:teuthology.orchestra.run.smithi078.stdout:Recommends: thermald 2024-09-21T11:38:53.424 INFO:teuthology.orchestra.run.smithi078.stdout:Description: Generic Linux kernel image 2024-09-21T11:38:53.424 INFO:teuthology.orchestra.run.smithi078.stdout: This package will always depend on the latest generic kernel image 2024-09-21T11:38:53.424 INFO:teuthology.orchestra.run.smithi078.stdout: available. 2024-09-21T11:38:53.424 INFO:teuthology.task.kernel:Not newest distro kernel. Current: 5.15.0-56-generic Expected: 5.15.0-122-generic 2024-09-21T11:38:53.424 INFO:teuthology.task.kernel:Skipping firmware on distro kernel 2024-09-21T11:38:53.424 DEBUG:teuthology.task.kernel:src is distro, skipping download 2024-09-21T11:38:53.424 INFO:teuthology.task.kernel:Installing distro kernel on host.a... 2024-09-21T11:38:53.425 DEBUG:teuthology.task.kernel:install_kernel(remote=ubuntu@smithi078.front.sepia.ceph.com, path=None, version=distro) 2024-09-21T11:38:53.425 DEBUG:teuthology.orchestra.run.smithi078:> sudo apt-get clean 2024-09-21T11:38:53.601 DEBUG:teuthology.orchestra.run.smithi078:> sudo apt-get update 2024-09-21T11:38:53.716 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-09-21T11:38:53.734 DEBUG:teuthology.orchestra.run.smithi195:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-21T11:38:53.789 INFO:teuthology.orchestra.run.smithi195.stdout:Reading package lists... 2024-09-21T11:38:53.849 INFO:teuthology.orchestra.run.smithi078.stdout:Hit:1 http://archive.ubuntu.com/ubuntu jammy InRelease 2024-09-21T11:38:53.849 INFO:teuthology.orchestra.run.smithi078.stdout:Hit:2 http://security.ubuntu.com/ubuntu jammy-security InRelease 2024-09-21T11:38:53.921 INFO:teuthology.orchestra.run.smithi078.stdout:Hit:3 http://archive.ubuntu.com/ubuntu jammy-updates InRelease 2024-09-21T11:38:53.976 INFO:teuthology.orchestra.run.smithi195.stdout:Building dependency tree... 2024-09-21T11:38:53.977 INFO:teuthology.orchestra.run.smithi195.stdout:Reading state information... 2024-09-21T11:38:54.002 INFO:teuthology.orchestra.run.smithi078.stdout:Hit:4 http://archive.ubuntu.com/ubuntu jammy-backports InRelease 2024-09-21T11:38:54.150 INFO:teuthology.orchestra.run.smithi195.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-21T11:38:54.150 INFO:teuthology.orchestra.run.smithi195.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T11:38:54.150 INFO:teuthology.orchestra.run.smithi195.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T11:38:54.150 INFO:teuthology.orchestra.run.smithi195.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T11:38:54.150 INFO:teuthology.orchestra.run.smithi195.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T11:38:54.151 INFO:teuthology.orchestra.run.smithi195.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-21T11:38:54.151 INFO:teuthology.orchestra.run.smithi195.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-21T11:38:54.151 INFO:teuthology.orchestra.run.smithi195.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T11:38:54.192 INFO:teuthology.orchestra.run.smithi195.stdout:0 upgraded, 0 newly installed, 0 to remove and 345 not upgraded. 2024-09-21T11:38:54.194 DEBUG:teuthology.orchestra.run.smithi195:> dpkg -s linux-image-generic 2024-09-21T11:38:54.209 INFO:teuthology.orchestra.run.smithi195.stdout:Package: linux-image-generic 2024-09-21T11:38:54.209 INFO:teuthology.orchestra.run.smithi195.stdout:Status: install ok installed 2024-09-21T11:38:54.209 INFO:teuthology.orchestra.run.smithi195.stdout:Priority: optional 2024-09-21T11:38:54.209 INFO:teuthology.orchestra.run.smithi195.stdout:Section: kernel 2024-09-21T11:38:54.209 INFO:teuthology.orchestra.run.smithi195.stdout:Installed-Size: 21 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout:Maintainer: Ubuntu Kernel Team 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout:Architecture: amd64 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout:Source: linux-meta 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout:Version: 5.15.0.122.122 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout:Recommends: thermald 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout:Description: Generic Linux kernel image 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout: This package will always depend on the latest generic kernel image 2024-09-21T11:38:54.210 INFO:teuthology.orchestra.run.smithi195.stdout: available. 2024-09-21T11:38:54.210 DEBUG:teuthology.orchestra.run.smithi195:> mktemp 2024-09-21T11:38:54.258 INFO:teuthology.orchestra.run.smithi195.stdout:/tmp/tmp.DETAdudg0z 2024-09-21T11:38:54.258 DEBUG:teuthology.orchestra.run.smithi195:> sudo cp /boot/grub/grub.cfg /tmp/tmp.DETAdudg0z 2024-09-21T11:38:54.312 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 0666 /tmp/tmp.DETAdudg0z 2024-09-21T11:38:54.438 DEBUG:teuthology.orchestra.remote:smithi195:/tmp/tmp.DETAdudg0z is 10KB 2024-09-21T11:38:54.451 DEBUG:teuthology.orchestra.run.smithi195:> rm -fr /tmp/tmp.DETAdudg0z 2024-09-21T11:38:54.456 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-21T11:38:54.510 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:38:54.510 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-21T11:38:54.510 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-21T11:38:54.578 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-21T11:38:54.578 DEBUG:teuthology.orchestra.run.smithi195:> sudo update-grub 2024-09-21T11:38:55.741 INFO:teuthology.orchestra.run.smithi195.stderr:Sourcing file `/etc/default/grub' 2024-09-21T11:38:55.742 INFO:teuthology.orchestra.run.smithi195.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-21T11:38:55.744 INFO:teuthology.orchestra.run.smithi195.stderr:Generating grub configuration file ... 2024-09-21T11:38:55.830 INFO:teuthology.orchestra.run.smithi078.stdout:Reading package lists... 2024-09-21T11:38:55.864 DEBUG:teuthology.orchestra.run.smithi078:> sudo DEBIAN_FRONTEND=noninteractive apt-get -y install linux-image-generic 2024-09-21T11:38:55.927 INFO:teuthology.orchestra.run.smithi078.stdout:Reading package lists... 2024-09-21T11:38:55.928 INFO:teuthology.orchestra.run.smithi195.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-21T11:38:55.934 INFO:teuthology.orchestra.run.smithi195.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-21T11:38:56.118 INFO:teuthology.orchestra.run.smithi078.stdout:Building dependency tree... 2024-09-21T11:38:56.118 INFO:teuthology.orchestra.run.smithi078.stdout:Reading state information... 2024-09-21T11:38:56.169 INFO:teuthology.orchestra.run.smithi195.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-21T11:38:56.174 INFO:teuthology.orchestra.run.smithi195.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-21T11:38:56.214 INFO:teuthology.orchestra.run.smithi195.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-21T11:38:56.219 INFO:teuthology.orchestra.run.smithi195.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-21T11:38:56.281 INFO:teuthology.orchestra.run.smithi078.stdout:linux-image-generic is already the newest version (5.15.0.122.122). 2024-09-21T11:38:56.281 INFO:teuthology.orchestra.run.smithi078.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T11:38:56.281 INFO:teuthology.orchestra.run.smithi078.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T11:38:56.281 INFO:teuthology.orchestra.run.smithi078.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T11:38:56.282 INFO:teuthology.orchestra.run.smithi078.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T11:38:56.282 INFO:teuthology.orchestra.run.smithi078.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-21T11:38:56.282 INFO:teuthology.orchestra.run.smithi078.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-21T11:38:56.282 INFO:teuthology.orchestra.run.smithi078.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T11:38:56.323 INFO:teuthology.orchestra.run.smithi078.stdout:0 upgraded, 0 newly installed, 0 to remove and 345 not upgraded. 2024-09-21T11:38:56.323 DEBUG:teuthology.orchestra.run.smithi078:> dpkg -s linux-image-generic 2024-09-21T11:38:56.336 INFO:teuthology.orchestra.run.smithi195.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-21T11:38:56.336 INFO:teuthology.orchestra.run.smithi195.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-21T11:38:56.336 INFO:teuthology.orchestra.run.smithi195.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-21T11:38:56.338 INFO:teuthology.orchestra.run.smithi078.stdout:Package: linux-image-generic 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Status: install ok installed 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Priority: optional 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Section: kernel 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Installed-Size: 21 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Maintainer: Ubuntu Kernel Team 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Architecture: amd64 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Source: linux-meta 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Version: 5.15.0.122.122 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Provides: spl-modules (= 2.1.5-1ubuntu6~22.04.4), v4l2loopback-modules (= 0.12.7-2ubuntu2~22.04.1), virtualbox-guest-modules (= 5.15.0-122), wireguard-modules (= 1.0.0), zfs-modules (= 2.1.5-1ubuntu6~22.04.4) 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Depends: linux-image-5.15.0-122-generic, linux-modules-extra-5.15.0-122-generic, linux-firmware, intel-microcode, amd64-microcode 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Recommends: thermald 2024-09-21T11:38:56.339 INFO:teuthology.orchestra.run.smithi078.stdout:Description: Generic Linux kernel image 2024-09-21T11:38:56.340 INFO:teuthology.orchestra.run.smithi078.stdout: This package will always depend on the latest generic kernel image 2024-09-21T11:38:56.340 INFO:teuthology.orchestra.run.smithi078.stdout: available. 2024-09-21T11:38:56.340 DEBUG:teuthology.orchestra.run.smithi078:> mktemp 2024-09-21T11:38:56.353 INFO:teuthology.orchestra.run.smithi195.stderr:done 2024-09-21T11:38:56.370 DEBUG:teuthology.orchestra.run.smithi195:> sudo shutdown -r now 2024-09-21T11:38:56.385 INFO:teuthology.orchestra.run.smithi078.stdout:/tmp/tmp.Kw5YgOQOCs 2024-09-21T11:38:56.386 DEBUG:teuthology.orchestra.run.smithi078:> sudo cp /boot/grub/grub.cfg /tmp/tmp.Kw5YgOQOCs 2024-09-21T11:38:56.443 DEBUG:teuthology.orchestra.run.smithi078:> sudo chmod 0666 /tmp/tmp.Kw5YgOQOCs 2024-09-21T11:38:56.558 DEBUG:teuthology.orchestra.remote:smithi078:/tmp/tmp.Kw5YgOQOCs is 10KB 2024-09-21T11:38:56.570 DEBUG:teuthology.orchestra.run.smithi078:> rm -fr /tmp/tmp.Kw5YgOQOCs 2024-09-21T11:38:56.575 DEBUG:teuthology.orchestra.run.smithi078:> sudo rm -f -- /etc/grub.d/01_ceph_kernel 2024-09-21T11:38:56.627 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:38:56.628 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd of=/etc/grub.d/01_ceph_kernel 2024-09-21T11:38:56.628 DEBUG:teuthology.orchestra.run.smithi078:> sudo chmod 755 /etc/grub.d/01_ceph_kernel 2024-09-21T11:38:56.716 INFO:teuthology.task.kernel:Distro Kernel Version: 5.15.0-122-generic 2024-09-21T11:38:56.717 DEBUG:teuthology.orchestra.run.smithi078:> sudo update-grub 2024-09-21T11:38:57.418 INFO:teuthology.orchestra.run.smithi078.stderr:Sourcing file `/etc/default/grub' 2024-09-21T11:38:57.419 INFO:teuthology.orchestra.run.smithi078.stderr:Sourcing file `/etc/default/grub.d/init-select.cfg' 2024-09-21T11:38:57.421 INFO:teuthology.orchestra.run.smithi078.stderr:Generating grub configuration file ... 2024-09-21T11:38:57.616 INFO:teuthology.orchestra.run.smithi078.stderr:Found linux image: /boot/vmlinuz-5.15.0-122-generic 2024-09-21T11:38:57.622 INFO:teuthology.orchestra.run.smithi078.stderr:Found initrd image: /boot/initrd.img-5.15.0-122-generic 2024-09-21T11:38:57.872 INFO:teuthology.orchestra.run.smithi078.stderr:Found linux image: /boot/vmlinuz-5.15.0-56-generic 2024-09-21T11:38:57.876 INFO:teuthology.orchestra.run.smithi078.stderr:Found initrd image: /boot/initrd.img-5.15.0-56-generic 2024-09-21T11:38:57.913 INFO:teuthology.orchestra.run.smithi078.stderr:Found linux image: /boot/vmlinuz-5.4.0-135-generic 2024-09-21T11:38:57.917 INFO:teuthology.orchestra.run.smithi078.stderr:Found initrd image: /boot/initrd.img-5.4.0-135-generic 2024-09-21T11:38:58.026 INFO:teuthology.orchestra.run.smithi078.stderr:Warning: os-prober will not be executed to detect other bootable partitions. 2024-09-21T11:38:58.026 INFO:teuthology.orchestra.run.smithi078.stderr:Systems on them will not be added to the GRUB boot configuration. 2024-09-21T11:38:58.026 INFO:teuthology.orchestra.run.smithi078.stderr:Check GRUB_DISABLE_OS_PROBER documentation entry. 2024-09-21T11:38:58.042 INFO:teuthology.orchestra.run.smithi078.stderr:done 2024-09-21T11:38:58.061 DEBUG:teuthology.orchestra.run.smithi078:> sudo shutdown -r now 2024-09-21T11:39:26.373 INFO:teuthology.task.kernel:Checking client host.b for new kernel version... 2024-09-21T11:39:26.373 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-09-21T11:39:26.374 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:39:28.066 INFO:teuthology.task.kernel:Checking client host.a for new kernel version... 2024-09-21T11:39:28.066 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi078.front.sepia.ceph.com' 2024-09-21T11:39:28.066 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi078.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:39:44.751 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.195 2024-09-21T11:39:46.543 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.78 2024-09-21T11:39:53.756 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-09-21T11:39:53.757 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:39:55.545 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi078.front.sepia.ceph.com' 2024-09-21T11:39:55.546 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi078.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:39:56.815 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.195 2024-09-21T11:39:58.607 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.78 2024-09-21T11:40:08.822 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-09-21T11:40:08.823 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:40:10.608 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi078.front.sepia.ceph.com' 2024-09-21T11:40:10.609 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi078.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:40:29.039 DEBUG:teuthology.orchestra.remote:[Errno None] Unable to connect to port 22 on 172.21.15.78 2024-09-21T11:40:40.663 DEBUG:teuthology.orchestra.run.smithi195:> true 2024-09-21T11:40:41.223 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-09-21T11:40:41.223 INFO:teuthology.task.kernel:Checking kernel version of host.b, want "5.15.0-122-generic"... 2024-09-21T11:40:41.223 DEBUG:teuthology.orchestra.run.smithi195:> uname -r 2024-09-21T11:40:41.268 INFO:teuthology.orchestra.run.smithi195.stdout:5.15.0-122-generic 2024-09-21T11:40:41.268 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-21T11:40:41.268 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-21T11:40:41.268 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-21T11:40:42.270 INFO:teuthology.task.kernel:Enabling kdb on host.b... 2024-09-21T11:40:42.270 DEBUG:teuthology.orchestra.run.smithi195:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-21T11:40:42.614 INFO:teuthology.orchestra.run.smithi195.stdout:ttyS1 2024-09-21T11:40:42.646 DEBUG:teuthology.parallel:result is None 2024-09-21T11:40:44.039 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi078.front.sepia.ceph.com' 2024-09-21T11:40:44.040 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi078.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:40:44.367 DEBUG:teuthology.orchestra.run.smithi078:> true 2024-09-21T11:40:45.429 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi078.front.sepia.ceph.com' 2024-09-21T11:40:45.429 INFO:teuthology.task.kernel:Checking kernel version of host.a, want "5.15.0-122-generic"... 2024-09-21T11:40:45.430 DEBUG:teuthology.orchestra.run.smithi078:> uname -r 2024-09-21T11:40:45.477 INFO:teuthology.orchestra.run.smithi078.stdout:5.15.0-122-generic 2024-09-21T11:40:45.478 DEBUG:teuthology.task.kernel:current kernel version is 5.15.0-122-generic vs 5.15.0-122-generic 2024-09-21T11:40:45.478 DEBUG:teuthology.task.kernel:utsrelease strings match, do not need to install 2024-09-21T11:40:45.478 DEBUG:teuthology.task.kernel:Distro of this test job: ubuntu 2024-09-21T11:40:46.478 INFO:teuthology.task.kernel:Enabling kdb on host.a... 2024-09-21T11:40:46.479 DEBUG:teuthology.orchestra.run.smithi078:> echo ttyS1 | sudo tee /sys/module/kgdboc/parameters/kgdboc 2024-09-21T11:40:46.558 INFO:teuthology.orchestra.run.smithi078.stdout:ttyS1 2024-09-21T11:40:46.587 DEBUG:teuthology.parallel:result is None 2024-09-21T11:40:46.587 INFO:teuthology.run_tasks:Running task internal.base... 2024-09-21T11:40:46.595 INFO:teuthology.task.internal:Creating test directory... 2024-09-21T11:40:46.596 DEBUG:teuthology.orchestra.run.smithi078:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-21T11:40:46.598 DEBUG:teuthology.orchestra.run.smithi195:> mkdir -p -m0755 -- /home/ubuntu/cephtest 2024-09-21T11:40:46.603 INFO:teuthology.run_tasks:Running task internal.archive_upload... 2024-09-21T11:40:46.609 INFO:teuthology.run_tasks:Running task internal.archive... 2024-09-21T11:40:46.618 INFO:teuthology.task.internal:Creating archive directory... 2024-09-21T11:40:46.618 DEBUG:teuthology.orchestra.run.smithi078:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-21T11:40:46.647 DEBUG:teuthology.orchestra.run.smithi195:> install -d -m0755 -- /home/ubuntu/cephtest/archive 2024-09-21T11:40:46.670 INFO:teuthology.run_tasks:Running task internal.coredump... 2024-09-21T11:40:46.676 INFO:teuthology.task.internal:Enabling coredump saving... 2024-09-21T11:40:46.676 DEBUG:teuthology.orchestra.run.smithi078:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-21T11:40:46.711 DEBUG:teuthology.orchestra.run.smithi195:> install -d -m0755 -- /home/ubuntu/cephtest/archive/coredump && sudo sysctl -w kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core && echo kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core | sudo tee -a /etc/sysctl.conf 2024-09-21T11:40:46.732 INFO:teuthology.orchestra.run.smithi078.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-21T11:40:46.732 INFO:teuthology.orchestra.run.smithi195.stdout:kernel.core_pattern = /home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-21T11:40:46.740 INFO:teuthology.orchestra.run.smithi078.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-21T11:40:46.741 INFO:teuthology.orchestra.run.smithi195.stdout:kernel.core_pattern=/home/ubuntu/cephtest/archive/coredump/%t.%p.core 2024-09-21T11:40:46.742 INFO:teuthology.run_tasks:Running task internal.sudo... 2024-09-21T11:40:46.749 INFO:teuthology.task.internal:Configuring sudo... 2024-09-21T11:40:46.749 DEBUG:teuthology.orchestra.run.smithi078:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-21T11:40:46.787 DEBUG:teuthology.orchestra.run.smithi195:> sudo sed -i.orig.teuthology -e 's/^\([^#]*\) \(requiretty\)/\1 !\2/g' -e 's/^\([^#]*\) !\(visiblepw\)/\1 \2/g' /etc/sudoers 2024-09-21T11:40:46.799 INFO:teuthology.run_tasks:Running task internal.syslog... 2024-09-21T11:40:46.808 INFO:teuthology.task.internal.syslog:Starting syslog monitoring... 2024-09-21T11:40:46.808 DEBUG:teuthology.orchestra.run.smithi078:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-21T11:40:46.843 DEBUG:teuthology.orchestra.run.smithi195:> mkdir -p -m0755 -- /home/ubuntu/cephtest/archive/syslog 2024-09-21T11:40:46.848 DEBUG:teuthology.orchestra.run.smithi078:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-21T11:40:46.894 DEBUG:teuthology.orchestra.run.smithi078:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-21T11:40:46.942 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:40:46.942 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-21T11:40:47.013 DEBUG:teuthology.orchestra.run.smithi195:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/kern.log 2024-09-21T11:40:47.019 DEBUG:teuthology.orchestra.run.smithi195:> install -m 666 /dev/null /home/ubuntu/cephtest/archive/syslog/misc.log 2024-09-21T11:40:47.068 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:40:47.069 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/rsyslog.d/80-cephtest.conf 2024-09-21T11:40:47.143 DEBUG:teuthology.orchestra.run.smithi078:> sudo service rsyslog restart 2024-09-21T11:40:47.146 DEBUG:teuthology.orchestra.run.smithi195:> sudo service rsyslog restart 2024-09-21T11:40:47.267 INFO:teuthology.run_tasks:Running task internal.timer... 2024-09-21T11:40:47.274 INFO:teuthology.task.internal:Starting timer... 2024-09-21T11:40:47.274 INFO:teuthology.run_tasks:Running task pcp... 2024-09-21T11:40:47.295 INFO:teuthology.run_tasks:Running task selinux... 2024-09-21T11:40:47.321 DEBUG:teuthology.task.selinux:Excluding smithi078: OS 'ubuntu' does not support SELinux 2024-09-21T11:40:47.321 DEBUG:teuthology.task.selinux:Excluding smithi195: OS 'ubuntu' does not support SELinux 2024-09-21T11:40:47.321 DEBUG:teuthology.task.selinux:Getting current SELinux state 2024-09-21T11:40:47.321 DEBUG:teuthology.task.selinux:Existing SELinux modes: {} 2024-09-21T11:40:47.321 INFO:teuthology.task.selinux:Putting SELinux into permissive mode 2024-09-21T11:40:47.321 INFO:teuthology.run_tasks:Running task ansible.cephlab... 2024-09-21T11:40:47.330 DEBUG:teuthology.repo_utils:Resetting repo at /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main to origin/main 2024-09-21T11:40:47.340 INFO:teuthology.task.ansible:Playbook: [{'import_playbook': 'ansible_managed.yml'}, {'import_playbook': 'teuthology.yml'}, {'hosts': 'testnodes', 'tasks': [{'set_fact': {'ran_from_cephlab_playbook': True}}]}, {'import_playbook': 'testnodes.yml'}, {'import_playbook': 'container-host.yml'}, {'import_playbook': 'cobbler.yml'}, {'import_playbook': 'paddles.yml'}, {'import_playbook': 'pulpito.yml'}, {'hosts': 'testnodes', 'become': True, 'tasks': [{'name': 'Touch /ceph-qa-ready', 'file': {'path': '/ceph-qa-ready', 'state': 'touch'}, 'when': 'ran_from_cephlab_playbook|bool'}]}] 2024-09-21T11:40:47.340 DEBUG:teuthology.task.ansible:Running ansible-playbook -v --extra-vars '{"ansible_ssh_user": "ubuntu"}' -i /etc/ansible/hosts --limit smithi078.front.sepia.ceph.com,smithi195.front.sepia.ceph.com /home/teuthworker/src/git.ceph.com_ceph-cm-ansible_main/cephlab.yml 2024-09-21T11:48:12.844 DEBUG:teuthology.task.ansible:Reconnecting to [Remote(name='ubuntu@smithi078.front.sepia.ceph.com'), Remote(name='ubuntu@smithi195.front.sepia.ceph.com')] 2024-09-21T11:48:12.845 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi078.front.sepia.ceph.com' 2024-09-21T11:48:12.846 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi078.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:48:12.926 DEBUG:teuthology.orchestra.run.smithi078:> true 2024-09-21T11:48:13.003 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi078.front.sepia.ceph.com' 2024-09-21T11:48:13.004 INFO:teuthology.orchestra.remote:Trying to reconnect to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-09-21T11:48:13.004 DEBUG:teuthology.orchestra.connection:{'hostname': 'smithi195.front.sepia.ceph.com', 'username': 'ubuntu', 'timeout': 60} 2024-09-21T11:48:13.083 DEBUG:teuthology.orchestra.run.smithi195:> true 2024-09-21T11:48:13.158 INFO:teuthology.orchestra.remote:Successfully reconnected to host 'ubuntu@smithi195.front.sepia.ceph.com' 2024-09-21T11:48:13.158 INFO:teuthology.run_tasks:Running task clock... 2024-09-21T11:48:13.169 INFO:teuthology.task.clock:Syncing clocks and checking initial clock skew... 2024-09-21T11:48:13.170 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-21T11:48:13.170 DEBUG:teuthology.orchestra.run.smithi078:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-21T11:48:13.172 INFO:teuthology.orchestra.run:Running command with timeout 360 2024-09-21T11:48:13.172 DEBUG:teuthology.orchestra.run.smithi195:> sudo systemctl stop ntp.service || sudo systemctl stop ntpd.service || sudo systemctl stop chronyd.service ; sudo ntpd -gq || sudo chronyc makestep ; sudo systemctl start ntp.service || sudo systemctl start ntpd.service || sudo systemctl start chronyd.service ; PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-21T11:48:13.200 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-21T11:48:13.200 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: Command line: ntpd -gq 2024-09-21T11:48:13.200 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: ---------------------------------------------------- 2024-09-21T11:48:13.200 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: ntp-4 is maintained by Network Time Foundation, 2024-09-21T11:48:13.200 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-21T11:48:13.200 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: corporation. Support and training for ntp-4 are 2024-09-21T11:48:13.200 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: available at https://www.nwtime.org/support 2024-09-21T11:48:13.200 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: ---------------------------------------------------- 2024-09-21T11:48:13.201 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: proto: precision = 0.046 usec (-24) 2024-09-21T11:48:13.201 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: basedate set to 2022-02-04 2024-09-21T11:48:13.201 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: gps base set to 2022-02-06 (week 2196) 2024-09-21T11:48:13.201 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-21T11:48:13.202 INFO:teuthology.orchestra.run.smithi078.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-21T11:48:13.202 INFO:teuthology.orchestra.run.smithi078.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-21T11:48:13.203 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: restrict ::: KOD does nothing without LIMITED. 2024-09-21T11:48:13.203 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: Listen and drop on 0 v6wildcard [::]:123 2024-09-21T11:48:13.203 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-21T11:48:13.203 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: Listen normally on 2 lo 127.0.0.1:123 2024-09-21T11:48:13.203 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: Listen normally on 3 enp3s0f1 172.21.15.78:123 2024-09-21T11:48:13.203 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: Listen normally on 4 lo [::1]:123 2024-09-21T11:48:13.203 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe8f:d4dd%5]:123 2024-09-21T11:48:13.203 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:13 ntpd[18480]: Listening on routing socket on fd #22 for interface updates 2024-09-21T11:48:13.233 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: ntpd 4.2.8p15@1.3728-o Wed Feb 16 17:13:02 UTC 2022 (1): Starting 2024-09-21T11:48:13.233 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: Command line: ntpd -gq 2024-09-21T11:48:13.233 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: ---------------------------------------------------- 2024-09-21T11:48:13.233 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: ntp-4 is maintained by Network Time Foundation, 2024-09-21T11:48:13.233 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: Inc. (NTF), a non-profit 501(c)(3) public-benefit 2024-09-21T11:48:13.233 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: corporation. Support and training for ntp-4 are 2024-09-21T11:48:13.233 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: available at https://www.nwtime.org/support 2024-09-21T11:48:13.233 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: ---------------------------------------------------- 2024-09-21T11:48:13.234 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: proto: precision = 0.044 usec (-24) 2024-09-21T11:48:13.234 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: basedate set to 2022-02-04 2024-09-21T11:48:13.234 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: gps base set to 2022-02-06 (week 2196) 2024-09-21T11:48:13.234 INFO:teuthology.orchestra.run.smithi195.stderr:restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-21T11:48:13.234 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: restrict 0.0.0.0: KOD does nothing without LIMITED. 2024-09-21T11:48:13.234 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: restrict ::: KOD does nothing without LIMITED. 2024-09-21T11:48:13.235 INFO:teuthology.orchestra.run.smithi195.stderr:restrict ::: KOD does nothing without LIMITED. 2024-09-21T11:48:13.236 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: Listen and drop on 0 v6wildcard [::]:123 2024-09-21T11:48:13.236 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: Listen and drop on 1 v4wildcard 0.0.0.0:123 2024-09-21T11:48:13.236 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: Listen normally on 2 lo 127.0.0.1:123 2024-09-21T11:48:13.236 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: Listen normally on 3 enp3s0f1 172.21.15.195:123 2024-09-21T11:48:13.236 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: Listen normally on 4 lo [::1]:123 2024-09-21T11:48:13.236 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: Listen normally on 5 enp3s0f1 [fe80::ec4:7aff:fe88:8081%5]:123 2024-09-21T11:48:13.236 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:13 ntpd[18477]: Listening on routing socket on fd #22 for interface updates 2024-09-21T11:48:15.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:15 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:15.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:15 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:15.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:15 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:15.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:15 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:15.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:15 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:15.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:15 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:16.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:16.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:16.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:16 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:16.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:16 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:16.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:16 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:17.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:17 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:17.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:17 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:17.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:17 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:17.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:17 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:17.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:17 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:17.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:17 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:17.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:17 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:17.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:17 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:17.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:17 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:17.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:17 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:17.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:17 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:17.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:17 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:17.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:17 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:17.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:17 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:18.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:18.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:18 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:18.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:18.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:18 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:19.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:19 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:19.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:19 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:19.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:19 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:19.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:19 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:19.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:19 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:19.203 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:19 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:19.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:19 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:19.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:19 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:19.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:19 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:19.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:19 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:19.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:19 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:19.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:19 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:20.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:20.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:20.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:20.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:20.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:20.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:20.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:20.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:20.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:20.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:20.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:20.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:20 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:20.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:20.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:20.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:20 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:21.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:21 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:21.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:21 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:21.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:21 ntpd[18480]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:21.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:21 ntpd[18480]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:21.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:21 ntpd[18480]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:21.201 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:21 ntpd[18480]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:21.202 INFO:teuthology.orchestra.run.smithi078.stdout:21 Sep 11:48:21 ntpd[18480]: ntpd: time slew -0.000261 s 2024-09-21T11:48:21.202 INFO:teuthology.orchestra.run.smithi078.stdout:ntpd: time slew -0.000261s 2024-09-21T11:48:21.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:21 ntpd[18480]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-21T11:48:21.202 INFO:teuthology.orchestra.run.smithi078.stderr:21 Sep 11:48:21 ntpd[18480]: can't open /var/log/ntpstats/loopstats.20240921: Permission denied 2024-09-21T11:48:21.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:21 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:21.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:21 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:21.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:21 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:21.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:21 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:21.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:21 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:21.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:21 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:21.251 INFO:teuthology.orchestra.run.smithi078.stdout: remote refid st t when poll reach delay offset jitter 2024-09-21T11:48:21.251 INFO:teuthology.orchestra.run.smithi078.stdout:============================================================================== 2024-09-21T11:48:21.251 INFO:teuthology.orchestra.run.smithi078.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T11:48:21.252 INFO:teuthology.orchestra.run.smithi078.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T11:48:21.252 INFO:teuthology.orchestra.run.smithi078.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T11:48:21.252 INFO:teuthology.orchestra.run.smithi078.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T11:48:22.233 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:22.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:22 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:23.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:23 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:23.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:23 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:23.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:23 ntpd[18477]: couldn't unlink /var/log/ntpstats/rawstats: Permission denied 2024-09-21T11:48:23.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:23 ntpd[18477]: can't open /var/log/ntpstats/rawstats.20240921: Permission denied 2024-09-21T11:48:23.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:23 ntpd[18477]: couldn't unlink /var/log/ntpstats/peerstats: Permission denied 2024-09-21T11:48:23.234 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:23 ntpd[18477]: can't open /var/log/ntpstats/peerstats.20240921: Permission denied 2024-09-21T11:48:23.235 INFO:teuthology.orchestra.run.smithi195.stdout:21 Sep 11:48:23 ntpd[18477]: ntpd: time slew -0.001103 s 2024-09-21T11:48:23.235 INFO:teuthology.orchestra.run.smithi195.stdout:ntpd: time slew -0.001103s 2024-09-21T11:48:23.235 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:23 ntpd[18477]: couldn't unlink /var/log/ntpstats/loopstats: Permission denied 2024-09-21T11:48:23.235 INFO:teuthology.orchestra.run.smithi195.stderr:21 Sep 11:48:23 ntpd[18477]: can't open /var/log/ntpstats/loopstats.20240921: Permission denied 2024-09-21T11:48:23.292 INFO:teuthology.orchestra.run.smithi195.stdout: remote refid st t when poll reach delay offset jitter 2024-09-21T11:48:23.292 INFO:teuthology.orchestra.run.smithi195.stdout:============================================================================== 2024-09-21T11:48:23.292 INFO:teuthology.orchestra.run.smithi195.stdout: hv01.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T11:48:23.292 INFO:teuthology.orchestra.run.smithi195.stdout: hv02.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T11:48:23.292 INFO:teuthology.orchestra.run.smithi195.stdout: hv03.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T11:48:23.292 INFO:teuthology.orchestra.run.smithi195.stdout: hv04.front.sepi .INIT. 16 u - 64 0 0.000 +0.000 0.000 2024-09-21T11:48:23.293 INFO:teuthology.run_tasks:Running task nvme_loop... 2024-09-21T11:48:23.307 INFO:tasks.nvme_loop:Setting up nvme_loop on scratch devices... 2024-09-21T11:48:23.307 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:48:23.307 DEBUG:teuthology.orchestra.run.smithi078:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T11:48:23.313 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-21T11:48:23.314 DEBUG:teuthology.orchestra.run.smithi078:> stat /dev/vg_nvme/lv_1 2024-09-21T11:48:23.361 INFO:teuthology.orchestra.run.smithi078.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-21T11:48:23.361 INFO:teuthology.orchestra.run.smithi078.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T11:48:23.361 INFO:teuthology.orchestra.run.smithi078.stdout:Device: 5h/5d Inode: 877 Links: 1 2024-09-21T11:48:23.361 INFO:teuthology.orchestra.run.smithi078.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T11:48:23.361 INFO:teuthology.orchestra.run.smithi078.stdout:Access: 2024-09-21 11:44:43.105177808 +0000 2024-09-21T11:48:23.361 INFO:teuthology.orchestra.run.smithi078.stdout:Modify: 2024-09-21 11:44:42.861179974 +0000 2024-09-21T11:48:23.361 INFO:teuthology.orchestra.run.smithi078.stdout:Change: 2024-09-21 11:44:42.861179974 +0000 2024-09-21T11:48:23.361 INFO:teuthology.orchestra.run.smithi078.stdout: Birth: - 2024-09-21T11:48:23.361 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-21T11:48:23.415 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records in 2024-09-21T11:48:23.415 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records out 2024-09-21T11:48:23.415 INFO:teuthology.orchestra.run.smithi078.stderr:512 bytes copied, 0.000388026 s, 1.3 MB/s 2024-09-21T11:48:23.417 DEBUG:teuthology.orchestra.run.smithi078:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-21T11:48:23.466 DEBUG:teuthology.orchestra.run.smithi078:> stat /dev/vg_nvme/lv_2 2024-09-21T11:48:23.512 INFO:teuthology.orchestra.run.smithi078.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-21T11:48:23.512 INFO:teuthology.orchestra.run.smithi078.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T11:48:23.513 INFO:teuthology.orchestra.run.smithi078.stdout:Device: 5h/5d Inode: 894 Links: 1 2024-09-21T11:48:23.513 INFO:teuthology.orchestra.run.smithi078.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T11:48:23.513 INFO:teuthology.orchestra.run.smithi078.stdout:Access: 2024-09-21 11:44:43.573173653 +0000 2024-09-21T11:48:23.513 INFO:teuthology.orchestra.run.smithi078.stdout:Modify: 2024-09-21 11:44:43.333175783 +0000 2024-09-21T11:48:23.513 INFO:teuthology.orchestra.run.smithi078.stdout:Change: 2024-09-21 11:44:43.333175783 +0000 2024-09-21T11:48:23.513 INFO:teuthology.orchestra.run.smithi078.stdout: Birth: - 2024-09-21T11:48:23.513 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-21T11:48:23.566 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records in 2024-09-21T11:48:23.567 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records out 2024-09-21T11:48:23.567 INFO:teuthology.orchestra.run.smithi078.stderr:512 bytes copied, 0.000357733 s, 1.4 MB/s 2024-09-21T11:48:23.568 DEBUG:teuthology.orchestra.run.smithi078:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-21T11:48:23.617 DEBUG:teuthology.orchestra.run.smithi078:> stat /dev/vg_nvme/lv_3 2024-09-21T11:48:23.664 INFO:teuthology.orchestra.run.smithi078.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-21T11:48:23.665 INFO:teuthology.orchestra.run.smithi078.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T11:48:23.665 INFO:teuthology.orchestra.run.smithi078.stdout:Device: 5h/5d Inode: 913 Links: 1 2024-09-21T11:48:23.665 INFO:teuthology.orchestra.run.smithi078.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T11:48:23.665 INFO:teuthology.orchestra.run.smithi078.stdout:Access: 2024-09-21 11:44:44.057169356 +0000 2024-09-21T11:48:23.665 INFO:teuthology.orchestra.run.smithi078.stdout:Modify: 2024-09-21 11:44:43.813171522 +0000 2024-09-21T11:48:23.665 INFO:teuthology.orchestra.run.smithi078.stdout:Change: 2024-09-21 11:44:43.813171522 +0000 2024-09-21T11:48:23.665 INFO:teuthology.orchestra.run.smithi078.stdout: Birth: - 2024-09-21T11:48:23.665 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-21T11:48:23.719 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records in 2024-09-21T11:48:23.719 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records out 2024-09-21T11:48:23.719 INFO:teuthology.orchestra.run.smithi078.stderr:512 bytes copied, 0.000414265 s, 1.2 MB/s 2024-09-21T11:48:23.720 DEBUG:teuthology.orchestra.run.smithi078:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-21T11:48:23.769 DEBUG:teuthology.orchestra.run.smithi078:> stat /dev/vg_nvme/lv_4 2024-09-21T11:48:23.816 INFO:teuthology.orchestra.run.smithi078.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-21T11:48:23.816 INFO:teuthology.orchestra.run.smithi078.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T11:48:23.816 INFO:teuthology.orchestra.run.smithi078.stdout:Device: 5h/5d Inode: 925 Links: 1 2024-09-21T11:48:23.816 INFO:teuthology.orchestra.run.smithi078.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T11:48:23.817 INFO:teuthology.orchestra.run.smithi078.stdout:Access: 2024-09-21 11:44:44.529165166 +0000 2024-09-21T11:48:23.817 INFO:teuthology.orchestra.run.smithi078.stdout:Modify: 2024-09-21 11:44:44.269167474 +0000 2024-09-21T11:48:23.817 INFO:teuthology.orchestra.run.smithi078.stdout:Change: 2024-09-21 11:44:44.269167474 +0000 2024-09-21T11:48:23.817 INFO:teuthology.orchestra.run.smithi078.stdout: Birth: - 2024-09-21T11:48:23.817 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-21T11:48:23.871 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records in 2024-09-21T11:48:23.871 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records out 2024-09-21T11:48:23.871 INFO:teuthology.orchestra.run.smithi078.stderr:512 bytes copied, 0.00038556 s, 1.3 MB/s 2024-09-21T11:48:23.873 DEBUG:teuthology.orchestra.run.smithi078:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-21T11:48:23.923 DEBUG:teuthology.orchestra.run.smithi078:> grep '^nvme_loop' /proc/modules || 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-09-21T11:48:24.046 INFO:teuthology.orchestra.run.smithi078.stdout:loop 2024-09-21T11:48:24.047 INFO:tasks.nvme_loop:Connecting nvme_loop smithi078:/dev/vg_nvme/lv_1... 2024-09-21T11:48:24.048 DEBUG:teuthology.orchestra.run.smithi078:> 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-09-21T11:48:24.064 INFO:teuthology.orchestra.run.smithi078.stdout:1 2024-09-21T11:48:24.082 INFO:teuthology.orchestra.run.smithi078.stdout:/dev/vg_nvme/lv_11 2024-09-21T11:48:24.098 INFO:tasks.nvme_loop:Connecting nvme_loop smithi078:/dev/vg_nvme/lv_2... 2024-09-21T11:48:24.098 DEBUG:teuthology.orchestra.run.smithi078:> 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-09-21T11:48:24.158 INFO:teuthology.orchestra.run.smithi078.stdout:1 2024-09-21T11:48:24.177 INFO:teuthology.orchestra.run.smithi078.stdout:/dev/vg_nvme/lv_21 2024-09-21T11:48:24.194 INFO:tasks.nvme_loop:Connecting nvme_loop smithi078:/dev/vg_nvme/lv_3... 2024-09-21T11:48:24.195 DEBUG:teuthology.orchestra.run.smithi078:> 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-09-21T11:48:24.251 INFO:teuthology.orchestra.run.smithi078.stdout:1 2024-09-21T11:48:24.270 INFO:teuthology.orchestra.run.smithi078.stdout:/dev/vg_nvme/lv_31 2024-09-21T11:48:24.286 INFO:tasks.nvme_loop:Connecting nvme_loop smithi078:/dev/vg_nvme/lv_4... 2024-09-21T11:48:24.286 DEBUG:teuthology.orchestra.run.smithi078:> 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-09-21T11:48:24.343 INFO:teuthology.orchestra.run.smithi078.stdout:1 2024-09-21T11:48:24.361 INFO:teuthology.orchestra.run.smithi078.stdout:/dev/vg_nvme/lv_41 2024-09-21T11:48:24.377 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:48:24.377 DEBUG:teuthology.orchestra.run.smithi078:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T11:48:24.428 DEBUG:teuthology.orchestra.run.smithi078:> lsblk 2024-09-21T11:48:24.482 INFO:teuthology.orchestra.run.smithi078.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2024-09-21T11:48:24.482 INFO:teuthology.orchestra.run.smithi078.stdout:sda 8:0 0 931.5G 0 disk 2024-09-21T11:48:24.482 INFO:teuthology.orchestra.run.smithi078.stdout:`-sda1 8:1 0 931.5G 0 part / 2024-09-21T11:48:24.482 INFO:teuthology.orchestra.run.smithi078.stdout:nvme0n1 259:0 0 372.6G 0 disk 2024-09-21T11:48:24.482 INFO:teuthology.orchestra.run.smithi078.stdout:|-vg_nvme-lv_1 253:0 0 89.4G 0 lvm 2024-09-21T11:48:24.482 INFO:teuthology.orchestra.run.smithi078.stdout:|-vg_nvme-lv_2 253:1 0 89.4G 0 lvm 2024-09-21T11:48:24.483 INFO:teuthology.orchestra.run.smithi078.stdout:|-vg_nvme-lv_3 253:2 0 89.4G 0 lvm 2024-09-21T11:48:24.483 INFO:teuthology.orchestra.run.smithi078.stdout:|-vg_nvme-lv_4 253:3 0 89.4G 0 lvm 2024-09-21T11:48:24.483 INFO:teuthology.orchestra.run.smithi078.stdout:`-vg_nvme-lv_5 253:4 0 14.9G 0 lvm /var/lib/ceph 2024-09-21T11:48:24.483 INFO:teuthology.orchestra.run.smithi078.stdout:nvme1n1 259:2 0 89.4G 0 disk 2024-09-21T11:48:24.483 INFO:teuthology.orchestra.run.smithi078.stdout:nvme2n1 259:4 0 89.4G 0 disk 2024-09-21T11:48:24.483 INFO:teuthology.orchestra.run.smithi078.stdout:nvme3n1 259:6 0 89.4G 0 disk 2024-09-21T11:48:24.483 INFO:teuthology.orchestra.run.smithi078.stdout:nvme4n1 259:8 0 89.4G 0 disk 2024-09-21T11:48:24.483 DEBUG:teuthology.orchestra.run.smithi078:> sudo nvme list -o json 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout:{ 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: "Devices" : [ 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: { 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: "Firmware" : "8DV101H0", 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: "Index" : 0, 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: "ModelNumber" : "INTEL SSDPEDMD400G4", 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: "SerialNumber" : "PHFT620400QR400BGN" 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: }, 2024-09-21T11:48:24.533 INFO:teuthology.orchestra.run.smithi078.stdout: { 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "Firmware" : "5.15.0-1", 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "Index" : 1, 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "ModelNumber" : "Linux", 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "SerialNumber" : "3f63300798c5ee4d979a" 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: }, 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: { 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "Firmware" : "5.15.0-1", 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "Index" : 2, 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "ModelNumber" : "Linux", 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:24.534 INFO:teuthology.orchestra.run.smithi078.stdout: "SerialNumber" : "32c2c76587d995c6ad06" 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: }, 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: { 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: "Firmware" : "5.15.0-1", 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: "Index" : 3, 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: "ModelNumber" : "Linux", 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: "SerialNumber" : "32a593f9f6d5d6d7d15a" 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: }, 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: { 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-21T11:48:24.535 INFO:teuthology.orchestra.run.smithi078.stdout: "Firmware" : "5.15.0-1", 2024-09-21T11:48:24.536 INFO:teuthology.orchestra.run.smithi078.stdout: "Index" : 4, 2024-09-21T11:48:24.536 INFO:teuthology.orchestra.run.smithi078.stdout: "ModelNumber" : "Linux", 2024-09-21T11:48:24.536 INFO:teuthology.orchestra.run.smithi078.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:24.536 INFO:teuthology.orchestra.run.smithi078.stdout: "SerialNumber" : "1274239096e2f34517fd" 2024-09-21T11:48:24.536 INFO:teuthology.orchestra.run.smithi078.stdout: } 2024-09-21T11:48:24.536 INFO:teuthology.orchestra.run.smithi078.stdout: ] 2024-09-21T11:48:24.536 INFO:teuthology.orchestra.run.smithi078.stdout:} 2024-09-21T11:48:24.537 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme1n1 seek=0 bs=1 count=4096 2024-09-21T11:48:24.595 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:24.595 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:24.596 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00708769 s, 578 kB/s 2024-09-21T11:48:24.597 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s0 /dev/nvme1n1 2024-09-21T11:48:24.669 INFO:teuthology.orchestra.run.smithi078.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:24.669 INFO:teuthology.orchestra.run.smithi078.stdout:00000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:24.669 INFO:teuthology.orchestra.run.smithi078.stdout:00000016 2024-09-21T11:48:24.670 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme1n1 seek=1073741824 bs=1 count=4096 2024-09-21T11:48:24.726 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:24.726 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:24.726 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00584022 s, 701 kB/s 2024-09-21T11:48:24.727 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s1073741824 /dev/nvme1n1 2024-09-21T11:48:24.780 INFO:teuthology.orchestra.run.smithi078.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:24.780 INFO:teuthology.orchestra.run.smithi078.stdout:40000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:24.780 INFO:teuthology.orchestra.run.smithi078.stdout:40000016 2024-09-21T11:48:24.782 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme1n1 seek=10737418240 bs=1 count=4096 2024-09-21T11:48:24.841 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:24.841 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:24.841 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00733698 s, 558 kB/s 2024-09-21T11:48:24.842 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s10737418240 /dev/nvme1n1 2024-09-21T11:48:24.897 INFO:teuthology.orchestra.run.smithi078.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:24.898 INFO:teuthology.orchestra.run.smithi078.stdout:280000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:24.898 INFO:teuthology.orchestra.run.smithi078.stdout:280000016 2024-09-21T11:48:24.899 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme2n1 seek=0 bs=1 count=4096 2024-09-21T11:48:24.958 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:24.958 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:24.958 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00720888 s, 568 kB/s 2024-09-21T11:48:24.959 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s0 /dev/nvme2n1 2024-09-21T11:48:25.010 INFO:teuthology.orchestra.run.smithi078.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:25.011 INFO:teuthology.orchestra.run.smithi078.stdout:00000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:25.011 INFO:teuthology.orchestra.run.smithi078.stdout:00000016 2024-09-21T11:48:25.012 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme2n1 seek=1073741824 bs=1 count=4096 2024-09-21T11:48:25.077 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:25.077 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:25.078 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00747014 s, 548 kB/s 2024-09-21T11:48:25.079 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s1073741824 /dev/nvme2n1 2024-09-21T11:48:25.131 INFO:teuthology.orchestra.run.smithi078.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:25.131 INFO:teuthology.orchestra.run.smithi078.stdout:40000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:25.131 INFO:teuthology.orchestra.run.smithi078.stdout:40000016 2024-09-21T11:48:25.133 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme2n1 seek=10737418240 bs=1 count=4096 2024-09-21T11:48:25.194 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:25.194 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:25.194 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00735538 s, 557 kB/s 2024-09-21T11:48:25.195 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s10737418240 /dev/nvme2n1 2024-09-21T11:48:25.252 INFO:teuthology.orchestra.run.smithi078.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:25.252 INFO:teuthology.orchestra.run.smithi078.stdout:280000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:25.252 INFO:teuthology.orchestra.run.smithi078.stdout:280000016 2024-09-21T11:48:25.253 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2024-09-21T11:48:25.313 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:25.314 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:25.314 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00727381 s, 563 kB/s 2024-09-21T11:48:25.315 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2024-09-21T11:48:25.368 INFO:teuthology.orchestra.run.smithi078.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:25.368 INFO:teuthology.orchestra.run.smithi078.stdout:00000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:25.368 INFO:teuthology.orchestra.run.smithi078.stdout:00000016 2024-09-21T11:48:25.369 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2024-09-21T11:48:25.429 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:25.430 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:25.430 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00747976 s, 548 kB/s 2024-09-21T11:48:25.431 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2024-09-21T11:48:25.484 INFO:teuthology.orchestra.run.smithi078.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:25.484 INFO:teuthology.orchestra.run.smithi078.stdout:40000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:25.484 INFO:teuthology.orchestra.run.smithi078.stdout:40000016 2024-09-21T11:48:25.485 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2024-09-21T11:48:25.547 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:25.547 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:25.547 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00743733 s, 551 kB/s 2024-09-21T11:48:25.547 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2024-09-21T11:48:25.600 INFO:teuthology.orchestra.run.smithi078.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:25.600 INFO:teuthology.orchestra.run.smithi078.stdout:280000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:25.600 INFO:teuthology.orchestra.run.smithi078.stdout:280000016 2024-09-21T11:48:25.601 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2024-09-21T11:48:25.662 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:25.662 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:25.662 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00755289 s, 542 kB/s 2024-09-21T11:48:25.663 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2024-09-21T11:48:25.715 INFO:teuthology.orchestra.run.smithi078.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:25.715 INFO:teuthology.orchestra.run.smithi078.stdout:00000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:25.715 INFO:teuthology.orchestra.run.smithi078.stdout:00000016 2024-09-21T11:48:25.716 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2024-09-21T11:48:25.778 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:25.778 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:25.778 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00773333 s, 530 kB/s 2024-09-21T11:48:25.779 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2024-09-21T11:48:25.832 INFO:teuthology.orchestra.run.smithi078.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:25.832 INFO:teuthology.orchestra.run.smithi078.stdout:40000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:25.832 INFO:teuthology.orchestra.run.smithi078.stdout:40000016 2024-09-21T11:48:25.834 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2024-09-21T11:48:25.894 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records in 2024-09-21T11:48:25.894 INFO:teuthology.orchestra.run.smithi078.stderr:4096+0 records out 2024-09-21T11:48:25.894 INFO:teuthology.orchestra.run.smithi078.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00756701 s, 541 kB/s 2024-09-21T11:48:25.895 DEBUG:teuthology.orchestra.run.smithi078:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2024-09-21T11:48:25.948 INFO:teuthology.orchestra.run.smithi078.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:25.948 INFO:teuthology.orchestra.run.smithi078.stdout:280000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:25.948 INFO:teuthology.orchestra.run.smithi078.stdout:280000016 2024-09-21T11:48:25.949 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-21T11:48:25.949 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:48:25.949 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd of=/scratch_devs 2024-09-21T11:48:26.004 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:48:26.004 DEBUG:teuthology.orchestra.run.smithi195:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T11:48:26.010 DEBUG:teuthology.misc:devs=['/dev/vg_nvme/lv_1', '/dev/vg_nvme/lv_2', '/dev/vg_nvme/lv_3', '/dev/vg_nvme/lv_4'] 2024-09-21T11:48:26.010 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_1 2024-09-21T11:48:26.058 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_1 -> ../dm-0 2024-09-21T11:48:26.059 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T11:48:26.059 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 883 Links: 1 2024-09-21T11:48:26.059 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T11:48:26.059 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-09-21 11:44:43.030519564 +0000 2024-09-21T11:48:26.059 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-09-21 11:44:42.782521779 +0000 2024-09-21T11:48:26.059 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-09-21 11:44:42.782521779 +0000 2024-09-21T11:48:26.059 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-09-21T11:48:26.059 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_1 of=/dev/null count=1 2024-09-21T11:48:26.113 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-09-21T11:48:26.113 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-09-21T11:48:26.113 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.00029993 s, 1.7 MB/s 2024-09-21T11:48:26.114 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_1 2024-09-21T11:48:26.163 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_2 2024-09-21T11:48:26.210 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_2 -> ../dm-1 2024-09-21T11:48:26.210 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T11:48:26.210 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 902 Links: 1 2024-09-21T11:48:26.210 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T11:48:26.210 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-09-21 11:44:43.266517457 +0000 2024-09-21T11:48:26.210 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-09-21 11:44:43.262517492 +0000 2024-09-21T11:48:26.211 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-09-21 11:44:43.262517492 +0000 2024-09-21T11:48:26.211 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-09-21T11:48:26.211 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_2 of=/dev/null count=1 2024-09-21T11:48:26.264 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-09-21T11:48:26.265 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-09-21T11:48:26.265 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000302646 s, 1.7 MB/s 2024-09-21T11:48:26.265 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_2 2024-09-21T11:48:26.316 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_3 2024-09-21T11:48:26.362 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_3 -> ../dm-2 2024-09-21T11:48:26.362 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T11:48:26.362 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 919 Links: 1 2024-09-21T11:48:26.362 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T11:48:26.363 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-09-21 11:44:43.994510953 +0000 2024-09-21T11:48:26.363 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-09-21 11:44:43.758513061 +0000 2024-09-21T11:48:26.363 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-09-21 11:44:43.758513061 +0000 2024-09-21T11:48:26.363 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-09-21T11:48:26.363 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_3 of=/dev/null count=1 2024-09-21T11:48:26.416 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-09-21T11:48:26.417 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-09-21T11:48:26.417 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000279462 s, 1.8 MB/s 2024-09-21T11:48:26.418 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_3 2024-09-21T11:48:26.467 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/vg_nvme/lv_4 2024-09-21T11:48:26.514 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/vg_nvme/lv_4 -> ../dm-3 2024-09-21T11:48:26.514 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 7 Blocks: 0 IO Block: 4096 symbolic link 2024-09-21T11:48:26.514 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 930 Links: 1 2024-09-21T11:48:26.514 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0777/lrwxrwxrwx) Uid: ( 0/ root) Gid: ( 0/ root) 2024-09-21T11:48:26.515 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-09-21 11:44:44.478506630 +0000 2024-09-21T11:48:26.515 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-09-21 11:44:44.234508811 +0000 2024-09-21T11:48:26.515 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-09-21 11:44:44.234508811 +0000 2024-09-21T11:48:26.515 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-09-21T11:48:26.515 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/vg_nvme/lv_4 of=/dev/null count=1 2024-09-21T11:48:26.568 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-09-21T11:48:26.569 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-09-21T11:48:26.569 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000300457 s, 1.7 MB/s 2024-09-21T11:48:26.570 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/vg_nvme/lv_4 2024-09-21T11:48:26.619 DEBUG:teuthology.orchestra.run.smithi195:> grep '^nvme_loop' /proc/modules || 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-09-21T11:48:26.746 INFO:teuthology.orchestra.run.smithi195.stdout:loop 2024-09-21T11:48:26.747 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_1... 2024-09-21T11:48:26.747 DEBUG:teuthology.orchestra.run.smithi195:> 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-09-21T11:48:26.764 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-09-21T11:48:26.783 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_11 2024-09-21T11:48:26.800 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_2... 2024-09-21T11:48:26.801 DEBUG:teuthology.orchestra.run.smithi195:> 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-09-21T11:48:26.859 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-09-21T11:48:26.878 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_21 2024-09-21T11:48:26.894 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_3... 2024-09-21T11:48:26.895 DEBUG:teuthology.orchestra.run.smithi195:> 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-09-21T11:48:26.954 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-09-21T11:48:26.974 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_31 2024-09-21T11:48:26.991 INFO:tasks.nvme_loop:Connecting nvme_loop smithi195:/dev/vg_nvme/lv_4... 2024-09-21T11:48:26.991 DEBUG:teuthology.orchestra.run.smithi195:> 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-09-21T11:48:27.050 INFO:teuthology.orchestra.run.smithi195.stdout:1 2024-09-21T11:48:27.069 INFO:teuthology.orchestra.run.smithi195.stdout:/dev/vg_nvme/lv_41 2024-09-21T11:48:27.087 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:48:27.087 DEBUG:teuthology.orchestra.run.smithi195:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T11:48:27.138 DEBUG:teuthology.orchestra.run.smithi195:> lsblk 2024-09-21T11:48:27.188 INFO:teuthology.orchestra.run.smithi195.stdout:NAME MAJ:MIN RM SIZE RO TYPE MOUNTPOINTS 2024-09-21T11:48:27.188 INFO:teuthology.orchestra.run.smithi195.stdout:sda 8:0 0 931.5G 0 disk 2024-09-21T11:48:27.188 INFO:teuthology.orchestra.run.smithi195.stdout:`-sda1 8:1 0 931.5G 0 part / 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:nvme0n1 259:0 0 447.1G 0 disk 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:|-vg_nvme-lv_1 253:0 0 89.4G 0 lvm 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:|-vg_nvme-lv_2 253:1 0 89.4G 0 lvm 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:|-vg_nvme-lv_3 253:2 0 89.4G 0 lvm 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:|-vg_nvme-lv_4 253:3 0 89.4G 0 lvm 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:`-vg_nvme-lv_5 253:4 0 14.9G 0 lvm /var/lib/ceph 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:nvme1n1 259:2 0 89.4G 0 disk 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:nvme2n1 259:4 0 89.4G 0 disk 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:nvme3n1 259:6 0 89.4G 0 disk 2024-09-21T11:48:27.189 INFO:teuthology.orchestra.run.smithi195.stdout:nvme4n1 259:8 0 89.4G 0 disk 2024-09-21T11:48:27.189 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme list -o json 2024-09-21T11:48:27.239 INFO:teuthology.orchestra.run.smithi195.stdout:{ 2024-09-21T11:48:27.239 INFO:teuthology.orchestra.run.smithi195.stdout: "Devices" : [ 2024-09-21T11:48:27.239 INFO:teuthology.orchestra.run.smithi195.stdout: { 2024-09-21T11:48:27.239 INFO:teuthology.orchestra.run.smithi195.stdout: "DevicePath" : "/dev/nvme0n1", 2024-09-21T11:48:27.239 INFO:teuthology.orchestra.run.smithi195.stdout: "Firmware" : "E2010325", 2024-09-21T11:48:27.239 INFO:teuthology.orchestra.run.smithi195.stdout: "Index" : 0, 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: "ModelNumber" : "INTEL SSDPED1D480GA", 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: "SerialNumber" : "PHMB751300FS480DGN" 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: }, 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: { 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: "DevicePath" : "/dev/nvme1n1", 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: "Firmware" : "5.15.0-1", 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: "Index" : 1, 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: "ModelNumber" : "Linux", 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: "SerialNumber" : "33c055dd37b61d262f61" 2024-09-21T11:48:27.240 INFO:teuthology.orchestra.run.smithi195.stdout: }, 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: { 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "DevicePath" : "/dev/nvme2n1", 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "Firmware" : "5.15.0-1", 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "Index" : 2, 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "ModelNumber" : "Linux", 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "SerialNumber" : "da5d43f7b8c40fe8e6f0" 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: }, 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: { 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "DevicePath" : "/dev/nvme3n1", 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "Firmware" : "5.15.0-1", 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "Index" : 3, 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "ModelNumber" : "Linux", 2024-09-21T11:48:27.241 INFO:teuthology.orchestra.run.smithi195.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: "SerialNumber" : "cb23693c7b1cac6408fc" 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: }, 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: { 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: "DevicePath" : "/dev/nvme4n1", 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: "Firmware" : "5.15.0-1", 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: "Index" : 4, 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: "ModelNumber" : "Linux", 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: "ProductName" : "Unknown Device", 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: "SerialNumber" : "e74dc35d8d342433196f" 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: } 2024-09-21T11:48:27.242 INFO:teuthology.orchestra.run.smithi195.stdout: ] 2024-09-21T11:48:27.243 INFO:teuthology.orchestra.run.smithi195.stdout:} 2024-09-21T11:48:27.243 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme1n1 seek=0 bs=1 count=4096 2024-09-21T11:48:27.303 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:27.303 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:27.303 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00750302 s, 546 kB/s 2024-09-21T11:48:27.304 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s0 /dev/nvme1n1 2024-09-21T11:48:27.373 INFO:teuthology.orchestra.run.smithi195.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:27.373 INFO:teuthology.orchestra.run.smithi195.stdout:00000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:27.373 INFO:teuthology.orchestra.run.smithi195.stdout:00000016 2024-09-21T11:48:27.374 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme1n1 seek=1073741824 bs=1 count=4096 2024-09-21T11:48:27.435 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:27.435 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:27.435 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00699212 s, 586 kB/s 2024-09-21T11:48:27.436 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s1073741824 /dev/nvme1n1 2024-09-21T11:48:27.489 INFO:teuthology.orchestra.run.smithi195.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:27.489 INFO:teuthology.orchestra.run.smithi195.stdout:40000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:27.489 INFO:teuthology.orchestra.run.smithi195.stdout:40000016 2024-09-21T11:48:27.491 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme1n1 seek=10737418240 bs=1 count=4096 2024-09-21T11:48:27.552 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:27.552 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:27.552 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00780709 s, 525 kB/s 2024-09-21T11:48:27.553 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s10737418240 /dev/nvme1n1 2024-09-21T11:48:27.613 INFO:teuthology.orchestra.run.smithi195.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:27.613 INFO:teuthology.orchestra.run.smithi195.stdout:280000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:27.613 INFO:teuthology.orchestra.run.smithi195.stdout:280000016 2024-09-21T11:48:27.614 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme2n1 seek=0 bs=1 count=4096 2024-09-21T11:48:27.676 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:27.676 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:27.676 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00742693 s, 552 kB/s 2024-09-21T11:48:27.677 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s0 /dev/nvme2n1 2024-09-21T11:48:27.733 INFO:teuthology.orchestra.run.smithi195.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:27.733 INFO:teuthology.orchestra.run.smithi195.stdout:00000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:27.733 INFO:teuthology.orchestra.run.smithi195.stdout:00000016 2024-09-21T11:48:27.734 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme2n1 seek=1073741824 bs=1 count=4096 2024-09-21T11:48:27.795 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:27.795 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:27.795 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00749625 s, 546 kB/s 2024-09-21T11:48:27.796 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s1073741824 /dev/nvme2n1 2024-09-21T11:48:27.848 INFO:teuthology.orchestra.run.smithi195.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:27.848 INFO:teuthology.orchestra.run.smithi195.stdout:40000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:27.848 INFO:teuthology.orchestra.run.smithi195.stdout:40000016 2024-09-21T11:48:27.850 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme2n1 seek=10737418240 bs=1 count=4096 2024-09-21T11:48:27.912 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:27.912 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:27.912 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00772625 s, 530 kB/s 2024-09-21T11:48:27.913 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s10737418240 /dev/nvme2n1 2024-09-21T11:48:27.969 INFO:teuthology.orchestra.run.smithi195.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:27.969 INFO:teuthology.orchestra.run.smithi195.stdout:280000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:27.969 INFO:teuthology.orchestra.run.smithi195.stdout:280000016 2024-09-21T11:48:27.970 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=0 bs=1 count=4096 2024-09-21T11:48:28.032 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:28.032 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:28.032 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00766474 s, 534 kB/s 2024-09-21T11:48:28.033 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s0 /dev/nvme3n1 2024-09-21T11:48:28.084 INFO:teuthology.orchestra.run.smithi195.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:28.084 INFO:teuthology.orchestra.run.smithi195.stdout:00000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:28.084 INFO:teuthology.orchestra.run.smithi195.stdout:00000016 2024-09-21T11:48:28.085 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=1073741824 bs=1 count=4096 2024-09-21T11:48:28.143 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:28.143 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:28.143 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00723968 s, 566 kB/s 2024-09-21T11:48:28.144 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s1073741824 /dev/nvme3n1 2024-09-21T11:48:28.196 INFO:teuthology.orchestra.run.smithi195.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:28.196 INFO:teuthology.orchestra.run.smithi195.stdout:40000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:28.196 INFO:teuthology.orchestra.run.smithi195.stdout:40000016 2024-09-21T11:48:28.197 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme3n1 seek=10737418240 bs=1 count=4096 2024-09-21T11:48:28.259 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:28.259 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:28.259 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00702155 s, 583 kB/s 2024-09-21T11:48:28.260 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s10737418240 /dev/nvme3n1 2024-09-21T11:48:28.313 INFO:teuthology.orchestra.run.smithi195.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:28.313 INFO:teuthology.orchestra.run.smithi195.stdout:280000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:28.313 INFO:teuthology.orchestra.run.smithi195.stdout:280000016 2024-09-21T11:48:28.314 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=0 bs=1 count=4096 2024-09-21T11:48:28.375 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:28.375 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:28.375 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00715437 s, 573 kB/s 2024-09-21T11:48:28.376 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s0 /dev/nvme4n1 2024-09-21T11:48:28.432 INFO:teuthology.orchestra.run.smithi195.stdout:00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:28.432 INFO:teuthology.orchestra.run.smithi195.stdout:00000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:28.432 INFO:teuthology.orchestra.run.smithi195.stdout:00000016 2024-09-21T11:48:28.433 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=1073741824 bs=1 count=4096 2024-09-21T11:48:28.499 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:28.499 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:28.499 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.0076013 s, 539 kB/s 2024-09-21T11:48:28.501 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s1073741824 /dev/nvme4n1 2024-09-21T11:48:28.552 INFO:teuthology.orchestra.run.smithi195.stdout:40000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:28.552 INFO:teuthology.orchestra.run.smithi195.stdout:40000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:28.552 INFO:teuthology.orchestra.run.smithi195.stdout:40000016 2024-09-21T11:48:28.553 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/zero of=/dev/nvme4n1 seek=10737418240 bs=1 count=4096 2024-09-21T11:48:28.615 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records in 2024-09-21T11:48:28.615 INFO:teuthology.orchestra.run.smithi195.stderr:4096+0 records out 2024-09-21T11:48:28.615 INFO:teuthology.orchestra.run.smithi195.stderr:4096 bytes (4.1 kB, 4.0 KiB) copied, 0.00744719 s, 550 kB/s 2024-09-21T11:48:28.617 DEBUG:teuthology.orchestra.run.smithi195:> sudo hexdump -n22 -C -s10737418240 /dev/nvme4n1 2024-09-21T11:48:28.669 INFO:teuthology.orchestra.run.smithi195.stdout:280000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 |................| 2024-09-21T11:48:28.669 INFO:teuthology.orchestra.run.smithi195.stdout:280000010 00 00 00 00 00 00 |......| 2024-09-21T11:48:28.669 INFO:teuthology.orchestra.run.smithi195.stdout:280000016 2024-09-21T11:48:28.670 INFO:tasks.nvme_loop:new_devs ['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-21T11:48:28.671 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:48:28.671 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/scratch_devs 2024-09-21T11:48:28.726 INFO:teuthology.run_tasks:Running task cephadm... 2024-09-21T11:48:28.816 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\\)', 'CEPHADM_DAEMON_PLACE_FAIL', 'CEPHADM_FAILED_DAEMON'], 'log-only-match': ['CEPHADM_'], 'sha1': '5c1cdc3c470dae78e91a0ed2bcf13509a046d301'} 2024-09-21T11:48:28.816 INFO:tasks.cephadm:Cluster image is quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 2024-09-21T11:48:28.817 INFO:tasks.cephadm:Cluster fsid is 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:48:28.817 INFO:tasks.cephadm:Choosing monitor IPs and ports... 2024-09-21T11:48:28.817 INFO:tasks.cephadm:No mon roles; fabricating mons 2024-09-21T11:48:28.817 INFO:tasks.cephadm:Monitor IPs: {'mon.smithi078': '172.21.15.78', 'mon.smithi195': '172.21.15.195'} 2024-09-21T11:48:28.817 INFO:tasks.cephadm:Normalizing hostnames... 2024-09-21T11:48:28.817 DEBUG:teuthology.orchestra.run.smithi078:> sudo hostname $(hostname -s) 2024-09-21T11:48:28.832 DEBUG:teuthology.orchestra.run.smithi195:> sudo hostname $(hostname -s) 2024-09-21T11:48:28.846 INFO:tasks.cephadm:Downloading "compiled" cephadm from cachra 2024-09-21T11:48:28.847 DEBUG:teuthology.packaging:Querying https://shaman.ceph.com/api/search?status=ready&project=ceph&flavor=default&distros=ubuntu%2F22.04%2Fx86_64&sha1=5c1cdc3c470dae78e91a0ed2bcf13509a046d301 2024-09-21T11:48:28.997 INFO:tasks.cephadm:builder_project result: [{'status': 'ready', 'sha1': '5c1cdc3c470dae78e91a0ed2bcf13509a046d301', 'extra': {'build_url': 'https://jenkins.ceph.com/job/ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic/83200/', 'root_build_cause': 'SCMTRIGGER', 'version': '19.3.0-5103-g5c1cdc3c', 'node_name': '172.21.2.16+braggi16', 'job_name': 'ceph-dev-new-build/ARCH=x86_64,AVAILABLE_ARCH=x86_64,AVAILABLE_DIST=jammy,DIST=jammy,MACHINE_SIZE=gigantic', 'package_manager_version': '19.3.0-5103-g5c1cdc3c-1jammy'}, 'url': 'https://3.chacra.ceph.com/r/ceph/wip-guits-main-2024-09-21-0813/5c1cdc3c470dae78e91a0ed2bcf13509a046d301/ubuntu/jammy/flavors/default/', 'distro_codename': 'jammy', 'modified': '2024-09-21 09:54:26.368275', 'distro_version': '22.04', 'project': 'ceph', 'flavor': 'default', 'ref': 'wip-guits-main-2024-09-21-0813', 'chacra_url': 'https://3.chacra.ceph.com/repos/ceph/wip-guits-main-2024-09-21-0813/5c1cdc3c470dae78e91a0ed2bcf13509a046d301/ubuntu/jammy/flavors/default/', 'archs': ['x86_64'], 'distro': 'ubuntu'}] 2024-09-21T11:48:29.142 INFO:tasks.util.chacra:got chacra host 3.chacra.ceph.com, ref wip-guits-main-2024-09-21-0813, sha1 5c1cdc3c470dae78e91a0ed2bcf13509a046d301 from https://shaman.ceph.com/api/search/?project=ceph&distros=ubuntu%2F22.04%2Fx86_64&flavor=default&sha1=5c1cdc3c470dae78e91a0ed2bcf13509a046d301 2024-09-21T11:48:29.144 INFO:tasks.cephadm:Discovered cachra url: https://3.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-21-0813/5c1cdc3c470dae78e91a0ed2bcf13509a046d301/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-21T11:48:29.144 INFO:tasks.cephadm:Downloading cephadm from url: https://3.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-21-0813/5c1cdc3c470dae78e91a0ed2bcf13509a046d301/ubuntu/jammy/x86_64/flavors/default/cephadm 2024-09-21T11:48:29.144 DEBUG:teuthology.orchestra.run.smithi078:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-21-0813/5c1cdc3c470dae78e91a0ed2bcf13509a046d301/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-21T11:48:29.617 INFO:teuthology.orchestra.run.smithi078.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811798 Sep 21 11:48 /home/ubuntu/cephtest/cephadm 2024-09-21T11:48:29.617 DEBUG:teuthology.orchestra.run.smithi195:> curl --silent -L https://3.chacra.ceph.com/binaries/ceph/wip-guits-main-2024-09-21-0813/5c1cdc3c470dae78e91a0ed2bcf13509a046d301/ubuntu/jammy/x86_64/flavors/default/cephadm > /home/ubuntu/cephtest/cephadm && ls -l /home/ubuntu/cephtest/cephadm 2024-09-21T11:48:30.103 INFO:teuthology.orchestra.run.smithi195.stdout:-rw-rw-r-- 1 ubuntu ubuntu 811798 Sep 21 11:48 /home/ubuntu/cephtest/cephadm 2024-09-21T11:48:30.103 DEBUG:teuthology.orchestra.run.smithi078:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-21T11:48:30.111 DEBUG:teuthology.orchestra.run.smithi195:> test -s /home/ubuntu/cephtest/cephadm && test $(stat -c%s /home/ubuntu/cephtest/cephadm) -gt 1000 && chmod +x /home/ubuntu/cephtest/cephadm 2024-09-21T11:48:30.127 INFO:tasks.cephadm:Pulling image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 on all hosts... 2024-09-21T11:48:30.127 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 pull 2024-09-21T11:48:30.153 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 pull 2024-09-21T11:48:30.326 INFO:teuthology.orchestra.run.smithi078.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301... 2024-09-21T11:48:30.344 INFO:teuthology.orchestra.run.smithi195.stderr:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301... 2024-09-21T11:49:59.581 INFO:teuthology.orchestra.run.smithi195.stdout:{ 2024-09-21T11:49:59.582 INFO:teuthology.orchestra.run.smithi195.stdout: "ceph_version": "ceph version 19.3.0-5103-g5c1cdc3c (5c1cdc3c470dae78e91a0ed2bcf13509a046d301) squid (dev)", 2024-09-21T11:49:59.582 INFO:teuthology.orchestra.run.smithi195.stdout: "image_id": "8f4d013db793795fef09ff5edf96e6b42ba8cd2c9158b2f0b7a5d7c1e657c063", 2024-09-21T11:49:59.582 INFO:teuthology.orchestra.run.smithi195.stdout: "repo_digests": [ 2024-09-21T11:49:59.582 INFO:teuthology.orchestra.run.smithi195.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:3855b8c483c85027fea24c112434955a9e8e6f629214baaca7b99a8fabb55472" 2024-09-21T11:49:59.582 INFO:teuthology.orchestra.run.smithi195.stdout: ] 2024-09-21T11:49:59.582 INFO:teuthology.orchestra.run.smithi195.stdout:} 2024-09-21T11:50:02.903 INFO:teuthology.orchestra.run.smithi078.stdout:{ 2024-09-21T11:50:02.903 INFO:teuthology.orchestra.run.smithi078.stdout: "ceph_version": "ceph version 19.3.0-5103-g5c1cdc3c (5c1cdc3c470dae78e91a0ed2bcf13509a046d301) squid (dev)", 2024-09-21T11:50:02.903 INFO:teuthology.orchestra.run.smithi078.stdout: "image_id": "8f4d013db793795fef09ff5edf96e6b42ba8cd2c9158b2f0b7a5d7c1e657c063", 2024-09-21T11:50:02.903 INFO:teuthology.orchestra.run.smithi078.stdout: "repo_digests": [ 2024-09-21T11:50:02.903 INFO:teuthology.orchestra.run.smithi078.stdout: "quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:3855b8c483c85027fea24c112434955a9e8e6f629214baaca7b99a8fabb55472" 2024-09-21T11:50:02.903 INFO:teuthology.orchestra.run.smithi078.stdout: ] 2024-09-21T11:50:02.903 INFO:teuthology.orchestra.run.smithi078.stdout:} 2024-09-21T11:50:02.943 DEBUG:teuthology.orchestra.run.smithi078:> sudo mkdir -p /etc/ceph 2024-09-21T11:50:02.956 DEBUG:teuthology.orchestra.run.smithi195:> sudo mkdir -p /etc/ceph 2024-09-21T11:50:02.970 DEBUG:teuthology.orchestra.run.smithi078:> sudo chmod 777 /etc/ceph 2024-09-21T11:50:03.015 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 777 /etc/ceph 2024-09-21T11:50:03.026 INFO:tasks.cephadm:Writing seed config... 2024-09-21T11:50:03.027 INFO:tasks.cephadm: override: [mgr] debug mgr = 20 2024-09-21T11:50:03.028 INFO:tasks.cephadm: override: [mgr] debug ms = 1 2024-09-21T11:50:03.028 INFO:tasks.cephadm: override: [mon] debug mon = 20 2024-09-21T11:50:03.028 INFO:tasks.cephadm: override: [mon] debug ms = 1 2024-09-21T11:50:03.028 INFO:tasks.cephadm: override: [mon] debug paxos = 20 2024-09-21T11:50:03.028 INFO:tasks.cephadm: override: [osd] debug ms = 1 2024-09-21T11:50:03.028 INFO:tasks.cephadm: override: [osd] debug osd = 20 2024-09-21T11:50:03.028 INFO:tasks.cephadm: override: [osd] osd shutdown pgref assert = True 2024-09-21T11:50:03.029 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:50:03.029 DEBUG:teuthology.orchestra.run.smithi078:> dd of=/home/ubuntu/cephtest/seed.ceph.conf 2024-09-21T11:50:03.064 DEBUG:tasks.cephadm:Final config: [global] # make logging friendly to teuthology log_to_file = true log_to_stderr = false log to journald = false mon cluster log to file = true mon cluster log file level = debug mon clock drift allowed = 1.000 # replicate across OSDs, not hosts osd crush chooseleaf type = 0 #osd pool default size = 2 osd pool default erasure code profile = plugin=jerasure technique=reed_sol_van k=2 m=1 crush-failure-domain=osd # enable some debugging auth debug = true ms die on old message = true ms die on bug = true debug asserts on shutdown = true # adjust warnings mon max pg per osd = 10000# >= luminous mon pg warn max object skew = 0 mon osd allow primary affinity = true mon osd allow pg remap = true mon warn on legacy crush tunables = false mon warn on crush straw calc version zero = false mon warn on no sortbitwise = false mon warn on osd down out interval zero = false mon warn on too few osds = false mon_warn_on_pool_pg_num_not_power_of_two = false # disable pg_autoscaler by default for new pools osd_pool_default_pg_autoscale_mode = off # tests delete pools mon allow pool delete = true fsid = 6b15370c-780f-11ef-baf6-efdc52797490 [osd] osd scrub load threshold = 5.0 osd scrub max interval = 600 osd mclock profile = high_recovery_ops osd recover clone overlap = true osd recovery max chunk = 1048576 osd deep scrub update digest min age = 30 osd map max advance = 10 osd memory target autotune = true # debugging osd debug shutdown = true osd debug op order = true osd debug verify stray on activate = true osd debug pg log writeout = true osd debug verify cached snaps = true osd debug verify missing on start = true osd debug misdirected ops = true osd op queue = debug_random osd op queue cut off = debug_random osd shutdown pgref assert = True bdev debug aio = true osd sloppy crc = true debug ms = 1 debug osd = 20 [mgr] mon reweight min pgs per osd = 4 mon reweight min bytes per osd = 10 mgr/telemetry/nag = false debug mgr = 20 debug ms = 1 [mon] mon data avail warn = 5 mon mgr mkfs grace = 240 mon reweight min pgs per osd = 4 mon osd reporter subtree level = osd mon osd prime pg temp = true mon reweight min bytes per osd = 10 # rotate auth tickets quickly to exercise renewal paths auth mon ticket ttl = 660# 11m auth service ticket ttl = 240# 4m # don't complain about global id reclaim mon_warn_on_insecure_global_id_reclaim = false mon_warn_on_insecure_global_id_reclaim_allowed = false debug mon = 20 debug ms = 1 debug paxos = 20 [client.rgw] rgw cache enabled = true rgw enable ops log = true rgw enable usage log = true 2024-09-21T11:50:03.064 DEBUG:teuthology.orchestra.run.smithi078:mon.smithi078> sudo journalctl -f -n 0 -u ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi078.service 2024-09-21T11:50:03.109 INFO:tasks.cephadm:Bootstrapping... 2024-09-21T11:50:03.109 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 -v bootstrap --fsid 6b15370c-780f-11ef-baf6-efdc52797490 --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.78 --skip-admin-label && sudo chmod +r /etc/ceph/ceph.client.admin.keyring 2024-09-21T11:50:03.334 INFO:teuthology.orchestra.run.smithi078.stdout:-------------------------------------------------------------------------------- 2024-09-21T11:50:03.334 INFO:teuthology.orchestra.run.smithi078.stdout:cephadm ['--image', 'quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301', '-v', 'bootstrap', '--fsid', '6b15370c-780f-11ef-baf6-efdc52797490', '--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.78', '--skip-admin-label'] 2024-09-21T11:50:03.334 INFO:teuthology.orchestra.run.smithi078.stderr:Specifying an fsid for your cluster offers no advantages and may increase the likelihood of fsid conflicts. 2024-09-21T11:50:03.335 INFO:teuthology.orchestra.run.smithi078.stdout:Verifying podman|docker is present... 2024-09-21T11:50:03.335 INFO:teuthology.orchestra.run.smithi078.stdout:Verifying lvm2 is present... 2024-09-21T11:50:03.335 INFO:teuthology.orchestra.run.smithi078.stdout:Verifying time synchronization is in place... 2024-09-21T11:50:03.339 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-21T11:50:03.339 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-21T11:50:03.344 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-21T11:50:03.344 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout inactive 2024-09-21T11:50:03.348 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-21T11:50:03.348 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-21T11:50:03.352 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-21T11:50:03.352 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout inactive 2024-09-21T11:50:03.356 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-21T11:50:03.356 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout masked 2024-09-21T11:50:03.360 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-21T11:50:03.360 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout inactive 2024-09-21T11:50:03.364 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-21T11:50:03.364 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-21T11:50:03.368 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-21T11:50:03.368 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout inactive 2024-09-21T11:50:03.372 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout enabled 2024-09-21T11:50:03.376 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout active 2024-09-21T11:50:03.376 INFO:teuthology.orchestra.run.smithi078.stdout:Unit ntp.service is enabled and running 2024-09-21T11:50:03.376 INFO:teuthology.orchestra.run.smithi078.stdout:Repeating the final host check... 2024-09-21T11:50:03.376 INFO:teuthology.orchestra.run.smithi078.stdout:docker (/usr/bin/docker) is present 2024-09-21T11:50:03.376 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl is present 2024-09-21T11:50:03.376 INFO:teuthology.orchestra.run.smithi078.stdout:lvcreate is present 2024-09-21T11:50:03.380 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl is-enabled chrony.service 2024-09-21T11:50:03.380 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Failed to get unit file state for chrony.service: No such file or directory 2024-09-21T11:50:03.383 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 3 from systemctl is-active chrony.service 2024-09-21T11:50:03.383 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout inactive 2024-09-21T11:50:03.387 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl is-enabled chronyd.service 2024-09-21T11:50:03.387 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Failed to get unit file state for chronyd.service: No such file or directory 2024-09-21T11:50:03.391 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 3 from systemctl is-active chronyd.service 2024-09-21T11:50:03.391 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout inactive 2024-09-21T11:50:03.395 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl is-enabled systemd-timesyncd.service 2024-09-21T11:50:03.395 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout masked 2024-09-21T11:50:03.399 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 3 from systemctl is-active systemd-timesyncd.service 2024-09-21T11:50:03.399 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout inactive 2024-09-21T11:50:03.403 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl is-enabled ntpd.service 2024-09-21T11:50:03.403 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Failed to get unit file state for ntpd.service: No such file or directory 2024-09-21T11:50:03.406 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 3 from systemctl is-active ntpd.service 2024-09-21T11:50:03.407 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout inactive 2024-09-21T11:50:03.411 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout enabled 2024-09-21T11:50:03.415 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stdout active 2024-09-21T11:50:03.415 INFO:teuthology.orchestra.run.smithi078.stdout:Unit ntp.service is enabled and running 2024-09-21T11:50:03.415 INFO:teuthology.orchestra.run.smithi078.stdout:Host looks OK 2024-09-21T11:50:03.415 INFO:teuthology.orchestra.run.smithi078.stdout:Cluster fsid: 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:03.416 INFO:teuthology.orchestra.run.smithi078.stdout:Acquiring lock 140158652218528 on /run/cephadm/6b15370c-780f-11ef-baf6-efdc52797490.lock 2024-09-21T11:50:03.416 INFO:teuthology.orchestra.run.smithi078.stdout:Lock 140158652218528 acquired on /run/cephadm/6b15370c-780f-11ef-baf6-efdc52797490.lock 2024-09-21T11:50:03.416 INFO:teuthology.orchestra.run.smithi078.stdout:Verifying IP 172.21.15.78 port 3300 ... 2024-09-21T11:50:03.416 INFO:teuthology.orchestra.run.smithi078.stdout:Verifying IP 172.21.15.78 port 6789 ... 2024-09-21T11:50:03.416 INFO:teuthology.orchestra.run.smithi078.stdout:Base mon IP(s) is [172.21.15.78:3300, 172.21.15.78:6789], mon addrv is [v2:172.21.15.78:3300,v1:172.21.15.78:6789] 2024-09-21T11:50:03.419 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 2024-09-21T11:50:03.419 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.78 metric 100 2024-09-21T11:50:03.419 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout 158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.78 metric 100 2024-09-21T11:50:03.419 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout 172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-21T11:50:03.419 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout 172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.78 metric 100 2024-09-21T11:50:03.419 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout 172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.78 metric 100 2024-09-21T11:50:03.419 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout 172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.78 metric 100 2024-09-21T11:50:03.419 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout 172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.78 metric 100 2024-09-21T11:50:03.420 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout ::1 dev lo proto kernel metric 256 pref medium 2024-09-21T11:50:03.421 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout fe80::/64 dev enp3s0f1 proto kernel metric 256 pref medium 2024-09-21T11:50:03.421 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout default via fe80::327c:5e00:6487:71e0 dev enp3s0f1 proto ra metric 100 expires 1790sec pref medium 2024-09-21T11:50:03.423 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout 1: lo: mtu 65536 state UNKNOWN qlen 1000 2024-09-21T11:50:03.423 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout inet6 ::1/128 scope host 2024-09-21T11:50:03.423 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-21T11:50:03.423 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout 5: enp3s0f1: mtu 1500 state UP qlen 1000 2024-09-21T11:50:03.423 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout inet6 fe80::ec4:7aff:fe8f:d4dd/64 scope link 2024-09-21T11:50:03.423 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/sbin/ip: stdout valid_lft forever preferred_lft forever 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Mon IP `172.21.15.78` is in CIDR network `172.21.0.0/20` 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Mon IP `172.21.15.78` is in CIDR network `172.21.0.0/20` 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Mon IP `172.21.15.78` is in CIDR network `172.21.0.1/32` 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Mon IP `172.21.15.78` is in CIDR network `172.21.0.1/32` 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Mon IP `172.21.15.78` is in CIDR network `172.21.0.2/32` 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Mon IP `172.21.15.78` is in CIDR network `172.21.0.2/32` 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Mon IP `172.21.15.78` is in CIDR network `172.21.15.254/32` 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Mon IP `172.21.15.78` is in CIDR network `172.21.15.254/32` 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Inferred mon public CIDR from local network configuration ['172.21.0.0/20', '172.21.0.0/20', '172.21.0.1/32', '172.21.0.1/32', '172.21.0.2/32', '172.21.0.2/32', '172.21.15.254/32', '172.21.15.254/32'] 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Internal network (--cluster-network) has not been provided, OSD replication will default to the public_network 2024-09-21T11:50:03.426 INFO:teuthology.orchestra.run.smithi078.stdout:Pulling container image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301... 2024-09-21T11:50:03.645 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/docker: stdout 5c1cdc3c470dae78e91a0ed2bcf13509a046d301: Pulling from ceph-ci/ceph 2024-09-21T11:50:03.645 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/docker: stdout Digest: sha256:3855b8c483c85027fea24c112434955a9e8e6f629214baaca7b99a8fabb55472 2024-09-21T11:50:03.645 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/docker: stdout Status: Image is up to date for quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 2024-09-21T11:50:03.645 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/docker: stdout quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 2024-09-21T11:50:05.334 INFO:teuthology.orchestra.run.smithi078.stdout:ceph: stdout ceph version 19.3.0-5103-g5c1cdc3c (5c1cdc3c470dae78e91a0ed2bcf13509a046d301) squid (dev) 2024-09-21T11:50:05.334 INFO:teuthology.orchestra.run.smithi078.stdout:Ceph version: ceph version 19.3.0-5103-g5c1cdc3c (5c1cdc3c470dae78e91a0ed2bcf13509a046d301) squid (dev) 2024-09-21T11:50:05.334 INFO:teuthology.orchestra.run.smithi078.stdout:Extracting ceph user uid/gid from container image... 2024-09-21T11:50:06.598 INFO:teuthology.orchestra.run.smithi078.stdout:stat: stdout 167 167 2024-09-21T11:50:06.598 INFO:teuthology.orchestra.run.smithi078.stdout:Creating initial keys... 2024-09-21T11:50:07.945 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-authtool: stdout AQDvsu5mASbYGBAAEFUxxiRFu715iU6eJCUBoA== 2024-09-21T11:50:09.395 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-authtool: stdout AQDwsu5maQ6aMhAA2Ie+jlVW2yTf+ZH11D7LOg== 2024-09-21T11:50:10.852 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-authtool: stdout AQDysu5mvSVEEBAAzQ2tNZ5oFKqrcdUtB8sLnA== 2024-09-21T11:50:10.853 INFO:teuthology.orchestra.run.smithi078.stdout:Creating initial monmap... 2024-09-21T11:50:12.250 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-21T11:50:12.250 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/monmaptool: stdout setting min_mon_release = quincy 2024-09-21T11:50:12.250 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: set fsid to 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:12.250 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/monmaptool: stdout /usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-21T11:50:12.251 INFO:teuthology.orchestra.run.smithi078.stdout:monmaptool for smithi078 [v2:172.21.15.78:3300,v1:172.21.15.78:6789] on /usr/bin/monmaptool: monmap file /tmp/monmap 2024-09-21T11:50:12.251 INFO:teuthology.orchestra.run.smithi078.stdout:setting min_mon_release = quincy 2024-09-21T11:50:12.251 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/monmaptool: set fsid to 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:12.251 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/monmaptool: writing epoch 0 to /tmp/monmap (1 monitors) 2024-09-21T11:50:12.251 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:50:12.251 INFO:teuthology.orchestra.run.smithi078.stdout:Creating mon... 2024-09-21T11:50:13.802 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.188+0000 7fe9edab1c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-21T11:50:13.802 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.188+0000 7fe9edab1c80 1 imported monmap: 2024-09-21T11:50:13.802 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr epoch 0 2024-09-21T11:50:13.802 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:13.802 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr last_changed 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:13.802 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr created 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:13.802 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr min_mon_release 17 (quincy) 2024-09-21T11:50:13.802 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr election_strategy: 1 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 0: [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon.smithi078 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.188+0000 7fe9edab1c80 0 /usr/bin/ceph-mon: set fsid to 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Git sha 0 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Compile date 2024-09-21 08:36:07 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: DB SUMMARY 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: DB Session ID: XJFWJHF8FK2G7E10MC03 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.803 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi078/store.db dir, Total Num: 0, files: 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi078/store.db: 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.error_if_exists: 0 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.create_if_missing: 1 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.env: 0x55a11522d120 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.info_log: 0x55a11603ed80 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-21T11:50:13.804 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.statistics: (nil) 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.use_fsync: 0 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.db_log_dir: 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.wal_dir: 2024-09-21T11:50:13.805 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.write_buffer_manager: 0x55a116037cc0 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-21T11:50:13.806 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.unordered_write: 0 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.row_cache: None 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.wal_filter: None 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.two_write_queues: 0 2024-09-21T11:50:13.807 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.wal_compression: 0 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.atomic_flush: 0 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-21T11:50:13.808 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_open_files: -1 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-21T11:50:13.809 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Compression algorithms supported: 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: kZSTD supported: 0 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: kXpressCompression supported: 0 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: kZlibCompression supported: 1 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-21T11:50:13.810 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: [db/db_impl/db_impl_open.cc:317] Creating manifest 1 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi078/store.db/MANIFEST-000001 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.merge_operator: 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_filter: None 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-21T11:50:13.811 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55a11603e9a0) 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks: 1 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr cache_index_and_filter_blocks_with_high_priority: 0 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr pin_top_level_index_and_filter: 1 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr index_type: 0 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr data_block_index_type: 0 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr index_shortening: 1 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr data_block_hash_table_util_ratio: 0.750000 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr checksum: 4 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr no_block_cache: 0 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr block_cache: 0x55a116027610 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr block_cache_name: BinnedLRUCache 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr block_cache_options: 2024-09-21T11:50:13.812 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr capacity : 536870912 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr num_shard_bits : 4 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr strict_capacity_limit : 0 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr high_pri_pool_ratio: 0.000 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr block_cache_compressed: (nil) 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr persistent_cache: (nil) 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr block_size: 4096 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr block_size_deviation: 10 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr block_restart_interval: 16 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr index_block_restart_interval: 1 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr metadata_block_size: 4096 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr partition_filters: 0 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr use_delta_encoding: 1 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr filter_policy: bloomfilter 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr whole_key_filtering: 1 2024-09-21T11:50:13.813 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr verify_compression: 0 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr read_amp_bytes_per_bit: 0 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr format_version: 5 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr enable_index_compression: 1 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr block_align: 0 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr max_auto_readahead_size: 262144 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr prepopulate_block_cache: 0 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr initial_auto_readahead_size: 8192 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr num_file_reads_for_auto_readahead: 2 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression: NoCompression 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-21T11:50:13.814 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.num_levels: 7 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-21T11:50:13.815 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-21T11:50:13.816 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-21T11:50:13.817 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-21T11:50:13.818 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.bloom_locality: 0 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.ttl: 2592000 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-21T11:50:13.819 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.enable_blob_files: false 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.min_blob_size: 0 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.192+0000 7fe9edab1c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9edab1c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi078/store.db/MANIFEST-000001 succeeded,manifest_file_number is 1, next_file_number is 3, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9edab1c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-21T11:50:13.820 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9edab1c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: a3acaa31-6e99-4cfe-926d-5d383771db3c 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9edab1c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 5 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9edab1c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55a116056e00 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9edab1c80 4 rocksdb: DB pointer 0x55a116138000 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9e523c640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9e523c640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr ** DB Stats ** 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T11:50:13.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Sum 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.00 0.00 0 0.000 0 0 0.0 0.0 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr ** Compaction Stats [default] ** 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-21T11:50:13.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Flush(GB): cumulative 0.000, interval 0.000 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr AddFile(GB): cumulative 0.000, interval 0.000 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr AddFile(Total Files): cumulative 0, interval 0 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr AddFile(L0 Files): cumulative 0, interval 0 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr AddFile(Keys): cumulative 0, interval 0 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Cumulative compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Interval compaction: 0.00 GB write, 0.00 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Block cache BinnedLRUCache@0x55a116027610#7 capacity: 512.00 MB usage: 0.00 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.4e-05 secs_since: 0 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr Block cache entry stats(count,size,portion): Misc(1,0.00 KB,0%) 2024-09-21T11:50:13.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.824 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr ** File Read Latency Histogram By Level [default] ** 2024-09-21T11:50:13.824 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr 2024-09-21T11:50:13.824 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9edab1c80 4 rocksdb: [db/db_impl/db_impl.cc:496] Shutdown: canceling all background work 2024-09-21T11:50:13.824 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9edab1c80 4 rocksdb: [db/db_impl/db_impl.cc:704] Shutdown complete 2024-09-21T11:50:13.824 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph-mon: stderr debug 2024-09-21T11:50:13.196+0000 7fe9edab1c80 0 /usr/bin/ceph-mon: created monfs at /var/lib/ceph/mon/ceph-smithi078 for mon.smithi078 2024-09-21T11:50:13.824 INFO:teuthology.orchestra.run.smithi078.stdout:create mon.smithi078 on 2024-09-21T11:50:14.285 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph.target -> /etc/systemd/system/ceph.target. 2024-09-21T11:50:14.522 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Created symlink /etc/systemd/system/multi-user.target.wants/ceph-6b15370c-780f-11ef-baf6-efdc52797490.target -> /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490.target. 2024-09-21T11:50:14.522 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph.target.wants/ceph-6b15370c-780f-11ef-baf6-efdc52797490.target -> /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490.target. 2024-09-21T11:50:14.822 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi078 2024-09-21T11:50:14.822 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Failed to reset failed state of unit ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi078.service: Unit ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi078.service not loaded. 2024-09-21T11:50:15.030 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490.target.wants/ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi078.service -> /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service. 2024-09-21T11:50:15.040 INFO:teuthology.orchestra.run.smithi078.stdout:firewalld does not appear to be present 2024-09-21T11:50:15.040 INFO:teuthology.orchestra.run.smithi078.stdout:Not possible to enable service . firewalld.service is not available 2024-09-21T11:50:15.040 INFO:teuthology.orchestra.run.smithi078.stdout:Waiting for mon to start... 2024-09-21T11:50:15.040 INFO:teuthology.orchestra.run.smithi078.stdout:Waiting for mon... 2024-09-21T11:50:15.148 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:15 smithi078 systemd[1]: Started Ceph mon.smithi078 for 6b15370c-780f-11ef-baf6-efdc52797490. 2024-09-21T11:50:16.776 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:16 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.545101+0000 mon.smithi078 (mon.0) 0 : cluster [INF] mkfs 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:16.777 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:16 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.545101+0000 mon.smithi078 (mon.0) 0 : cluster [INF] mkfs 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:16.777 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:16 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.517576+0000 mon.smithi078 (mon.0) 1 : cluster [INF] mon.smithi078 is new leader, mons smithi078 in quorum (ranks 0) 2024-09-21T11:50:16.777 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:16 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.517576+0000 mon.smithi078 (mon.0) 1 : cluster [INF] mon.smithi078 is new leader, mons smithi078 in quorum (ranks 0) 2024-09-21T11:50:17.322 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout cluster: 2024-09-21T11:50:17.322 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout id: 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:17.322 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout health: HEALTH_OK 2024-09-21T11:50:17.322 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:17.322 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout services: 2024-09-21T11:50:17.322 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon: 1 daemons, quorum smithi078 (age 0.221432s) 2024-09-21T11:50:17.322 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mgr: no daemons active 2024-09-21T11:50:17.322 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout osd: 0 osds: 0 up, 0 in 2024-09-21T11:50:17.323 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:17.323 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout data: 2024-09-21T11:50:17.323 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout pools: 0 pools, 0 pgs 2024-09-21T11:50:17.323 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout objects: 0 objects, 0 B 2024-09-21T11:50:17.323 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout usage: 0 B used, 0 B / 0 B avail 2024-09-21T11:50:17.323 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout pgs: 2024-09-21T11:50:17.323 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:17.323 INFO:teuthology.orchestra.run.smithi078.stdout:mon is available 2024-09-21T11:50:17.323 INFO:teuthology.orchestra.run.smithi078.stdout:Assimilating anything we can from ceph.conf... 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.543984+0000 mon.smithi078 (mon.0) 2 : cluster [INF] mon.smithi078 is new leader, mons smithi078 in quorum (ranks 0) 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.543984+0000 mon.smithi078 (mon.0) 2 : cluster [INF] mon.smithi078 is new leader, mons smithi078 in quorum (ranks 0) 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544233+0000 mon.smithi078 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544233+0000 mon.smithi078 (mon.0) 3 : cluster [DBG] monmap epoch 1 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544246+0000 mon.smithi078 (mon.0) 4 : cluster [DBG] fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544246+0000 mon.smithi078 (mon.0) 4 : cluster [DBG] fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544254+0000 mon.smithi078 (mon.0) 5 : cluster [DBG] last_changed 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544254+0000 mon.smithi078 (mon.0) 5 : cluster [DBG] last_changed 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544262+0000 mon.smithi078 (mon.0) 6 : cluster [DBG] created 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544262+0000 mon.smithi078 (mon.0) 6 : cluster [DBG] created 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:17.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544272+0000 mon.smithi078 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544272+0000 mon.smithi078 (mon.0) 7 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544279+0000 mon.smithi078 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544279+0000 mon.smithi078 (mon.0) 8 : cluster [DBG] election_strategy: 1 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544287+0000 mon.smithi078 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon.smithi078 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.544287+0000 mon.smithi078 (mon.0) 9 : cluster [DBG] 0: [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon.smithi078 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.546796+0000 mon.smithi078 (mon.0) 10 : cluster [DBG] fsmap 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.546796+0000 mon.smithi078 (mon.0) 10 : cluster [DBG] fsmap 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.549565+0000 mon.smithi078 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.549565+0000 mon.smithi078 (mon.0) 11 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.550270+0000 mon.smithi078 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: cluster 2024-09-21T11:50:16.550270+0000 mon.smithi078 (mon.0) 12 : cluster [DBG] mgrmap e1: no daemons active 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: audit 2024-09-21T11:50:16.765361+0000 mon.smithi078 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.78:0/3162740969' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-21T11:50:17.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:17 smithi078 bash[19529]: audit 2024-09-21T11:50:16.765361+0000 mon.smithi078 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.78:0/3162740969' entity='client.admin' cmd={"prefix": "status"} : dispatch 2024-09-21T11:50:18.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:18 smithi078 bash[19529]: audit 2024-09-21T11:50:18.467250+0000 mon.smithi078 (mon.0) 14 : audit [INF] from='client.? 172.21.15.78:0/808127549' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-21T11:50:18.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:18 smithi078 bash[19529]: audit 2024-09-21T11:50:18.467250+0000 mon.smithi078 (mon.0) 14 : audit [INF] from='client.? 172.21.15.78:0/808127549' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-21T11:50:18.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:18 smithi078 bash[19529]: audit 2024-09-21T11:50:18.470530+0000 mon.smithi078 (mon.0) 15 : audit [INF] from='client.? 172.21.15.78:0/808127549' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-21T11:50:18.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:18 smithi078 bash[19529]: audit 2024-09-21T11:50:18.470530+0000 mon.smithi078 (mon.0) 15 : audit [INF] from='client.? 172.21.15.78:0/808127549' entity='client.admin' cmd='[{"prefix": "config assimilate-conf"}]': finished 2024-09-21T11:50:19.005 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:19.005 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout [global] 2024-09-21T11:50:19.006 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout fsid = 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:19.006 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-21T11:50:19.006 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.78:3300,v1:172.21.15.78:6789] 2024-09-21T11:50:19.006 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-21T11:50:19.006 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-21T11:50:19.006 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-21T11:50:19.007 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-21T11:50:19.007 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:19.007 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-21T11:50:19.007 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-21T11:50:19.007 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:19.007 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout [osd] 2024-09-21T11:50:19.008 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-21T11:50:19.008 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-21T11:50:19.008 INFO:teuthology.orchestra.run.smithi078.stdout:Generating new minimal ceph.conf... 2024-09-21T11:50:20.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:20 smithi078 bash[19529]: audit 2024-09-21T11:50:20.140572+0000 mon.smithi078 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.78:0/2252214777' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:50:20.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:20 smithi078 bash[19529]: audit 2024-09-21T11:50:20.140572+0000 mon.smithi078 (mon.0) 16 : audit [DBG] from='client.? 172.21.15.78:0/2252214777' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:50:20.718 INFO:teuthology.orchestra.run.smithi078.stdout:Restarting the monitor... 2024-09-21T11:50:21.065 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:20 smithi078 systemd[1]: Stopping Ceph mon.smithi078 for 6b15370c-780f-11ef-baf6-efdc52797490... 2024-09-21T11:50:21.065 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:20 smithi078 bash[19529]: debug 2024-09-21T11:50:20.836+0000 7f2ed6fb9640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi078 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-21T11:50:21.065 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:20 smithi078 bash[19529]: debug 2024-09-21T11:50:20.836+0000 7f2ed6fb9640 -1 mon.smithi078@0(leader) e1 *** Got Signal Terminated *** 2024-09-21T11:50:21.627 INFO:teuthology.orchestra.run.smithi078.stdout:Setting public_network to 172.21.0.2/32,172.21.0.0/20,172.21.15.254/32,172.21.0.1/32 in mon config section 2024-09-21T11:50:21.733 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:21 smithi078 bash[19913]: ceph-6b15370c-780f-11ef-baf6-efdc52797490-mon-smithi078 2024-09-21T11:50:21.733 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:21 smithi078 bash[19971]: Error response from daemon: No such container: ceph-6b15370c-780f-11ef-baf6-efdc52797490-mon-smithi078 2024-09-21T11:50:21.733 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:21 smithi078 systemd[1]: ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi078.service: Deactivated successfully. 2024-09-21T11:50:21.733 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:21 smithi078 systemd[1]: Stopped Ceph mon.smithi078 for 6b15370c-780f-11ef-baf6-efdc52797490. 2024-09-21T11:50:21.733 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:21 smithi078 systemd[1]: Started Ceph mon.smithi078 for 6b15370c-780f-11ef-baf6-efdc52797490. 2024-09-21T11:50:23.319 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.040+0000 7f8f72610c80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-21T11:50:23.319 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.040+0000 7f8f72610c80 0 ceph version 19.3.0-5103-g5c1cdc3c (5c1cdc3c470dae78e91a0ed2bcf13509a046d301) squid (dev), process ceph-mon, pid 7 2024-09-21T11:50:23.319 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.040+0000 7f8f72610c80 0 pidfile_write: ignore empty --pid-file 2024-09-21T11:50:23.319 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 0 load: jerasure load: lrc 2024-09-21T11:50:23.319 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: RocksDB version: 7.9.2 2024-09-21T11:50:23.319 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Git sha 0 2024-09-21T11:50:23.319 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Compile date 2024-09-21 08:36:07 2024-09-21T11:50:23.319 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: DB SUMMARY 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: DB Session ID: ZYFVYDYA9MB6YQZO4AHE 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: CURRENT file: CURRENT 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: MANIFEST file: MANIFEST-000010 size: 179 Bytes 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi078/store.db dir, Total Num: 1, files: 000008.sst 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi078/store.db: 000009.log size: 89072 ; 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.error_if_exists: 0 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.create_if_missing: 0 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.paranoid_checks: 1 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-21T11:50:23.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.env: 0x55ceac90c120 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.info_log: 0x55ceadccd8e0 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.statistics: (nil) 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.use_fsync: 0 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_log_file_size: 0 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-21T11:50:23.321 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.allow_fallocate: 1 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.use_direct_reads: 0 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.db_log_dir: 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.wal_dir: 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-21T11:50:23.322 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-21T11:50:23.323 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-21T11:50:23.323 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-21T11:50:23.323 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.write_buffer_manager: 0x55ceadcd1b80 2024-09-21T11:50:23.323 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-21T11:50:23.323 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-21T11:50:23.323 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-21T11:50:23.323 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-21T11:50:23.323 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-21T11:50:23.323 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.unordered_write: 0 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.row_cache: None 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.wal_filter: None 2024-09-21T11:50:23.325 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.two_write_queues: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.wal_compression: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.atomic_flush: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.log_readahead_size: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-21T11:50:23.326 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_background_jobs: 2 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_background_compactions: -1 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_subcompactions: 1 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-21T11:50:23.327 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_open_files: -1 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_background_flushes: -1 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Compression algorithms supported: 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: kZSTD supported: 0 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: kXpressCompression supported: 0 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: kBZip2Compression supported: 0 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-21T11:50:23.328 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: kLZ4Compression supported: 1 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: kZlibCompression supported: 1 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: kSnappyCompression supported: 1 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi078/store.db/MANIFEST-000010 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.merge_operator: 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_filter: None 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-21T11:50:23.329 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55ceadccd540) 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cache_index_and_filter_blocks: 1 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: pin_top_level_index_and_filter: 1 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: index_type: 0 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: data_block_index_type: 0 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: index_shortening: 1 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: data_block_hash_table_util_ratio: 0.750000 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: checksum: 4 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: no_block_cache: 0 2024-09-21T11:50:23.330 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: block_cache: 0x55ceadcc3610 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: block_cache_name: BinnedLRUCache 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: block_cache_options: 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: capacity : 536870912 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: num_shard_bits : 4 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: strict_capacity_limit : 0 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: high_pri_pool_ratio: 0.000 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: block_cache_compressed: (nil) 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: persistent_cache: (nil) 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: block_size: 4096 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: block_size_deviation: 10 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: block_restart_interval: 16 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: index_block_restart_interval: 1 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: metadata_block_size: 4096 2024-09-21T11:50:23.331 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: partition_filters: 0 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: use_delta_encoding: 1 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: filter_policy: bloomfilter 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: whole_key_filtering: 1 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: verify_compression: 0 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: read_amp_bytes_per_bit: 0 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: format_version: 5 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: enable_index_compression: 1 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: block_align: 0 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: max_auto_readahead_size: 262144 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: prepopulate_block_cache: 0 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: initial_auto_readahead_size: 8192 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: num_file_reads_for_auto_readahead: 2 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-21T11:50:23.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression: NoCompression 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.num_levels: 7 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-21T11:50:23.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-21T11:50:23.334 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-21T11:50:23.335 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-21T11:50:23.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.inplace_update_support: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.bloom_locality: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.max_successive_merges: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.ttl: 2592000 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-21T11:50:23.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.enable_blob_files: false 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.min_blob_size: 0 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.044+0000 7f8f72610c80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi078/store.db/MANIFEST-000010 succeeded,manifest_file_number is 10, next_file_number is 12, last_sequence is 5, log_number is 5,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 5 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 5 2024-09-21T11:50:23.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: a3acaa31-6e99-4cfe-926d-5d383771db3c 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726919423051923, "job": 1, "event": "recovery_started", "wal_files": [9]} 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #9 mode 2 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726919423053111, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 13, "file_size": 85848, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 8, "largest_seqno": 257, "table_properties": {"data_size": 83988, "index_size": 244, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 581, "raw_key_size": 10002, "raw_average_key_size": 46, "raw_value_size": 78237, "raw_average_value_size": 362, "num_data_blocks": 11, "num_entries": 216, "num_filter_entries": 216, "num_deletions": 3, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726919423, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "a3acaa31-6e99-4cfe-926d-5d383771db3c", "db_session_id": "ZYFVYDYA9MB6YQZO4AHE", "orig_file_number": 13, "seqno_to_time_mapping": "N/A"}} 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726919423053246, "job": 1, "event": "recovery_finished"} 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 15 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi078/store.db/000009.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55ceadcf0e00 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f72610c80 4 rocksdb: DB pointer 0x55ceaddf4000 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f683d8640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.048+0000 7f8f683d8640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: ** DB Stats ** 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-21T11:50:23.339 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: ** Compaction Stats [default] ** 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: L0 2/0 85.73 KB 0.5 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 106.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Sum 2/0 85.73 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 106.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 106.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: ** Compaction Stats [default] ** 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-21T11:50:23.340 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 106.3 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: AddFile(Total Files): cumulative 0, interval 0 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: AddFile(Keys): cumulative 0, interval 0 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Cumulative compaction: 0.00 GB write, 20.96 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Interval compaction: 0.00 GB write, 20.96 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Block cache BinnedLRUCache@0x55ceadcc3610#7 capacity: 512.00 MB usage: 1.20 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1.3e-05 secs_since: 0 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: Block cache entry stats(count,size,portion): FilterBlock(2,0.77 KB,0.000146031%) IndexBlock(2,0.44 KB,8.34465e-05%) Misc(1,0.00 KB,0%) 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: ** File Read Latency Histogram By Level [default] ** 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.052+0000 7f8f72610c80 0 starting mon.smithi078 rank 0 at public addrs [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] at bind addrs [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi078 fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:23.341 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.052+0000 7f8f72610c80 1 mon.smithi078@-1(???) e1 preinit fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.052+0000 7f8f72610c80 0 mon.smithi078@-1(???).mds e1 new map 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.052+0000 7f8f72610c80 0 mon.smithi078@-1(???).mds e1 print_map 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: e1 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: btime 2024-09-21T11:50:16:544681+0000 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: legacy client fscid: -1 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: No filesystems configured 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.052+0000 7f8f72610c80 0 mon.smithi078@-1(???).osd e1 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.052+0000 7f8f72610c80 0 mon.smithi078@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.052+0000 7f8f72610c80 0 mon.smithi078@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.052+0000 7f8f72610c80 0 mon.smithi078@-1(???).osd e1 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T11:50:23.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: debug 2024-09-21T11:50:23.052+0000 7f8f72610c80 1 mon.smithi078@-1(???).paxosservice(auth 1..2) refresh upgraded, format 0 -> 3 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080064+0000 mon.smithi078 (mon.0) 1 : cluster [INF] mon.smithi078 is new leader, mons smithi078 in quorum (ranks 0) 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080064+0000 mon.smithi078 (mon.0) 1 : cluster [INF] mon.smithi078 is new leader, mons smithi078 in quorum (ranks 0) 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080147+0000 mon.smithi078 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080147+0000 mon.smithi078 (mon.0) 2 : cluster [DBG] monmap epoch 1 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080164+0000 mon.smithi078 (mon.0) 3 : cluster [DBG] fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080164+0000 mon.smithi078 (mon.0) 3 : cluster [DBG] fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080177+0000 mon.smithi078 (mon.0) 4 : cluster [DBG] last_changed 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080177+0000 mon.smithi078 (mon.0) 4 : cluster [DBG] last_changed 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080189+0000 mon.smithi078 (mon.0) 5 : cluster [DBG] created 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080189+0000 mon.smithi078 (mon.0) 5 : cluster [DBG] created 2024-09-21T11:50:11.698065+0000 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080203+0000 mon.smithi078 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080203+0000 mon.smithi078 (mon.0) 6 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080215+0000 mon.smithi078 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-21T11:50:23.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080215+0000 mon.smithi078 (mon.0) 7 : cluster [DBG] election_strategy: 1 2024-09-21T11:50:23.344 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080227+0000 mon.smithi078 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon.smithi078 2024-09-21T11:50:23.344 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080227+0000 mon.smithi078 (mon.0) 8 : cluster [DBG] 0: [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon.smithi078 2024-09-21T11:50:23.344 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080687+0000 mon.smithi078 (mon.0) 9 : cluster [DBG] fsmap 2024-09-21T11:50:23.344 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080687+0000 mon.smithi078 (mon.0) 9 : cluster [DBG] fsmap 2024-09-21T11:50:23.344 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080726+0000 mon.smithi078 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-21T11:50:23.344 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.080726+0000 mon.smithi078 (mon.0) 10 : cluster [DBG] osdmap e1: 0 total, 0 up, 0 in 2024-09-21T11:50:23.344 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.081187+0000 mon.smithi078 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-21T11:50:23.344 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:23 smithi078 bash[20010]: cluster 2024-09-21T11:50:23.081187+0000 mon.smithi078 (mon.0) 11 : cluster [DBG] mgrmap e1: no daemons active 2024-09-21T11:50:23.880 INFO:teuthology.orchestra.run.smithi078.stdout:Wrote config to /etc/ceph/ceph.conf 2024-09-21T11:50:23.899 INFO:teuthology.orchestra.run.smithi078.stdout:Wrote keyring to /etc/ceph/ceph.client.admin.keyring 2024-09-21T11:50:23.899 INFO:teuthology.orchestra.run.smithi078.stdout:Creating mgr... 2024-09-21T11:50:23.899 INFO:teuthology.orchestra.run.smithi078.stdout:Verifying port 0.0.0.0:9283 ... 2024-09-21T11:50:23.900 INFO:teuthology.orchestra.run.smithi078.stdout:Verifying port 0.0.0.0:8765 ... 2024-09-21T11:50:23.900 INFO:teuthology.orchestra.run.smithi078.stdout:Verifying port 0.0.0.0:8443 ... 2024-09-21T11:50:24.208 INFO:teuthology.orchestra.run.smithi078.stdout:Non-zero exit code 1 from systemctl reset-failed ceph-6b15370c-780f-11ef-baf6-efdc52797490@mgr.smithi078.aqnwdz 2024-09-21T11:50:24.209 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Failed to reset failed state of unit ceph-6b15370c-780f-11ef-baf6-efdc52797490@mgr.smithi078.aqnwdz.service: Unit ceph-6b15370c-780f-11ef-baf6-efdc52797490@mgr.smithi078.aqnwdz.service not loaded. 2024-09-21T11:50:24.212 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:24 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:50:24.435 INFO:teuthology.orchestra.run.smithi078.stdout:systemctl: stderr Created symlink /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490.target.wants/ceph-6b15370c-780f-11ef-baf6-efdc52797490@mgr.smithi078.aqnwdz.service -> /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service. 2024-09-21T11:50:24.443 INFO:teuthology.orchestra.run.smithi078.stdout:firewalld does not appear to be present 2024-09-21T11:50:24.443 INFO:teuthology.orchestra.run.smithi078.stdout:Not possible to enable service . firewalld.service is not available 2024-09-21T11:50:24.443 INFO:teuthology.orchestra.run.smithi078.stdout:firewalld does not appear to be present 2024-09-21T11:50:24.443 INFO:teuthology.orchestra.run.smithi078.stdout:Not possible to open ports <[9283, 8765, 8443]>. firewalld.service is not available 2024-09-21T11:50:24.443 INFO:teuthology.orchestra.run.smithi078.stdout:Waiting for mgr to start... 2024-09-21T11:50:24.443 INFO:teuthology.orchestra.run.smithi078.stdout:Waiting for mgr... 2024-09-21T11:50:24.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:24 smithi078 bash[20010]: audit 2024-09-21T11:50:23.306506+0000 mon.smithi078 (mon.0) 12 : audit [INF] from='client.? 172.21.15.78:0/883852798' entity='client.admin' 2024-09-21T11:50:24.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:24 smithi078 bash[20010]: audit 2024-09-21T11:50:23.306506+0000 mon.smithi078 (mon.0) 12 : audit [INF] from='client.? 172.21.15.78:0/883852798' entity='client.admin' 2024-09-21T11:50:24.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:24 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:50:26.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:26 smithi078 bash[20010]: audit 2024-09-21T11:50:26.268653+0000 mon.smithi078 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.78:0/1212054255' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T11:50:26.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:26 smithi078 bash[20010]: audit 2024-09-21T11:50:26.268653+0000 mon.smithi078 (mon.0) 13 : audit [DBG] from='client.? 172.21.15.78:0/1212054255' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout { 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "fsid": "6b15370c-780f-11ef-baf6-efdc52797490", 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "health": { 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 0 2024-09-21T11:50:26.821 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ], 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "smithi078" 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ], 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "quorum_age": 3, 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-21T11:50:26.822 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-21T11:50:26.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-21T11:50:26.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-21T11:50:26.823 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-21T11:50:26.826 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:26.826 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-21T11:50:26.826 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-21T11:50:26.826 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "btime": "2024-09-21T11:50:16:544681+0000", 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:26.827 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "restful" 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ], 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "modified": "2024-09-21T11:50:16.545564+0000", 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:26.828 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-21T11:50:26.829 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout } 2024-09-21T11:50:26.829 INFO:teuthology.orchestra.run.smithi078.stdout:mgr not available, waiting (1/15)... 2024-09-21T11:50:30.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:30 smithi078 bash[20010]: audit 2024-09-21T11:50:30.050453+0000 mon.smithi078 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.78:0/1712184485' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T11:50:30.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:30 smithi078 bash[20010]: audit 2024-09-21T11:50:30.050453+0000 mon.smithi078 (mon.0) 14 : audit [DBG] from='client.? 172.21.15.78:0/1712184485' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T11:50:30.604 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:30.604 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout { 2024-09-21T11:50:30.604 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "fsid": "6b15370c-780f-11ef-baf6-efdc52797490", 2024-09-21T11:50:30.604 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "health": { 2024-09-21T11:50:30.604 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-21T11:50:30.604 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-21T11:50:30.604 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 0 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ], 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "smithi078" 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ], 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "quorum_age": 6, 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-21T11:50:30.605 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:30.606 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-21T11:50:30.606 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:30.606 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-21T11:50:30.606 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-21T11:50:30.606 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-21T11:50:30.606 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-21T11:50:30.606 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-21T11:50:30.606 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-21T11:50:30.609 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:30.609 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-21T11:50:30.609 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-21T11:50:30.609 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-21T11:50:30.609 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-21T11:50:30.609 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-21T11:50:30.609 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-21T11:50:30.609 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "btime": "2024-09-21T11:50:16:544681+0000", 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "available": false, 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-21T11:50:30.610 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "restful" 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ], 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "modified": "2024-09-21T11:50:16.545564+0000", 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout } 2024-09-21T11:50:30.611 INFO:teuthology.orchestra.run.smithi078.stdout:mgr not available, waiting (2/15)... 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: cluster 2024-09-21T11:50:31.986666+0000 mon.smithi078 (mon.0) 15 : cluster [INF] Activating manager daemon smithi078.aqnwdz 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: cluster 2024-09-21T11:50:31.986666+0000 mon.smithi078 (mon.0) 15 : cluster [INF] Activating manager daemon smithi078.aqnwdz 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: cluster 2024-09-21T11:50:31.994662+0000 mon.smithi078 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi078.aqnwdz(active, starting, since 0.00835002s) 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: cluster 2024-09-21T11:50:31.994662+0000 mon.smithi078 (mon.0) 16 : cluster [DBG] mgrmap e2: smithi078.aqnwdz(active, starting, since 0.00835002s) 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.995837+0000 mon.smithi078 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.995837+0000 mon.smithi078 (mon.0) 17 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.995957+0000 mon.smithi078 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.995957+0000 mon.smithi078 (mon.0) 18 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.996069+0000 mon.smithi078 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T11:50:32.044 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.996069+0000 mon.smithi078 (mon.0) 19 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T11:50:32.045 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.996596+0000 mon.smithi078 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:50:32.045 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.996596+0000 mon.smithi078 (mon.0) 20 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:50:32.045 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.997775+0000 mon.smithi078 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi078.aqnwdz", "id": "smithi078.aqnwdz"} : dispatch 2024-09-21T11:50:32.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:31.997775+0000 mon.smithi078 (mon.0) 21 : audit [DBG] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi078.aqnwdz", "id": "smithi078.aqnwdz"} : dispatch 2024-09-21T11:50:32.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: cluster 2024-09-21T11:50:32.022614+0000 mon.smithi078 (mon.0) 22 : cluster [INF] Manager daemon smithi078.aqnwdz is now available 2024-09-21T11:50:32.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: cluster 2024-09-21T11:50:32.022614+0000 mon.smithi078 (mon.0) 22 : cluster [INF] Manager daemon smithi078.aqnwdz is now available 2024-09-21T11:50:32.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:32.033972+0000 mon.smithi078 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/mirror_snapshot_schedule"} : dispatch 2024-09-21T11:50:32.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:32.033972+0000 mon.smithi078 (mon.0) 23 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/mirror_snapshot_schedule"} : dispatch 2024-09-21T11:50:32.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:32.036104+0000 mon.smithi078 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/trash_purge_schedule"} : dispatch 2024-09-21T11:50:32.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:32 smithi078 bash[20010]: audit 2024-09-21T11:50:32.036104+0000 mon.smithi078 (mon.0) 24 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/trash_purge_schedule"} : dispatch 2024-09-21T11:50:33.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:33 smithi078 bash[20010]: audit 2024-09-21T11:50:32.039431+0000 mon.smithi078 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:33.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:33 smithi078 bash[20010]: audit 2024-09-21T11:50:32.039431+0000 mon.smithi078 (mon.0) 25 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:33.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:33 smithi078 bash[20010]: audit 2024-09-21T11:50:32.051271+0000 mon.smithi078 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:33.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:33 smithi078 bash[20010]: audit 2024-09-21T11:50:32.051271+0000 mon.smithi078 (mon.0) 26 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:33.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:33 smithi078 bash[20010]: audit 2024-09-21T11:50:32.056575+0000 mon.smithi078 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:33.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:33 smithi078 bash[20010]: audit 2024-09-21T11:50:32.056575+0000 mon.smithi078 (mon.0) 27 : audit [INF] from='mgr.14100 172.21.15.78:0/1519895216' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:33.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:33 smithi078 bash[20010]: cluster 2024-09-21T11:50:33.003604+0000 mon.smithi078 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi078.aqnwdz(active, since 1.0173s) 2024-09-21T11:50:33.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:33 smithi078 bash[20010]: cluster 2024-09-21T11:50:33.003604+0000 mon.smithi078 (mon.0) 28 : cluster [DBG] mgrmap e3: smithi078.aqnwdz(active, since 1.0173s) 2024-09-21T11:50:34.918 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:34.918 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout { 2024-09-21T11:50:34.918 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "fsid": "6b15370c-780f-11ef-baf6-efdc52797490", 2024-09-21T11:50:34.918 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "health": { 2024-09-21T11:50:34.918 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "status": "HEALTH_OK", 2024-09-21T11:50:34.918 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "checks": {}, 2024-09-21T11:50:34.918 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "mutes": [] 2024-09-21T11:50:34.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:34.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "election_epoch": 5, 2024-09-21T11:50:34.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "quorum": [ 2024-09-21T11:50:34.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 0 2024-09-21T11:50:34.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ], 2024-09-21T11:50:34.920 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "quorum_names": [ 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "smithi078" 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ], 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "quorum_age": 11, 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "monmap": { 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "min_mon_release_name": "squid", 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_mons": 1 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "osdmap": { 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_osds": 0, 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_up_osds": 0, 2024-09-21T11:50:34.921 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "osd_up_since": 0, 2024-09-21T11:50:34.922 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_in_osds": 0, 2024-09-21T11:50:34.922 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "osd_in_since": 0, 2024-09-21T11:50:34.922 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_remapped_pgs": 0 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "pgmap": { 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "pgs_by_state": [], 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_pgs": 0, 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_pools": 0, 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_objects": 0, 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "data_bytes": 0, 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "bytes_used": 0, 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "bytes_avail": 0, 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "bytes_total": 0 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:34.925 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "fsmap": { 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "btime": "2024-09-21T11:50:16:544681+0000", 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "by_rank": [], 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "up:standby": 0 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "mgrmap": { 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_standbys": 0, 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "modules": [ 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "iostat", 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "nfs", 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "restful" 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ], 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T11:50:34.926 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:34.927 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "servicemap": { 2024-09-21T11:50:34.927 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 1, 2024-09-21T11:50:34.927 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "modified": "2024-09-21T11:50:16.545564+0000", 2024-09-21T11:50:34.927 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "services": {} 2024-09-21T11:50:34.927 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout }, 2024-09-21T11:50:34.927 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "progress_events": {} 2024-09-21T11:50:34.927 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout } 2024-09-21T11:50:34.927 INFO:teuthology.orchestra.run.smithi078.stdout:mgr is available 2024-09-21T11:50:35.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:35 smithi078 bash[20010]: cluster 2024-09-21T11:50:34.054110+0000 mon.smithi078 (mon.0) 29 : cluster [DBG] mgrmap e4: smithi078.aqnwdz(active, since 2s) 2024-09-21T11:50:35.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:35 smithi078 bash[20010]: cluster 2024-09-21T11:50:34.054110+0000 mon.smithi078 (mon.0) 29 : cluster [DBG] mgrmap e4: smithi078.aqnwdz(active, since 2s) 2024-09-21T11:50:35.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:35 smithi078 bash[20010]: audit 2024-09-21T11:50:34.309642+0000 mon.smithi078 (mon.0) 30 : audit [DBG] from='client.? 172.21.15.78:0/3897173997' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T11:50:35.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:35 smithi078 bash[20010]: audit 2024-09-21T11:50:34.309642+0000 mon.smithi078 (mon.0) 30 : audit [DBG] from='client.? 172.21.15.78:0/3897173997' entity='client.admin' cmd={"prefix": "status", "format": "json-pretty"} : dispatch 2024-09-21T11:50:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:36 smithi078 bash[20010]: audit 2024-09-21T11:50:36.322061+0000 mon.smithi078 (mon.0) 31 : audit [INF] from='client.? 172.21.15.78:0/2601881173' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-21T11:50:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:36 smithi078 bash[20010]: audit 2024-09-21T11:50:36.322061+0000 mon.smithi078 (mon.0) 31 : audit [INF] from='client.? 172.21.15.78:0/2601881173' entity='client.admin' cmd={"prefix": "config assimilate-conf"} : dispatch 2024-09-21T11:50:36.918 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:36.918 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout [global] 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout fsid = 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_cluster_log_file_level = debug 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_host = [v2:172.21.15.78:3300,v1:172.21.15.78:6789] 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_osd_allow_pg_remap = true 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_osd_allow_primary_affinity = true 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mon_warn_on_no_sortbitwise = false 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout osd_crush_chooseleaf_type = 0 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout [mgr] 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout mgr/telemetry/nag = false 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 2024-09-21T11:50:36.919 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout [osd] 2024-09-21T11:50:36.920 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout osd_map_max_advance = 10 2024-09-21T11:50:36.920 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout osd_sloppy_crc = true 2024-09-21T11:50:36.920 INFO:teuthology.orchestra.run.smithi078.stdout:Enabling cephadm module... 2024-09-21T11:50:38.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:38 smithi078 bash[20010]: audit 2024-09-21T11:50:38.416698+0000 mon.smithi078 (mon.0) 32 : audit [INF] from='client.? 172.21.15.78:0/1559808059' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-21T11:50:38.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:38 smithi078 bash[20010]: audit 2024-09-21T11:50:38.416698+0000 mon.smithi078 (mon.0) 32 : audit [INF] from='client.? 172.21.15.78:0/1559808059' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "cephadm"} : dispatch 2024-09-21T11:50:39.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:39 smithi078 bash[20010]: audit 2024-09-21T11:50:38.468560+0000 mon.smithi078 (mon.0) 33 : audit [INF] from='client.? 172.21.15.78:0/1559808059' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-21T11:50:39.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:39 smithi078 bash[20010]: audit 2024-09-21T11:50:38.468560+0000 mon.smithi078 (mon.0) 33 : audit [INF] from='client.? 172.21.15.78:0/1559808059' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "cephadm"}]': finished 2024-09-21T11:50:39.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:39 smithi078 bash[20010]: cluster 2024-09-21T11:50:38.473374+0000 mon.smithi078 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi078.aqnwdz(active, since 6s) 2024-09-21T11:50:39.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:39 smithi078 bash[20010]: cluster 2024-09-21T11:50:38.473374+0000 mon.smithi078 (mon.0) 34 : cluster [DBG] mgrmap e5: smithi078.aqnwdz(active, since 6s) 2024-09-21T11:50:40.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:40 smithi078 bash[20010]: audit 2024-09-21T11:50:40.534699+0000 mon.smithi078 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.78:0/3960266245' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-21T11:50:40.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:40 smithi078 bash[20010]: audit 2024-09-21T11:50:40.534699+0000 mon.smithi078 (mon.0) 35 : audit [DBG] from='client.? 172.21.15.78:0/3960266245' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-21T11:50:41.139 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout { 2024-09-21T11:50:41.140 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 5, 2024-09-21T11:50:41.140 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-21T11:50:41.140 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "active_name": "smithi078.aqnwdz", 2024-09-21T11:50:41.140 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-21T11:50:41.140 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout } 2024-09-21T11:50:41.140 INFO:teuthology.orchestra.run.smithi078.stdout:Waiting for the mgr to restart... 2024-09-21T11:50:41.140 INFO:teuthology.orchestra.run.smithi078.stdout:Waiting for mgr epoch 5... 2024-09-21T11:50:44.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.457627+0000 mon.smithi078 (mon.0) 36 : cluster [INF] Active manager daemon smithi078.aqnwdz restarted 2024-09-21T11:50:44.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.457627+0000 mon.smithi078 (mon.0) 36 : cluster [INF] Active manager daemon smithi078.aqnwdz restarted 2024-09-21T11:50:44.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.458070+0000 mon.smithi078 (mon.0) 37 : cluster [INF] Activating manager daemon smithi078.aqnwdz 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.458070+0000 mon.smithi078 (mon.0) 37 : cluster [INF] Activating manager daemon smithi078.aqnwdz 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.463225+0000 mon.smithi078 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.463225+0000 mon.smithi078 (mon.0) 38 : cluster [DBG] osdmap e2: 0 total, 0 up, 0 in 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.463432+0000 mon.smithi078 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi078.aqnwdz(active, starting, since 0.00555519s) 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.463432+0000 mon.smithi078 (mon.0) 39 : cluster [DBG] mgrmap e6: smithi078.aqnwdz(active, starting, since 0.00555519s) 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.465859+0000 mon.smithi078 (mon.0) 40 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.465859+0000 mon.smithi078 (mon.0) 40 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.467144+0000 mon.smithi078 (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi078.aqnwdz", "id": "smithi078.aqnwdz"} : dispatch 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.467144+0000 mon.smithi078 (mon.0) 41 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi078.aqnwdz", "id": "smithi078.aqnwdz"} : dispatch 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.468083+0000 mon.smithi078 (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.468083+0000 mon.smithi078 (mon.0) 42 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T11:50:44.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.468444+0000 mon.smithi078 (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T11:50:44.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.468444+0000 mon.smithi078 (mon.0) 43 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T11:50:44.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.468774+0000 mon.smithi078 (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T11:50:44.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: audit 2024-09-21T11:50:44.468774+0000 mon.smithi078 (mon.0) 44 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T11:50:44.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.493889+0000 mon.smithi078 (mon.0) 45 : cluster [INF] Manager daemon smithi078.aqnwdz is now available 2024-09-21T11:50:44.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:44 smithi078 bash[20010]: cluster 2024-09-21T11:50:44.493889+0000 mon.smithi078 (mon.0) 45 : cluster [INF] Manager daemon smithi078.aqnwdz is now available 2024-09-21T11:50:46.105 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout { 2024-09-21T11:50:46.105 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 7, 2024-09-21T11:50:46.105 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-21T11:50:46.105 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout } 2024-09-21T11:50:46.105 INFO:teuthology.orchestra.run.smithi078.stdout:mgr epoch 5 is available 2024-09-21T11:50:46.105 INFO:teuthology.orchestra.run.smithi078.stdout:Verifying orchestrator module is enabled... 2024-09-21T11:50:46.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.452488+0000 mon.smithi078 (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.452488+0000 mon.smithi078 (mon.0) 46 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.457352+0000 mon.smithi078 (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.457352+0000 mon.smithi078 (mon.0) 47 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: cephadm 2024-09-21T11:50:45.458163+0000 mgr.smithi078.aqnwdz (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: cephadm 2024-09-21T11:50:45.458163+0000 mgr.smithi078.aqnwdz (mgr.14118) 1 : cephadm [INF] Found migration_current of "None". Setting to last migration. 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.460398+0000 mon.smithi078 (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.460398+0000 mon.smithi078 (mon.0) 48 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.468220+0000 mgr.smithi078.aqnwdz (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.468220+0000 mgr.smithi078.aqnwdz (mgr.14118) 2 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: cluster 2024-09-21T11:50:45.470241+0000 mon.smithi078 (mon.0) 49 : cluster [DBG] mgrmap e7: smithi078.aqnwdz(active, since 1.01236s) 2024-09-21T11:50:46.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: cluster 2024-09-21T11:50:45.470241+0000 mon.smithi078 (mon.0) 49 : cluster [DBG] mgrmap e7: smithi078.aqnwdz(active, since 1.01236s) 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.474131+0000 mon.smithi078 (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.474131+0000 mon.smithi078 (mon.0) 50 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.477849+0000 mon.smithi078 (mon.0) 51 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.477849+0000 mon.smithi078 (mon.0) 51 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.481387+0000 mon.smithi078 (mon.0) 52 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.481387+0000 mon.smithi078 (mon.0) 52 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.482843+0000 mgr.smithi078.aqnwdz (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.482843+0000 mgr.smithi078.aqnwdz (mgr.14118) 3 : audit [DBG] from='client.14122 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.493818+0000 mon.smithi078 (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/mirror_snapshot_schedule"} : dispatch 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.493818+0000 mon.smithi078 (mon.0) 53 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/mirror_snapshot_schedule"} : dispatch 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.496559+0000 mon.smithi078 (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/trash_purge_schedule"} : dispatch 2024-09-21T11:50:46.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:46 smithi078 bash[20010]: audit 2024-09-21T11:50:45.496559+0000 mon.smithi078 (mon.0) 54 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/trash_purge_schedule"} : dispatch 2024-09-21T11:50:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.377228+0000 mgr.smithi078.aqnwdz (mgr.14118) 4 : cephadm [INF] [21/Sep/2024:11:50:46] ENGINE Bus STARTING 2024-09-21T11:50:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.377228+0000 mgr.smithi078.aqnwdz (mgr.14118) 4 : cephadm [INF] [21/Sep/2024:11:50:46] ENGINE Bus STARTING 2024-09-21T11:50:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.497397+0000 mgr.smithi078.aqnwdz (mgr.14118) 5 : cephadm [INF] [21/Sep/2024:11:50:46] ENGINE Serving on https://172.21.15.78:7150 2024-09-21T11:50:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.497397+0000 mgr.smithi078.aqnwdz (mgr.14118) 5 : cephadm [INF] [21/Sep/2024:11:50:46] ENGINE Serving on https://172.21.15.78:7150 2024-09-21T11:50:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.500946+0000 mgr.smithi078.aqnwdz (mgr.14118) 6 : cephadm [ERR] [21/Sep/2024:11:50:46] ENGINE Error in HTTPServer.serve 2024-09-21T11:50:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: Traceback (most recent call last): 2024-09-21T11:50:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: self._connections.run(self.expiration_interval) 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: self._run(expiration_interval) 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: s = self.context.wrap_socket( 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: return self.sslsocket_class._create( 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: self.do_handshake() 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T11:50:47.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: self._sslobj.do_handshake() 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.500946+0000 mgr.smithi078.aqnwdz (mgr.14118) 6 : cephadm [ERR] [21/Sep/2024:11:50:46] ENGINE Error in HTTPServer.serve 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: Traceback (most recent call last): 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: self._connections.run(self.expiration_interval) 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: self._run(expiration_interval) 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: s = self.context.wrap_socket( 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T11:50:47.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: return self.sslsocket_class._create( 2024-09-21T11:50:47.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T11:50:47.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: self.do_handshake() 2024-09-21T11:50:47.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T11:50:47.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: self._sslobj.do_handshake() 2024-09-21T11:50:47.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T11:50:47.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: audit 2024-09-21T11:50:46.599239+0000 mon.smithi078 (mon.0) 55 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:50:47.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:47 smithi078 bash[20010]: audit 2024-09-21T11:50:46.599239+0000 mon.smithi078 (mon.0) 55 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:50:48.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:48 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.598550+0000 mgr.smithi078.aqnwdz (mgr.14118) 7 : cephadm [INF] [21/Sep/2024:11:50:46] ENGINE Serving on http://172.21.15.78:8765 2024-09-21T11:50:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:48 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.598550+0000 mgr.smithi078.aqnwdz (mgr.14118) 7 : cephadm [INF] [21/Sep/2024:11:50:46] ENGINE Serving on http://172.21.15.78:8765 2024-09-21T11:50:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:48 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.598659+0000 mgr.smithi078.aqnwdz (mgr.14118) 8 : cephadm [INF] [21/Sep/2024:11:50:46] ENGINE Bus STARTED 2024-09-21T11:50:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:48 smithi078 bash[20010]: cephadm 2024-09-21T11:50:46.598659+0000 mgr.smithi078.aqnwdz (mgr.14118) 8 : cephadm [INF] [21/Sep/2024:11:50:46] ENGINE Bus STARTED 2024-09-21T11:50:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:48 smithi078 bash[20010]: cluster 2024-09-21T11:50:47.466042+0000 mon.smithi078 (mon.0) 56 : cluster [DBG] mgrmap e8: smithi078.aqnwdz(active, since 3s) 2024-09-21T11:50:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:48 smithi078 bash[20010]: cluster 2024-09-21T11:50:47.466042+0000 mon.smithi078 (mon.0) 56 : cluster [DBG] mgrmap e8: smithi078.aqnwdz(active, since 3s) 2024-09-21T11:50:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:48 smithi078 bash[20010]: audit 2024-09-21T11:50:47.581194+0000 mon.smithi078 (mon.0) 57 : audit [INF] from='client.? 172.21.15.78:0/3546486622' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-21T11:50:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:48 smithi078 bash[20010]: audit 2024-09-21T11:50:47.581194+0000 mon.smithi078 (mon.0) 57 : audit [INF] from='client.? 172.21.15.78:0/3546486622' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "orchestrator"} : dispatch 2024-09-21T11:50:49.046 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stderr module 'orchestrator' is already enabled (always-on) 2024-09-21T11:50:49.046 INFO:teuthology.orchestra.run.smithi078.stdout:Setting orchestrator backend to cephadm... 2024-09-21T11:50:49.855 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:49 smithi078 bash[20010]: audit 2024-09-21T11:50:48.461842+0000 mon.smithi078 (mon.0) 58 : audit [INF] from='client.? 172.21.15.78:0/3546486622' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-21T11:50:49.855 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:49 smithi078 bash[20010]: audit 2024-09-21T11:50:48.461842+0000 mon.smithi078 (mon.0) 58 : audit [INF] from='client.? 172.21.15.78:0/3546486622' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "orchestrator"}]': finished 2024-09-21T11:50:49.855 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:49 smithi078 bash[20010]: cluster 2024-09-21T11:50:48.468658+0000 mon.smithi078 (mon.0) 59 : cluster [DBG] mgrmap e9: smithi078.aqnwdz(active, since 4s) 2024-09-21T11:50:49.855 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:49 smithi078 bash[20010]: cluster 2024-09-21T11:50:48.468658+0000 mon.smithi078 (mon.0) 59 : cluster [DBG] mgrmap e9: smithi078.aqnwdz(active, since 4s) 2024-09-21T11:50:51.846 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:51 smithi078 bash[20010]: audit 2024-09-21T11:50:50.425062+0000 mgr.smithi078.aqnwdz (mgr.14118) 9 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:51.846 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:51 smithi078 bash[20010]: audit 2024-09-21T11:50:50.425062+0000 mgr.smithi078.aqnwdz (mgr.14118) 9 : audit [DBG] from='client.14132 -' entity='client.admin' cmd=[{"prefix": "orch set backend", "module_name": "cephadm", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:51.846 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:51 smithi078 bash[20010]: audit 2024-09-21T11:50:50.431944+0000 mon.smithi078 (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:51.846 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:51 smithi078 bash[20010]: audit 2024-09-21T11:50:50.431944+0000 mon.smithi078 (mon.0) 60 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:51.846 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:51 smithi078 bash[20010]: audit 2024-09-21T11:50:50.448431+0000 mon.smithi078 (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:50:51.846 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:51 smithi078 bash[20010]: audit 2024-09-21T11:50:50.448431+0000 mon.smithi078 (mon.0) 61 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:50:52.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:52 smithi078 bash[20010]: audit 2024-09-21T11:50:52.369072+0000 mgr.smithi078.aqnwdz (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:52.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:52 smithi078 bash[20010]: audit 2024-09-21T11:50:52.369072+0000 mgr.smithi078.aqnwdz (mgr.14118) 10 : audit [DBG] from='client.14134 -' entity='client.admin' cmd=[{"prefix": "cephadm set-user", "user": "root", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:52.951 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout value unchanged 2024-09-21T11:50:52.951 INFO:teuthology.orchestra.run.smithi078.stdout:Generating ssh key... 2024-09-21T11:50:55.853 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:55 smithi078 bash[20010]: audit 2024-09-21T11:50:54.257408+0000 mgr.smithi078.aqnwdz (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:55.854 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:55 smithi078 bash[20010]: audit 2024-09-21T11:50:54.257408+0000 mgr.smithi078.aqnwdz (mgr.14118) 11 : audit [DBG] from='client.14136 -' entity='client.admin' cmd=[{"prefix": "cephadm generate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:55.854 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:55 smithi078 bash[20010]: cephadm 2024-09-21T11:50:54.257704+0000 mgr.smithi078.aqnwdz (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-21T11:50:55.854 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:55 smithi078 bash[20010]: cephadm 2024-09-21T11:50:54.257704+0000 mgr.smithi078.aqnwdz (mgr.14118) 12 : cephadm [INF] Generating ssh key... 2024-09-21T11:50:55.854 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:55 smithi078 bash[20010]: audit 2024-09-21T11:50:54.473707+0000 mon.smithi078 (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:55.854 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:55 smithi078 bash[20010]: audit 2024-09-21T11:50:54.473707+0000 mon.smithi078 (mon.0) 62 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:55.854 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:55 smithi078 bash[20010]: audit 2024-09-21T11:50:54.477079+0000 mon.smithi078 (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:55.854 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:55 smithi078 bash[20010]: audit 2024-09-21T11:50:54.477079+0000 mon.smithi078 (mon.0) 63 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:50:56.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:56 smithi078 bash[20010]: audit 2024-09-21T11:50:56.374133+0000 mgr.smithi078.aqnwdz (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:56.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:56 smithi078 bash[20010]: audit 2024-09-21T11:50:56.374133+0000 mgr.smithi078.aqnwdz (mgr.14118) 13 : audit [DBG] from='client.14138 -' entity='client.admin' cmd=[{"prefix": "cephadm get-pub-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:56.939 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhXRXYylbo9X+n/IhZXNCFAmeZzcDDWMHem7hoWGtcZjYtrqbhjwQ6lbAdo0lxxva7Rb6lZ33aOtKi/KjHEkEuJUvdtHeeN6pQYvrzW8G0MmsAgtpYSmwBHeaaNDTJm4HdrMI/CND+UDRmXjVqQZYr7lbCH00QXNIXC2/ZSMjanIVj9nLyb3/dUfe4nsdYIG5HbBMrCbOZHfM9MeXso9yKsEp1fIiIQB3HtnwWRMsqKsbxJPv6ZLNgeSQmkdtSGFski6/+kf9yRfyZX7eVG8JdxByA0W3QlzWWJYoc5XrKuItvQozaS0s2vuaedidWS5gNJCoaROCg55ToWGCqGqTOHGBj5fBKLR3fvB94h2y+hu0K11aZnmc07LDeB0LSHsZREOxOqSa25pidJVD1aidfAmRmZuJ4uu1N2wtNKQ149vmgUF/GIuH76x3/7OwCl6AYRzvP9YPfu7gMQurKMO+6T0cza1ZLFeSb1WVXtHNYU474nZRqqsVEpuiH3g7Xl78= ceph-6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:50:56.940 INFO:teuthology.orchestra.run.smithi078.stdout:Wrote public SSH key to /home/ubuntu/cephtest/ceph.pub 2024-09-21T11:50:56.940 INFO:teuthology.orchestra.run.smithi078.stdout:Adding key to root@localhost authorized_keys... 2024-09-21T11:50:56.940 INFO:teuthology.orchestra.run.smithi078.stdout:Adding host smithi078... 2024-09-21T11:50:58.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:58 smithi078 bash[20010]: audit 2024-09-21T11:50:58.349564+0000 mgr.smithi078.aqnwdz (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi078", "addr": "172.21.15.78", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:58.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:58 smithi078 bash[20010]: audit 2024-09-21T11:50:58.349564+0000 mgr.smithi078.aqnwdz (mgr.14118) 14 : audit [DBG] from='client.14140 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi078", "addr": "172.21.15.78", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:50:59.737 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:59 smithi078 bash[20010]: cephadm 2024-09-21T11:50:59.322875+0000 mgr.smithi078.aqnwdz (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi078 2024-09-21T11:50:59.738 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:50:59 smithi078 bash[20010]: cephadm 2024-09-21T11:50:59.322875+0000 mgr.smithi078.aqnwdz (mgr.14118) 15 : cephadm [INF] Deploying cephadm binary to smithi078 2024-09-21T11:51:03.243 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout Added host 'smithi078' with addr '172.21.15.78' 2024-09-21T11:51:03.243 INFO:teuthology.orchestra.run.smithi078.stdout:Deploying mon service with default placement... 2024-09-21T11:51:03.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:03 smithi078 bash[20010]: audit 2024-09-21T11:51:02.419902+0000 mon.smithi078 (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:03.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:03 smithi078 bash[20010]: audit 2024-09-21T11:51:02.419902+0000 mon.smithi078 (mon.0) 64 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:03.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:03 smithi078 bash[20010]: cephadm 2024-09-21T11:51:02.420278+0000 mgr.smithi078.aqnwdz (mgr.14118) 16 : cephadm [INF] Added host smithi078 2024-09-21T11:51:03.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:03 smithi078 bash[20010]: cephadm 2024-09-21T11:51:02.420278+0000 mgr.smithi078.aqnwdz (mgr.14118) 16 : cephadm [INF] Added host smithi078 2024-09-21T11:51:03.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:03 smithi078 bash[20010]: audit 2024-09-21T11:51:02.420620+0000 mon.smithi078 (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:51:03.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:03 smithi078 bash[20010]: audit 2024-09-21T11:51:02.420620+0000 mon.smithi078 (mon.0) 65 : audit [DBG] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:51:05.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:05 smithi078 bash[20010]: cluster 2024-09-21T11:51:04.469545+0000 mgr.smithi078.aqnwdz (mgr.14118) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:05.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:05 smithi078 bash[20010]: cluster 2024-09-21T11:51:04.469545+0000 mgr.smithi078.aqnwdz (mgr.14118) 17 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:05.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:05 smithi078 bash[20010]: audit 2024-09-21T11:51:05.282260+0000 mon.smithi078 (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:05.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:05 smithi078 bash[20010]: audit 2024-09-21T11:51:05.282260+0000 mon.smithi078 (mon.0) 66 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:06.037 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout Scheduled mon update... 2024-09-21T11:51:06.038 INFO:teuthology.orchestra.run.smithi078.stdout:Deploying mgr service with default placement... 2024-09-21T11:51:06.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:06 smithi078 bash[20010]: audit 2024-09-21T11:51:05.275104+0000 mgr.smithi078.aqnwdz (mgr.14118) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:06.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:06 smithi078 bash[20010]: audit 2024-09-21T11:51:05.275104+0000 mgr.smithi078.aqnwdz (mgr.14118) 18 : audit [DBG] from='client.14142 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:06.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:06 smithi078 bash[20010]: cephadm 2024-09-21T11:51:05.277788+0000 mgr.smithi078.aqnwdz (mgr.14118) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-21T11:51:06.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:06 smithi078 bash[20010]: cephadm 2024-09-21T11:51:05.277788+0000 mgr.smithi078.aqnwdz (mgr.14118) 19 : cephadm [INF] Saving service mon spec with placement count:5 2024-09-21T11:51:06.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:06 smithi078 bash[20010]: audit 2024-09-21T11:51:05.769328+0000 mon.smithi078 (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:06.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:06 smithi078 bash[20010]: audit 2024-09-21T11:51:05.769328+0000 mon.smithi078 (mon.0) 67 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:06.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:06 smithi078 bash[20010]: audit 2024-09-21T11:51:06.332452+0000 mon.smithi078 (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:06.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:06 smithi078 bash[20010]: audit 2024-09-21T11:51:06.332452+0000 mon.smithi078 (mon.0) 68 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:07.789 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:07 smithi078 bash[20010]: cluster 2024-09-21T11:51:06.469963+0000 mgr.smithi078.aqnwdz (mgr.14118) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:07.789 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:07 smithi078 bash[20010]: cluster 2024-09-21T11:51:06.469963+0000 mgr.smithi078.aqnwdz (mgr.14118) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:08.179 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout Scheduled mgr update... 2024-09-21T11:51:08.179 INFO:teuthology.orchestra.run.smithi078.stdout:Deploying crash service with default placement... 2024-09-21T11:51:08.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:08 smithi078 bash[20010]: audit 2024-09-21T11:51:07.535692+0000 mgr.smithi078.aqnwdz (mgr.14118) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:08.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:08 smithi078 bash[20010]: audit 2024-09-21T11:51:07.535692+0000 mgr.smithi078.aqnwdz (mgr.14118) 21 : audit [DBG] from='client.14144 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mgr", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:08.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:08 smithi078 bash[20010]: cephadm 2024-09-21T11:51:07.537627+0000 mgr.smithi078.aqnwdz (mgr.14118) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-21T11:51:08.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:08 smithi078 bash[20010]: cephadm 2024-09-21T11:51:07.537627+0000 mgr.smithi078.aqnwdz (mgr.14118) 22 : cephadm [INF] Saving service mgr spec with placement count:2 2024-09-21T11:51:08.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:08 smithi078 bash[20010]: audit 2024-09-21T11:51:07.541820+0000 mon.smithi078 (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:08.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:08 smithi078 bash[20010]: audit 2024-09-21T11:51:07.541820+0000 mon.smithi078 (mon.0) 69 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:08.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:08 smithi078 bash[20010]: cluster 2024-09-21T11:51:08.470521+0000 mgr.smithi078.aqnwdz (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:08.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:08 smithi078 bash[20010]: cluster 2024-09-21T11:51:08.470521+0000 mgr.smithi078.aqnwdz (mgr.14118) 23 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:10.269 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout Scheduled crash update... 2024-09-21T11:51:10.269 INFO:teuthology.orchestra.run.smithi078.stdout:Deploying ceph-exporter service with default placement... 2024-09-21T11:51:10.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:10 smithi078 bash[20010]: audit 2024-09-21T11:51:09.633784+0000 mgr.smithi078.aqnwdz (mgr.14118) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:10.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:10 smithi078 bash[20010]: audit 2024-09-21T11:51:09.633784+0000 mgr.smithi078.aqnwdz (mgr.14118) 24 : audit [DBG] from='client.14146 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "crash", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:10.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:10 smithi078 bash[20010]: cephadm 2024-09-21T11:51:09.635771+0000 mgr.smithi078.aqnwdz (mgr.14118) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-21T11:51:10.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:10 smithi078 bash[20010]: cephadm 2024-09-21T11:51:09.635771+0000 mgr.smithi078.aqnwdz (mgr.14118) 25 : cephadm [INF] Saving service crash spec with placement * 2024-09-21T11:51:10.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:10 smithi078 bash[20010]: audit 2024-09-21T11:51:09.640402+0000 mon.smithi078 (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:10.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:10 smithi078 bash[20010]: audit 2024-09-21T11:51:09.640402+0000 mon.smithi078 (mon.0) 70 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:10.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:10 smithi078 bash[20010]: cluster 2024-09-21T11:51:10.471120+0000 mgr.smithi078.aqnwdz (mgr.14118) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:10.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:10 smithi078 bash[20010]: cluster 2024-09-21T11:51:10.471120+0000 mgr.smithi078.aqnwdz (mgr.14118) 26 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:12.361 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout Scheduled ceph-exporter update... 2024-09-21T11:51:12.361 INFO:teuthology.orchestra.run.smithi078.stdout:Deploying prometheus service with default placement... 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: audit 2024-09-21T11:51:11.730994+0000 mgr.smithi078.aqnwdz (mgr.14118) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: audit 2024-09-21T11:51:11.730994+0000 mgr.smithi078.aqnwdz (mgr.14118) 27 : audit [DBG] from='client.14148 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "ceph-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: cephadm 2024-09-21T11:51:11.732307+0000 mgr.smithi078.aqnwdz (mgr.14118) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: cephadm 2024-09-21T11:51:11.732307+0000 mgr.smithi078.aqnwdz (mgr.14118) 28 : cephadm [INF] Saving service ceph-exporter spec with placement * 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: audit 2024-09-21T11:51:11.734844+0000 mon.smithi078 (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: audit 2024-09-21T11:51:11.734844+0000 mon.smithi078 (mon.0) 71 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: audit 2024-09-21T11:51:11.902764+0000 mon.smithi078 (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: audit 2024-09-21T11:51:11.902764+0000 mon.smithi078 (mon.0) 72 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: cluster 2024-09-21T11:51:12.471460+0000 mgr.smithi078.aqnwdz (mgr.14118) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:13.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:12 smithi078 bash[20010]: cluster 2024-09-21T11:51:12.471460+0000 mgr.smithi078.aqnwdz (mgr.14118) 29 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:14.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:14 smithi078 bash[20010]: audit 2024-09-21T11:51:13.006828+0000 mon.smithi078 (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:14.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:14 smithi078 bash[20010]: audit 2024-09-21T11:51:13.006828+0000 mon.smithi078 (mon.0) 73 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:14.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:14 smithi078 bash[20010]: audit 2024-09-21T11:51:13.874591+0000 mon.smithi078 (mon.0) 74 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:14.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:14 smithi078 bash[20010]: audit 2024-09-21T11:51:13.874591+0000 mon.smithi078 (mon.0) 74 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:14.442 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout Scheduled prometheus update... 2024-09-21T11:51:14.442 INFO:teuthology.orchestra.run.smithi078.stdout:Deploying grafana service with default placement... 2024-09-21T11:51:15.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:15 smithi078 bash[20010]: audit 2024-09-21T11:51:13.867859+0000 mgr.smithi078.aqnwdz (mgr.14118) 30 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:15.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:15 smithi078 bash[20010]: audit 2024-09-21T11:51:13.867859+0000 mgr.smithi078.aqnwdz (mgr.14118) 30 : audit [DBG] from='client.14150 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "prometheus", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:15.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:15 smithi078 bash[20010]: cephadm 2024-09-21T11:51:13.869900+0000 mgr.smithi078.aqnwdz (mgr.14118) 31 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-21T11:51:15.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:15 smithi078 bash[20010]: cephadm 2024-09-21T11:51:13.869900+0000 mgr.smithi078.aqnwdz (mgr.14118) 31 : cephadm [INF] Saving service prometheus spec with placement count:1 2024-09-21T11:51:15.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:15 smithi078 bash[20010]: cluster 2024-09-21T11:51:14.471773+0000 mgr.smithi078.aqnwdz (mgr.14118) 32 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:15.343 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:15 smithi078 bash[20010]: cluster 2024-09-21T11:51:14.471773+0000 mgr.smithi078.aqnwdz (mgr.14118) 32 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:16.450 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout Scheduled grafana update... 2024-09-21T11:51:16.450 INFO:teuthology.orchestra.run.smithi078.stdout:Deploying node-exporter service with default placement... 2024-09-21T11:51:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:16 smithi078 bash[20010]: audit 2024-09-21T11:51:15.869204+0000 mgr.smithi078.aqnwdz (mgr.14118) 33 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:16 smithi078 bash[20010]: audit 2024-09-21T11:51:15.869204+0000 mgr.smithi078.aqnwdz (mgr.14118) 33 : audit [DBG] from='client.14152 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "grafana", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:16 smithi078 bash[20010]: cephadm 2024-09-21T11:51:15.871643+0000 mgr.smithi078.aqnwdz (mgr.14118) 34 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-21T11:51:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:16 smithi078 bash[20010]: cephadm 2024-09-21T11:51:15.871643+0000 mgr.smithi078.aqnwdz (mgr.14118) 34 : cephadm [INF] Saving service grafana spec with placement count:1 2024-09-21T11:51:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:16 smithi078 bash[20010]: audit 2024-09-21T11:51:15.876311+0000 mon.smithi078 (mon.0) 75 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:16 smithi078 bash[20010]: audit 2024-09-21T11:51:15.876311+0000 mon.smithi078 (mon.0) 75 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:16 smithi078 bash[20010]: cluster 2024-09-21T11:51:16.472051+0000 mgr.smithi078.aqnwdz (mgr.14118) 35 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:16 smithi078 bash[20010]: cluster 2024-09-21T11:51:16.472051+0000 mgr.smithi078.aqnwdz (mgr.14118) 35 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:18.500 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout Scheduled node-exporter update... 2024-09-21T11:51:18.500 INFO:teuthology.orchestra.run.smithi078.stdout:Deploying alertmanager service with default placement... 2024-09-21T11:51:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:18 smithi078 bash[20010]: audit 2024-09-21T11:51:17.850356+0000 mgr.smithi078.aqnwdz (mgr.14118) 36 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:18 smithi078 bash[20010]: audit 2024-09-21T11:51:17.850356+0000 mgr.smithi078.aqnwdz (mgr.14118) 36 : audit [DBG] from='client.14154 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "node-exporter", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:18 smithi078 bash[20010]: cephadm 2024-09-21T11:51:17.852431+0000 mgr.smithi078.aqnwdz (mgr.14118) 37 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-21T11:51:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:18 smithi078 bash[20010]: cephadm 2024-09-21T11:51:17.852431+0000 mgr.smithi078.aqnwdz (mgr.14118) 37 : cephadm [INF] Saving service node-exporter spec with placement * 2024-09-21T11:51:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:18 smithi078 bash[20010]: audit 2024-09-21T11:51:17.857044+0000 mon.smithi078 (mon.0) 76 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:18 smithi078 bash[20010]: audit 2024-09-21T11:51:17.857044+0000 mon.smithi078 (mon.0) 76 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:18 smithi078 bash[20010]: cluster 2024-09-21T11:51:18.472460+0000 mgr.smithi078.aqnwdz (mgr.14118) 38 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:18 smithi078 bash[20010]: cluster 2024-09-21T11:51:18.472460+0000 mgr.smithi078.aqnwdz (mgr.14118) 38 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:21.013 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout Scheduled alertmanager update... 2024-09-21T11:51:21.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:21 smithi078 bash[20010]: audit 2024-09-21T11:51:20.008129+0000 mgr.smithi078.aqnwdz (mgr.14118) 39 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:21.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:21 smithi078 bash[20010]: audit 2024-09-21T11:51:20.008129+0000 mgr.smithi078.aqnwdz (mgr.14118) 39 : audit [DBG] from='client.14156 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "alertmanager", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:21.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:21 smithi078 bash[20010]: cephadm 2024-09-21T11:51:20.009275+0000 mgr.smithi078.aqnwdz (mgr.14118) 40 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-21T11:51:21.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:21 smithi078 bash[20010]: cephadm 2024-09-21T11:51:20.009275+0000 mgr.smithi078.aqnwdz (mgr.14118) 40 : cephadm [INF] Saving service alertmanager spec with placement count:1 2024-09-21T11:51:21.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:21 smithi078 bash[20010]: audit 2024-09-21T11:51:20.012007+0000 mon.smithi078 (mon.0) 77 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:21.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:21 smithi078 bash[20010]: audit 2024-09-21T11:51:20.012007+0000 mon.smithi078 (mon.0) 77 : audit [INF] from='mgr.14118 172.21.15.78:0/1889827458' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:21.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:21 smithi078 bash[20010]: cluster 2024-09-21T11:51:20.472814+0000 mgr.smithi078.aqnwdz (mgr.14118) 41 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:21.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:21 smithi078 bash[20010]: cluster 2024-09-21T11:51:20.472814+0000 mgr.smithi078.aqnwdz (mgr.14118) 41 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:23.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:23 smithi078 bash[20010]: cluster 2024-09-21T11:51:22.473293+0000 mgr.smithi078.aqnwdz (mgr.14118) 42 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:23.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:23 smithi078 bash[20010]: cluster 2024-09-21T11:51:22.473293+0000 mgr.smithi078.aqnwdz (mgr.14118) 42 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:23.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:23 smithi078 bash[20010]: audit 2024-09-21T11:51:23.121886+0000 mon.smithi078 (mon.0) 78 : audit [INF] from='client.? 172.21.15.78:0/2382602827' entity='client.admin' 2024-09-21T11:51:23.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:23 smithi078 bash[20010]: audit 2024-09-21T11:51:23.121886+0000 mon.smithi078 (mon.0) 78 : audit [INF] from='client.? 172.21.15.78:0/2382602827' entity='client.admin' 2024-09-21T11:51:25.713 INFO:teuthology.orchestra.run.smithi078.stdout:Enabling the dashboard module... 2024-09-21T11:51:25.795 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:25 smithi078 bash[20010]: cluster 2024-09-21T11:51:24.473694+0000 mgr.smithi078.aqnwdz (mgr.14118) 43 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:25.795 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:25 smithi078 bash[20010]: cluster 2024-09-21T11:51:24.473694+0000 mgr.smithi078.aqnwdz (mgr.14118) 43 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:25.795 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:25 smithi078 bash[20010]: audit 2024-09-21T11:51:25.132771+0000 mon.smithi078 (mon.0) 79 : audit [INF] from='client.? 172.21.15.78:0/326462448' entity='client.admin' 2024-09-21T11:51:25.795 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:25 smithi078 bash[20010]: audit 2024-09-21T11:51:25.132771+0000 mon.smithi078 (mon.0) 79 : audit [INF] from='client.? 172.21.15.78:0/326462448' entity='client.admin' 2024-09-21T11:51:27.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:27 smithi078 bash[20010]: cluster 2024-09-21T11:51:26.474125+0000 mgr.smithi078.aqnwdz (mgr.14118) 44 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:27.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:27 smithi078 bash[20010]: cluster 2024-09-21T11:51:26.474125+0000 mgr.smithi078.aqnwdz (mgr.14118) 44 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:27.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:27 smithi078 bash[20010]: audit 2024-09-21T11:51:27.224803+0000 mon.smithi078 (mon.0) 80 : audit [INF] from='client.? 172.21.15.78:0/1977339455' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-21T11:51:27.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:27 smithi078 bash[20010]: audit 2024-09-21T11:51:27.224803+0000 mon.smithi078 (mon.0) 80 : audit [INF] from='client.? 172.21.15.78:0/1977339455' entity='client.admin' cmd={"prefix": "mgr module enable", "module": "dashboard"} : dispatch 2024-09-21T11:51:28.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:28 smithi078 bash[20010]: audit 2024-09-21T11:51:27.532128+0000 mon.smithi078 (mon.0) 81 : audit [INF] from='client.? 172.21.15.78:0/1977339455' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-21T11:51:28.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:28 smithi078 bash[20010]: audit 2024-09-21T11:51:27.532128+0000 mon.smithi078 (mon.0) 81 : audit [INF] from='client.? 172.21.15.78:0/1977339455' entity='client.admin' cmd='[{"prefix": "mgr module enable", "module": "dashboard"}]': finished 2024-09-21T11:51:28.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:28 smithi078 bash[20010]: cluster 2024-09-21T11:51:27.537834+0000 mon.smithi078 (mon.0) 82 : cluster [DBG] mgrmap e10: smithi078.aqnwdz(active, since 43s) 2024-09-21T11:51:28.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:28 smithi078 bash[20010]: cluster 2024-09-21T11:51:27.537834+0000 mon.smithi078 (mon.0) 82 : cluster [DBG] mgrmap e10: smithi078.aqnwdz(active, since 43s) 2024-09-21T11:51:30.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:29 smithi078 bash[20010]: audit 2024-09-21T11:51:29.646918+0000 mon.smithi078 (mon.0) 83 : audit [DBG] from='client.? 172.21.15.78:0/2792670451' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-21T11:51:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:29 smithi078 bash[20010]: audit 2024-09-21T11:51:29.646918+0000 mon.smithi078 (mon.0) 83 : audit [DBG] from='client.? 172.21.15.78:0/2792670451' entity='client.admin' cmd={"prefix": "mgr stat"} : dispatch 2024-09-21T11:51:30.237 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout { 2024-09-21T11:51:30.237 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "epoch": 10, 2024-09-21T11:51:30.237 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "available": true, 2024-09-21T11:51:30.237 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "active_name": "smithi078.aqnwdz", 2024-09-21T11:51:30.237 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "num_standby": 0 2024-09-21T11:51:30.237 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout } 2024-09-21T11:51:30.238 INFO:teuthology.orchestra.run.smithi078.stdout:Waiting for the mgr to restart... 2024-09-21T11:51:30.238 INFO:teuthology.orchestra.run.smithi078.stdout:Waiting for mgr epoch 10... 2024-09-21T11:51:33.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.573608+0000 mon.smithi078 (mon.0) 84 : cluster [INF] Active manager daemon smithi078.aqnwdz restarted 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.573608+0000 mon.smithi078 (mon.0) 84 : cluster [INF] Active manager daemon smithi078.aqnwdz restarted 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.574097+0000 mon.smithi078 (mon.0) 85 : cluster [INF] Activating manager daemon smithi078.aqnwdz 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.574097+0000 mon.smithi078 (mon.0) 85 : cluster [INF] Activating manager daemon smithi078.aqnwdz 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.580191+0000 mon.smithi078 (mon.0) 86 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.580191+0000 mon.smithi078 (mon.0) 86 : cluster [DBG] osdmap e3: 0 total, 0 up, 0 in 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.580434+0000 mon.smithi078 (mon.0) 87 : cluster [DBG] mgrmap e11: smithi078.aqnwdz(active, starting, since 0.00654541s) 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.580434+0000 mon.smithi078 (mon.0) 87 : cluster [DBG] mgrmap e11: smithi078.aqnwdz(active, starting, since 0.00654541s) 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.581694+0000 mon.smithi078 (mon.0) 88 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.581694+0000 mon.smithi078 (mon.0) 88 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.583449+0000 mon.smithi078 (mon.0) 89 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi078.aqnwdz", "id": "smithi078.aqnwdz"} : dispatch 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.583449+0000 mon.smithi078 (mon.0) 89 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi078.aqnwdz", "id": "smithi078.aqnwdz"} : dispatch 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.585052+0000 mon.smithi078 (mon.0) 90 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T11:51:33.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.585052+0000 mon.smithi078 (mon.0) 90 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T11:51:33.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.585370+0000 mon.smithi078 (mon.0) 91 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T11:51:33.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.585370+0000 mon.smithi078 (mon.0) 91 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T11:51:33.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.585543+0000 mon.smithi078 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T11:51:33.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: audit 2024-09-21T11:51:33.585543+0000 mon.smithi078 (mon.0) 92 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T11:51:33.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.609560+0000 mon.smithi078 (mon.0) 93 : cluster [INF] Manager daemon smithi078.aqnwdz is now available 2024-09-21T11:51:33.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:33 smithi078 bash[20010]: cluster 2024-09-21T11:51:33.609560+0000 mon.smithi078 (mon.0) 93 : cluster [INF] Manager daemon smithi078.aqnwdz is now available 2024-09-21T11:51:34.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:33.863874+0000 mon.smithi078 (mon.0) 94 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:51:34.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:33.863874+0000 mon.smithi078 (mon.0) 94 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:51:34.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:33.880987+0000 mon.smithi078 (mon.0) 95 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/mirror_snapshot_schedule"} : dispatch 2024-09-21T11:51:34.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:33.880987+0000 mon.smithi078 (mon.0) 95 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/mirror_snapshot_schedule"} : dispatch 2024-09-21T11:51:34.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:33.882910+0000 mon.smithi078 (mon.0) 96 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/trash_purge_schedule"} : dispatch 2024-09-21T11:51:34.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:33.882910+0000 mon.smithi078 (mon.0) 96 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/trash_purge_schedule"} : dispatch 2024-09-21T11:51:34.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.504339+0000 mgr.smithi078.aqnwdz (mgr.14164) 1 : cephadm [INF] [21/Sep/2024:11:51:34] ENGINE Bus STARTING 2024-09-21T11:51:34.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.504339+0000 mgr.smithi078.aqnwdz (mgr.14164) 1 : cephadm [INF] [21/Sep/2024:11:51:34] ENGINE Bus STARTING 2024-09-21T11:51:34.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:34.580135+0000 mgr.smithi078.aqnwdz (mgr.14164) 2 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-21T11:51:34.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:34.580135+0000 mgr.smithi078.aqnwdz (mgr.14164) 2 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "get_command_descriptions"}]: dispatch 2024-09-21T11:51:34.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: cluster 2024-09-21T11:51:34.581014+0000 mon.smithi078 (mon.0) 97 : cluster [DBG] mgrmap e12: smithi078.aqnwdz(active, since 1.00714s) 2024-09-21T11:51:34.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: cluster 2024-09-21T11:51:34.581014+0000 mon.smithi078 (mon.0) 97 : cluster [DBG] mgrmap e12: smithi078.aqnwdz(active, since 1.00714s) 2024-09-21T11:51:34.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:34.592986+0000 mgr.smithi078.aqnwdz (mgr.14164) 3 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-21T11:51:34.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:34 smithi078 bash[20010]: audit 2024-09-21T11:51:34.592986+0000 mgr.smithi078.aqnwdz (mgr.14164) 3 : audit [DBG] from='client.14168 -' entity='client.admin' cmd=[{"prefix": "mgr_status"}]: dispatch 2024-09-21T11:51:35.211 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout { 2024-09-21T11:51:35.211 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "mgrmap_epoch": 12, 2024-09-21T11:51:35.211 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout "initialized": true 2024-09-21T11:51:35.211 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout } 2024-09-21T11:51:35.211 INFO:teuthology.orchestra.run.smithi078.stdout:mgr epoch 10 is available 2024-09-21T11:51:35.211 INFO:teuthology.orchestra.run.smithi078.stdout:Using certmgr to generate dashboard self-signed certificate... 2024-09-21T11:51:35.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.606041+0000 mgr.smithi078.aqnwdz (mgr.14164) 4 : cephadm [INF] [21/Sep/2024:11:51:34] ENGINE Serving on http://172.21.15.78:8765 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.606041+0000 mgr.smithi078.aqnwdz (mgr.14164) 4 : cephadm [INF] [21/Sep/2024:11:51:34] ENGINE Serving on http://172.21.15.78:8765 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.722850+0000 mgr.smithi078.aqnwdz (mgr.14164) 5 : cephadm [INF] [21/Sep/2024:11:51:34] ENGINE Serving on https://172.21.15.78:7150 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.722850+0000 mgr.smithi078.aqnwdz (mgr.14164) 5 : cephadm [INF] [21/Sep/2024:11:51:34] ENGINE Serving on https://172.21.15.78:7150 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.722939+0000 mgr.smithi078.aqnwdz (mgr.14164) 6 : cephadm [INF] [21/Sep/2024:11:51:34] ENGINE Bus STARTED 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.722939+0000 mgr.smithi078.aqnwdz (mgr.14164) 6 : cephadm [INF] [21/Sep/2024:11:51:34] ENGINE Bus STARTED 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.724613+0000 mgr.smithi078.aqnwdz (mgr.14164) 7 : cephadm [ERR] [21/Sep/2024:11:51:34] ENGINE Error in HTTPServer.serve 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: Traceback (most recent call last): 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: self._connections.run(self.expiration_interval) 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: self._run(expiration_interval) 2024-09-21T11:51:35.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: s = self.context.wrap_socket( 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: return self.sslsocket_class._create( 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: self.do_handshake() 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: self._sslobj.do_handshake() 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: cephadm 2024-09-21T11:51:34.724613+0000 mgr.smithi078.aqnwdz (mgr.14164) 7 : cephadm [ERR] [21/Sep/2024:11:51:34] ENGINE Error in HTTPServer.serve 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: Traceback (most recent call last): 2024-09-21T11:51:35.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: self._connections.run(self.expiration_interval) 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: self._run(expiration_interval) 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: s = self.context.wrap_socket( 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: return self.sslsocket_class._create( 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: self.do_handshake() 2024-09-21T11:51:35.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T11:51:35.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: self._sslobj.do_handshake() 2024-09-21T11:51:35.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:35 smithi078 bash[20010]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T11:51:36.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:36 smithi078 bash[20010]: cluster 2024-09-21T11:51:35.640555+0000 mon.smithi078 (mon.0) 98 : cluster [DBG] mgrmap e13: smithi078.aqnwdz(active, since 2s) 2024-09-21T11:51:36.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:36 smithi078 bash[20010]: cluster 2024-09-21T11:51:35.640555+0000 mon.smithi078 (mon.0) 98 : cluster [DBG] mgrmap e13: smithi078.aqnwdz(active, since 2s) 2024-09-21T11:51:37.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:37 smithi078 bash[20010]: audit 2024-09-21T11:51:36.614324+0000 mgr.smithi078.aqnwdz (mgr.14164) 8 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:37.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:37 smithi078 bash[20010]: audit 2024-09-21T11:51:36.614324+0000 mgr.smithi078.aqnwdz (mgr.14164) 8 : audit [DBG] from='client.14176 -' entity='client.admin' cmd=[{"prefix": "orch certmgr generate-certificates", "module_name": "dashboard", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:38.101 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout {"cert": "-----BEGIN CERTIFICATE-----\nMIIE+zCCAuOgAwIBAgIUSzlP2YRBYoeI83b+xB864ZXJQtYwDQYJKoZIhvcNAQEL\nBQAwFzEVMBMGA1UEAwwMY2VwaGFkbS1yb290MB4XDTI0MDkyMTExNTEzN1oXDTM0\nMDkyMjExNTEzN1owFzEVMBMGA1UEAwwMMTcyLjIxLjE1Ljc4MIICIjANBgkqhkiG\n9w0BAQEFAAOCAg8AMIICCgKCAgEAxPyC8+XmtKrJ5/EA68GH2jzINJ1g1YUHvC9N\nfVIEmzKyg7DgCwfX5UBtKAU9JQ502qO5bhFTsMQrMcuZDG4rsOa4vWeiV63vMtj8\n055yP+8SLxmvFjyBEp5GdQXIc1lvQuloukaPnypqj8fjgcd6j6d+ZRUSAxiO30mL\nZsNeazTTta9tc49iNsLp4UFqF6g86KR4TPL+uGO5ziDPaFSamBBLV/HEbZ7VzyIS\nr0eWbbO4Aa653Kzy7TdM+ap6TzhS36aU6J9Zsg/c3BTmIBq0IpyPw7Oq82YzPjZf\nECajT1X1J//1BFrAqHDTEGbZdQazdhitzsI9aHke7dZBavLha86VdCcIJ4f4si/j\nORN+IlBZ4rd0Dtv+RExHfnJ3ggGCH40AN6qdeDb2DWHHShGp8yI70bEC+XIsHeOB\nxeB7gwqPHaBMEJIwq73dfQTyIW34daFR+hh3PsTYZ6K0trBHcVj/m5xAwnXGEYHQ\nCBxzfKYIyLoFNKLZqQQf1UyyLrLUJ4z/O1WYvWyf5U+4pxWk7ke+AmzcyEHu257i\n4cZ4cN8rivNak8J0xmILmHqKmMMwrjyyyLPwW1RBqRkhmbU6gvvOAj3ht0KExBtF\n8XKRC8iYwEgsh//xWCZ596r6UIxbu5sHUhuHYykSGcguKc8NJBkAfZ2/PLV7Q7b9\nGyH3EcUCAwEAAaM/MD0wLQYDVR0RBCYwJIIJc21pdGhpMDc4ghFkYXNoYm9hcmRf\nc2VydmVyc4cErBUPTjAMBgNVHRMBAf8EAjAAMA0GCSqGSIb3DQEBCwUAA4ICAQAx\nRnSCy9NItT9iF7L9bdOnNQ4X1QrhrpTWo9mm9CUfoeEDcoYN6uOI1Bk4EOhKT5HN\nNzdyYvOQRYey3roDrtgmldYR/AqGUTWxU0xif+RS2xY5hYdObDSfqJTxhdg9Vnx9\nhoVZgs9Np1AvGE/7n8eVunanzwlx4txn8xM3gxwTRzMHTuPTfhgL+kIqvPXqT7HQ\n+VYfOxPehUHor1B17KM2+0BONHnle9YlsUBfgAAZ1+edCjfAYVLJ+h0grfqW8OBz\nkfiXkkLPsmhJmw/cgwtHiPIJQurUJ8M4XTV69g2AXpZs3sLYjD8X3n8ZnUuxWx+4\nJK/dRTc6oP9sQ6qV7JPDGzwksJc9vHfjSn9fheA6MdQabhWM30zBjdv0TXiDu0dX\nbqONJAu7nJyYnFvHPup+VwB+5if+giFsKwLnH9V2MdyiK7QV/uEGkFiKSQwHCY/l\nebJO09ZclPZXHK3KM7TJRoNnAmAYRexWxvFAXJUMc8x1lCimWzkbsg299z1NaZLL\n1fPBrzOCMpjrIImocaM/b/l7m58azJnVDypAbLNKVSRXL2B0sID9LDmqtH8FSfLd\nhsLOLKfSFAXKGdmRhkICROBGS+IRuSJNz6ayrD5n8L6AE4pxNb6jD6YsfrJfPIwT\nXj7c3K2r8e5UY7Dl5LUPggrF/1T7AX2m4dBd78bHeA==\n-----END CERTIFICATE-----\n", "key": "-----BEGIN RSA PRIVATE KEY-----\nMIIJJwIBAAKCAgEAxPyC8+XmtKrJ5/EA68GH2jzINJ1g1YUHvC9NfVIEmzKyg7Dg\nCwfX5UBtKAU9JQ502qO5bhFTsMQrMcuZDG4rsOa4vWeiV63vMtj8055yP+8SLxmv\nFjyBEp5GdQXIc1lvQuloukaPnypqj8fjgcd6j6d+ZRUSAxiO30mLZsNeazTTta9t\nc49iNsLp4UFqF6g86KR4TPL+uGO5ziDPaFSamBBLV/HEbZ7VzyISr0eWbbO4Aa65\n3Kzy7TdM+ap6TzhS36aU6J9Zsg/c3BTmIBq0IpyPw7Oq82YzPjZfECajT1X1J//1\nBFrAqHDTEGbZdQazdhitzsI9aHke7dZBavLha86VdCcIJ4f4si/jORN+IlBZ4rd0\nDtv+RExHfnJ3ggGCH40AN6qdeDb2DWHHShGp8yI70bEC+XIsHeOBxeB7gwqPHaBM\nEJIwq73dfQTyIW34daFR+hh3PsTYZ6K0trBHcVj/m5xAwnXGEYHQCBxzfKYIyLoF\nNKLZqQQf1UyyLrLUJ4z/O1WYvWyf5U+4pxWk7ke+AmzcyEHu257i4cZ4cN8rivNa\nk8J0xmILmHqKmMMwrjyyyLPwW1RBqRkhmbU6gvvOAj3ht0KExBtF8XKRC8iYwEgs\nh//xWCZ596r6UIxbu5sHUhuHYykSGcguKc8NJBkAfZ2/PLV7Q7b9GyH3EcUCAwEA\nAQKCAgAKx5AETXITiZO6R+ZMqxmGaB8YlKgmPGe7n5G2UupXnS2cUUM2t1DUMHNe\nEPNTTM2OOA6/UYlqj0GXMaoIE8X7oenoINIHHvM2WB4gbSJEEg7FBGXKv2LczvZ8\nvuVE6AGpAAwwGAkR+l3nIlbL1PZbAsfC5k/xsBgEFgqKhBRtpMVqbYAoJmeHJva/\nfIyUC4EnG0ujV694DapZolKsmzyefP3H1pNw4D6ZCCdM74ucKI01jQc0u+4glw8f\noSRHo4W9dr3dVk2v6yL4lC2HrOPApR/6OKHD52Ap07XeCg8+by4W6JsoMth/dIpy\n8lM3Y+Im4JuE81ItnmXX5AqjvJ4jPIznQI7nGlpGvs48VAVa2s2hThjQ4ladc1I6\ntE4KDr1e3xQ3ldVHzsvu8hm5auIEQVeKqtTGxTNuGZM424sJRT4BHGQqEbaMNBIz\nIUAEMKIkfzYKJ2TaU4mISFqQTgdwcWtUsJ36c4puDnS8b8CHeOr7BbduzT3Bx0qi\nK+rRDxzoH9G4fD/OhvVF3DIkjLTCIB3gsQZ5MluDwN2x8wfq0lQHOQ977g4M0UOv\nyl2EHbPd1lUe5u8D57NbdhSYV9N9LRUz+QWnLjT0UuTtxkVaBn99J50vl7k+D814\nMp5mVhD9FV48voz8ts1WKqNrNzP+ybsDXYHHA06H8DDMiRWVHQKCAQEA6G08V+xF\nNOWp/9i7J5U9ETeVVHd61DRkkuzsdxeD1yaQfqwSOg4lbV3/lu9zwFb4/F/jk8/h\nsrObpuNZHCsuhnyUOnRoaXkVtnhwrb0cLmwfc0hDMZNsNASVBB6E+JiQV03nEUTf\nhDq7IkGXxaGnwXUUVskchZhhpB/WiLDsQ5zTzhAvvDWqg78m1msTGdBxngJ0bvUO\nYZlWCBIArgMyMxgUdDnHFUoLWhBuWpzc3k47n8o1bH8BTka9eCuZAyqwxqjWcWzm\nIXyaCAGkb7byXxrOdWfzVvykcYL6EccwbQkBNwVVj1NHEsH/8yen/Iz1k5Nmz54N\nNevDcFQ8pCmQXwKCAQEA2PcY8GK+PAnXKoWp/llUyCEUwKe0zr4QOIgufBhe52sT\nlJeUJlUBjJSrcv7McoiNK165q1A+v3rwJByfD3aCUsZ9VG3oOKmmEcmoqL0jd8YH\nInWkVd1k8UxsetXR7ZIyfMv9Z2ln0egdg4ANFUsYAfpVI1C13kGQHCI/06mIWKlt\nJ1RKfSuUDoKy/tW+5Sf37M7LPpz5Iga1RNxuvLe8Yd+HXDgqe0vKJEioZVyOVjFn\nxb33nVhbCwF53K4RIYZpEYvKcPKHtezh3wVXd1zBRBMocnL56Pk8+LE5+zxuohiE\nZnu1cUOawgHMBwXBkdZXLlSTC1dsMNvQmcp8X4dAWwKCAQB2n4m0tfl8Tdq9oTej\ntB8+skecnH4r37GU6yakgXPgUuZcQCXtS1r+voK73eoNuFXLOIVF40slkVVXj6Dj\nJ4bPTLW6P78qVYonXsDjayj+6GAEzlS88KjAw7XqLElhNzwz0qajwaryKadojGGR\nlDeyHLcMtAfCh0sOING1Ydazi07uVISIYjtskhqYRH2zJxdVtZsHJjr4xPGLnOSL\n60WrnhaSWwqoaunwRYKM7JItQ3Ba1TD+9rML6D67HkUxwJAIVBNeQF4TqSxT+cKa\n4ZxBvcSxVyRyuO6UoGxQtoCYpYfhNO+9/pq/kBO5Xfv2gVq0vv4x6FCFvJY6tkNc\n5XmxAoIBAG8nEEC+5aTOicwAFFn5HAU3ZXFZubidCKRdqCrtNVmrsqlSipSkwhlq\nZPeR793RdTk92zMX9j2U1wg5HYgHd7a+d6DUeb7lsu2z+VMRKuWGr0sJJ/rRZJB2\nTbEUb+sdFf53Z0geaRDRsKUY6hr5kMAapplkFPhbcF/pb/eZCAAcNI6MkWjU9ZIF\nhXwmtxihRFOukdNvCfdTpnQz1guauckOgkNNhv4JkvLJwnPDWixwPTDCJOQYSvQ1\nemADUUVyncteaYU5yyr5w7HFA81j2KNuiS8xFjUz0ve5m/HJQQiMNPBn+kmfj95K\nm2MRoNx9Ccbzjy2lSQky5AiWAufR27cCggEAJX8d14dF8hx2NkVEwj8Oy8R3v4IC\nSZVyHSxBFmSBRm/BisZ7b2H/iImRqlPPxHrp/xo3kjfdGemqSpAFFB5XEaiD6CXa\nLDke2jTxLdO+LwoJE+gPEiNPMn1TKpnljLaXTMS+KQfuQ3hiAL2x04ShZuUcE6cT\nZmuKI+cexO7xwlPay2tD1Fac2dhR7EgVgUEUJIlKuh8mBBPv7dFwFQ3v0dOs2mZq\nG2V/R6QGCHBa5yOn938kTnYB7vYs9c2Ud0YZB5dAh89xk60ImoxAB/0iHgibmVDN\nBAN7qwa0sMqv9qNVlLzvgHLZQO7VBYT3zCcHU//1qvd/52DjnLXNFFY5SA==\n-----END RSA PRIVATE KEY-----\n"} 2024-09-21T11:51:40.148 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout SSL certificate updated 2024-09-21T11:51:40.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:40 smithi078 bash[20010]: audit 2024-09-21T11:51:39.524381+0000 mgr.smithi078.aqnwdz (mgr.14164) 9 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:40.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:40 smithi078 bash[20010]: audit 2024-09-21T11:51:39.524381+0000 mgr.smithi078.aqnwdz (mgr.14164) 9 : audit [DBG] from='client.14178 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:40.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:40 smithi078 bash[20010]: audit 2024-09-21T11:51:39.529472+0000 mon.smithi078 (mon.0) 99 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:40.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:40 smithi078 bash[20010]: audit 2024-09-21T11:51:39.529472+0000 mon.smithi078 (mon.0) 99 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:42.080 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout SSL certificate key updated 2024-09-21T11:51:42.080 INFO:teuthology.orchestra.run.smithi078.stdout:Creating initial admin user... 2024-09-21T11:51:42.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:41 smithi078 bash[20010]: audit 2024-09-21T11:51:40.828332+0000 mon.smithi078 (mon.0) 100 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:42.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:41 smithi078 bash[20010]: audit 2024-09-21T11:51:40.828332+0000 mon.smithi078 (mon.0) 100 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:42.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:41 smithi078 bash[20010]: audit 2024-09-21T11:51:41.475360+0000 mgr.smithi078.aqnwdz (mgr.14164) 10 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:42.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:41 smithi078 bash[20010]: audit 2024-09-21T11:51:41.475360+0000 mgr.smithi078.aqnwdz (mgr.14164) 10 : audit [DBG] from='client.14180 -' entity='client.admin' cmd=[{"prefix": "dashboard set-ssl-certificate-key", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:42.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:41 smithi078 bash[20010]: audit 2024-09-21T11:51:41.479748+0000 mon.smithi078 (mon.0) 101 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:42.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:41 smithi078 bash[20010]: audit 2024-09-21T11:51:41.479748+0000 mon.smithi078 (mon.0) 101 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:43.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:42 smithi078 bash[20010]: audit 2024-09-21T11:51:41.897132+0000 mon.smithi078 (mon.0) 102 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:43.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:42 smithi078 bash[20010]: audit 2024-09-21T11:51:41.897132+0000 mon.smithi078 (mon.0) 102 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:44.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:43 smithi078 bash[20010]: audit 2024-09-21T11:51:43.589759+0000 mgr.smithi078.aqnwdz (mgr.14164) 11 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:44.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:43 smithi078 bash[20010]: audit 2024-09-21T11:51:43.589759+0000 mgr.smithi078.aqnwdz (mgr.14164) 11 : audit [DBG] from='client.14182 -' entity='client.admin' cmd=[{"prefix": "dashboard ac-user-create", "username": "admin", "rolename": "administrator", "force_password": true, "pwd_update_required": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:51:44.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:43 smithi078 bash[20010]: audit 2024-09-21T11:51:43.849799+0000 mon.smithi078 (mon.0) 103 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:44.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:43 smithi078 bash[20010]: audit 2024-09-21T11:51:43.849799+0000 mon.smithi078 (mon.0) 103 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:44.492 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout {"username": "admin", "password": "$2b$12$Hb1NgmC.A7NV1r2oFWRv5uf5I59v8vlCjc93AtSosdRNg8Hlnxnve", "roles": ["administrator"], "name": null, "email": null, "lastUpdate": 1726919503, "enabled": true, "pwdExpirationDate": null, "pwdUpdateRequired": true} 2024-09-21T11:51:44.492 INFO:teuthology.orchestra.run.smithi078.stdout:Fetching dashboard port number... 2024-09-21T11:51:46.419 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stdout 8443 2024-09-21T11:51:46.420 INFO:teuthology.orchestra.run.smithi078.stdout:firewalld does not appear to be present 2024-09-21T11:51:46.420 INFO:teuthology.orchestra.run.smithi078.stdout:Not possible to open ports <[8443]>. firewalld.service is not available 2024-09-21T11:51:46.422 INFO:teuthology.orchestra.run.smithi078.stdout:Ceph Dashboard is now available at: 2024-09-21T11:51:46.422 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:46.422 INFO:teuthology.orchestra.run.smithi078.stdout: URL: https://smithi078.front.sepia.ceph.com:8443/ 2024-09-21T11:51:46.422 INFO:teuthology.orchestra.run.smithi078.stdout: User: admin 2024-09-21T11:51:46.423 INFO:teuthology.orchestra.run.smithi078.stdout: Password: mep6xkczvl 2024-09-21T11:51:46.423 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:46.423 INFO:teuthology.orchestra.run.smithi078.stdout:Saving cluster configuration to /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config directory 2024-09-21T11:51:46.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:46 smithi078 bash[20010]: cluster 2024-09-21T11:51:45.714598+0000 mon.smithi078 (mon.0) 104 : cluster [DBG] mgrmap e14: smithi078.aqnwdz(active, since 12s) 2024-09-21T11:51:46.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:46 smithi078 bash[20010]: cluster 2024-09-21T11:51:45.714598+0000 mon.smithi078 (mon.0) 104 : cluster [DBG] mgrmap e14: smithi078.aqnwdz(active, since 12s) 2024-09-21T11:51:46.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:46 smithi078 bash[20010]: audit 2024-09-21T11:51:45.820678+0000 mon.smithi078 (mon.0) 105 : audit [DBG] from='client.? 172.21.15.78:0/2974324525' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-21T11:51:46.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:46 smithi078 bash[20010]: audit 2024-09-21T11:51:45.820678+0000 mon.smithi078 (mon.0) 105 : audit [DBG] from='client.? 172.21.15.78:0/2974324525' entity='client.admin' cmd={"prefix": "config get", "who": "mgr", "key": "mgr/dashboard/ssl_server_port"} : dispatch 2024-09-21T11:51:49.233 INFO:teuthology.orchestra.run.smithi078.stdout:/usr/bin/ceph: stderr set mgr/dashboard/cluster/status 2024-09-21T11:51:49.233 INFO:teuthology.orchestra.run.smithi078.stdout:You can access the Ceph CLI as following in case of multi-cluster or non-default config: 2024-09-21T11:51:49.233 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:49.233 INFO:teuthology.orchestra.run.smithi078.stdout: sudo /home/ubuntu/cephtest/cephadm shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring 2024-09-21T11:51:49.233 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:49.233 INFO:teuthology.orchestra.run.smithi078.stdout:Or, if you are only running a single cluster on this host: 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout: sudo /home/ubuntu/cephtest/cephadm shell 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout:Please consider enabling telemetry to help improve Ceph: 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout: ceph telemetry on 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout:For more information see: 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout: https://docs.ceph.com/en/latest/mgr/telemetry/ 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:51:49.234 INFO:teuthology.orchestra.run.smithi078.stdout:Bootstrap complete. 2024-09-21T11:51:49.278 INFO:tasks.cephadm:Fetching config... 2024-09-21T11:51:49.278 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:51:49.278 DEBUG:teuthology.orchestra.run.smithi078:> dd if=/etc/ceph/ceph.conf of=/dev/stdout 2024-09-21T11:51:49.284 INFO:tasks.cephadm:Fetching client.admin keyring... 2024-09-21T11:51:49.284 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:51:49.284 DEBUG:teuthology.orchestra.run.smithi078:> dd if=/etc/ceph/ceph.client.admin.keyring of=/dev/stdout 2024-09-21T11:51:49.331 INFO:tasks.cephadm:Fetching mon keyring... 2024-09-21T11:51:49.331 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:51:49.331 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/keyring of=/dev/stdout 2024-09-21T11:51:49.384 INFO:tasks.cephadm:Fetching pub ssh key... 2024-09-21T11:51:49.385 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:51:49.385 DEBUG:teuthology.orchestra.run.smithi078:> dd if=/home/ubuntu/cephtest/ceph.pub of=/dev/stdout 2024-09-21T11:51:49.431 INFO:tasks.cephadm:Installing pub ssh key for root users... 2024-09-21T11:51:49.432 DEBUG:teuthology.orchestra.run.smithi078:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhXRXYylbo9X+n/IhZXNCFAmeZzcDDWMHem7hoWGtcZjYtrqbhjwQ6lbAdo0lxxva7Rb6lZ33aOtKi/KjHEkEuJUvdtHeeN6pQYvrzW8G0MmsAgtpYSmwBHeaaNDTJm4HdrMI/CND+UDRmXjVqQZYr7lbCH00QXNIXC2/ZSMjanIVj9nLyb3/dUfe4nsdYIG5HbBMrCbOZHfM9MeXso9yKsEp1fIiIQB3HtnwWRMsqKsbxJPv6ZLNgeSQmkdtSGFski6/+kf9yRfyZX7eVG8JdxByA0W3QlzWWJYoc5XrKuItvQozaS0s2vuaedidWS5gNJCoaROCg55ToWGCqGqTOHGBj5fBKLR3fvB94h2y+hu0K11aZnmc07LDeB0LSHsZREOxOqSa25pidJVD1aidfAmRmZuJ4uu1N2wtNKQ149vmgUF/GIuH76x3/7OwCl6AYRzvP9YPfu7gMQurKMO+6T0cza1ZLFeSb1WVXtHNYU474nZRqqsVEpuiH3g7Xl78= ceph-6b15370c-780f-11ef-baf6-efdc52797490' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-21T11:51:49.496 INFO:teuthology.orchestra.run.smithi078.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhXRXYylbo9X+n/IhZXNCFAmeZzcDDWMHem7hoWGtcZjYtrqbhjwQ6lbAdo0lxxva7Rb6lZ33aOtKi/KjHEkEuJUvdtHeeN6pQYvrzW8G0MmsAgtpYSmwBHeaaNDTJm4HdrMI/CND+UDRmXjVqQZYr7lbCH00QXNIXC2/ZSMjanIVj9nLyb3/dUfe4nsdYIG5HbBMrCbOZHfM9MeXso9yKsEp1fIiIQB3HtnwWRMsqKsbxJPv6ZLNgeSQmkdtSGFski6/+kf9yRfyZX7eVG8JdxByA0W3QlzWWJYoc5XrKuItvQozaS0s2vuaedidWS5gNJCoaROCg55ToWGCqGqTOHGBj5fBKLR3fvB94h2y+hu0K11aZnmc07LDeB0LSHsZREOxOqSa25pidJVD1aidfAmRmZuJ4uu1N2wtNKQ149vmgUF/GIuH76x3/7OwCl6AYRzvP9YPfu7gMQurKMO+6T0cza1ZLFeSb1WVXtHNYU474nZRqqsVEpuiH3g7Xl78= ceph-6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:51:49.505 DEBUG:teuthology.orchestra.run.smithi195:> sudo install -d -m 0700 /root/.ssh && echo 'ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhXRXYylbo9X+n/IhZXNCFAmeZzcDDWMHem7hoWGtcZjYtrqbhjwQ6lbAdo0lxxva7Rb6lZ33aOtKi/KjHEkEuJUvdtHeeN6pQYvrzW8G0MmsAgtpYSmwBHeaaNDTJm4HdrMI/CND+UDRmXjVqQZYr7lbCH00QXNIXC2/ZSMjanIVj9nLyb3/dUfe4nsdYIG5HbBMrCbOZHfM9MeXso9yKsEp1fIiIQB3HtnwWRMsqKsbxJPv6ZLNgeSQmkdtSGFski6/+kf9yRfyZX7eVG8JdxByA0W3QlzWWJYoc5XrKuItvQozaS0s2vuaedidWS5gNJCoaROCg55ToWGCqGqTOHGBj5fBKLR3fvB94h2y+hu0K11aZnmc07LDeB0LSHsZREOxOqSa25pidJVD1aidfAmRmZuJ4uu1N2wtNKQ149vmgUF/GIuH76x3/7OwCl6AYRzvP9YPfu7gMQurKMO+6T0cza1ZLFeSb1WVXtHNYU474nZRqqsVEpuiH3g7Xl78= ceph-6b15370c-780f-11ef-baf6-efdc52797490' | sudo tee -a /root/.ssh/authorized_keys && sudo chmod 0600 /root/.ssh/authorized_keys 2024-09-21T11:51:49.527 INFO:teuthology.orchestra.run.smithi195.stdout:ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDhXRXYylbo9X+n/IhZXNCFAmeZzcDDWMHem7hoWGtcZjYtrqbhjwQ6lbAdo0lxxva7Rb6lZ33aOtKi/KjHEkEuJUvdtHeeN6pQYvrzW8G0MmsAgtpYSmwBHeaaNDTJm4HdrMI/CND+UDRmXjVqQZYr7lbCH00QXNIXC2/ZSMjanIVj9nLyb3/dUfe4nsdYIG5HbBMrCbOZHfM9MeXso9yKsEp1fIiIQB3HtnwWRMsqKsbxJPv6ZLNgeSQmkdtSGFski6/+kf9yRfyZX7eVG8JdxByA0W3QlzWWJYoc5XrKuItvQozaS0s2vuaedidWS5gNJCoaROCg55ToWGCqGqTOHGBj5fBKLR3fvB94h2y+hu0K11aZnmc07LDeB0LSHsZREOxOqSa25pidJVD1aidfAmRmZuJ4uu1N2wtNKQ149vmgUF/GIuH76x3/7OwCl6AYRzvP9YPfu7gMQurKMO+6T0cza1ZLFeSb1WVXtHNYU474nZRqqsVEpuiH3g7Xl78= ceph-6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:51:49.535 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph config set mgr mgr/cephadm/allow_ptrace true 2024-09-21T11:51:49.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:49 smithi078 bash[20010]: audit 2024-09-21T11:51:48.510119+0000 mon.smithi078 (mon.0) 106 : audit [INF] from='client.? 172.21.15.78:0/2275642658' entity='client.admin' 2024-09-21T11:51:49.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:49 smithi078 bash[20010]: audit 2024-09-21T11:51:48.510119+0000 mon.smithi078 (mon.0) 106 : audit [INF] from='client.? 172.21.15.78:0/2275642658' entity='client.admin' 2024-09-21T11:51:53.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:53 smithi078 bash[20010]: cluster 2024-09-21T11:51:53.586753+0000 mgr.smithi078.aqnwdz (mgr.14164) 12 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:53.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:53 smithi078 bash[20010]: cluster 2024-09-21T11:51:53.586753+0000 mgr.smithi078.aqnwdz (mgr.14164) 12 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:55.519 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.131453+0000 mon.smithi078 (mon.0) 107 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.131453+0000 mon.smithi078 (mon.0) 107 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.137384+0000 mon.smithi078 (mon.0) 108 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.137384+0000 mon.smithi078 (mon.0) 108 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.139421+0000 mon.smithi078 (mon.0) 109 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi078", "name": "osd_memory_target"} : dispatch 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.139421+0000 mon.smithi078 (mon.0) 109 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi078", "name": "osd_memory_target"} : dispatch 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.146443+0000 mon.smithi078 (mon.0) 110 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.146443+0000 mon.smithi078 (mon.0) 110 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.149317+0000 mon.smithi078 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi078", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.149317+0000 mon.smithi078 (mon.0) 111 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi078", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:51:56.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.150898+0000 mon.smithi078 (mon.0) 112 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi078", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T11:51:56.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.150898+0000 mon.smithi078 (mon.0) 112 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi078", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T11:51:56.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.155303+0000 mon.smithi078 (mon.0) 113 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:51:56.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: audit 2024-09-21T11:51:55.155303+0000 mon.smithi078 (mon.0) 113 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:51:56.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: cephadm 2024-09-21T11:51:55.157184+0000 mgr.smithi078.aqnwdz (mgr.14164) 13 : cephadm [INF] Deploying daemon ceph-exporter.smithi078 on smithi078 2024-09-21T11:51:56.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: cephadm 2024-09-21T11:51:55.157184+0000 mgr.smithi078.aqnwdz (mgr.14164) 13 : cephadm [INF] Deploying daemon ceph-exporter.smithi078 on smithi078 2024-09-21T11:51:56.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: cluster 2024-09-21T11:51:55.587039+0000 mgr.smithi078.aqnwdz (mgr.14164) 14 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:56.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:56 smithi078 bash[20010]: cluster 2024-09-21T11:51:55.587039+0000 mgr.smithi078.aqnwdz (mgr.14164) 14 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:58.474 INFO:tasks.cephadm:Distributing conf and client.admin keyring to all hosts + 0755 2024-09-21T11:51:58.474 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph orch client-keyring set client.admin '*' --mode 0755 2024-09-21T11:51:58.723 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:58 smithi078 bash[20010]: audit 2024-09-21T11:51:57.495695+0000 mon.smithi078 (mon.0) 114 : audit [INF] from='client.? 172.21.15.78:0/3128893981' entity='client.admin' 2024-09-21T11:51:58.723 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:58 smithi078 bash[20010]: audit 2024-09-21T11:51:57.495695+0000 mon.smithi078 (mon.0) 114 : audit [INF] from='client.? 172.21.15.78:0/3128893981' entity='client.admin' 2024-09-21T11:51:58.723 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:58 smithi078 bash[20010]: cluster 2024-09-21T11:51:57.587392+0000 mgr.smithi078.aqnwdz (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:58.723 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:58 smithi078 bash[20010]: cluster 2024-09-21T11:51:57.587392+0000 mgr.smithi078.aqnwdz (mgr.14164) 15 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:51:58.723 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:58 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:51:59.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:58 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.971861+0000 mon.smithi078 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.971861+0000 mon.smithi078 (mon.0) 115 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.974761+0000 mon.smithi078 (mon.0) 116 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.974761+0000 mon.smithi078 (mon.0) 116 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.977336+0000 mon.smithi078 (mon.0) 117 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.977336+0000 mon.smithi078 (mon.0) 117 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.979388+0000 mon.smithi078 (mon.0) 118 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.979388+0000 mon.smithi078 (mon.0) 118 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.980430+0000 mon.smithi078 (mon.0) 119 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi078", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:52:00.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.980430+0000 mon.smithi078 (mon.0) 119 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi078", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:52:00.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.981104+0000 mon.smithi078 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi078", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T11:52:00.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.981104+0000 mon.smithi078 (mon.0) 120 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi078", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T11:52:00.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.982660+0000 mon.smithi078 (mon.0) 121 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:52:00.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: audit 2024-09-21T11:51:58.982660+0000 mon.smithi078 (mon.0) 121 : audit [DBG] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:52:00.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: cephadm 2024-09-21T11:51:58.983368+0000 mgr.smithi078.aqnwdz (mgr.14164) 16 : cephadm [INF] Deploying daemon crash.smithi078 on smithi078 2024-09-21T11:52:00.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: cephadm 2024-09-21T11:51:58.983368+0000 mgr.smithi078.aqnwdz (mgr.14164) 16 : cephadm [INF] Deploying daemon crash.smithi078 on smithi078 2024-09-21T11:52:00.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: cluster 2024-09-21T11:51:59.587794+0000 mgr.smithi078.aqnwdz (mgr.14164) 17 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:00.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:51:59 smithi078 bash[20010]: cluster 2024-09-21T11:51:59.587794+0000 mgr.smithi078.aqnwdz (mgr.14164) 17 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:01.845 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:01 smithi078 bash[20010]: cluster 2024-09-21T11:52:01.588315+0000 mgr.smithi078.aqnwdz (mgr.14164) 18 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:01.846 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:01 smithi078 bash[20010]: cluster 2024-09-21T11:52:01.588315+0000 mgr.smithi078.aqnwdz (mgr.14164) 18 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:02.147 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:01 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:02.147 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:02 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:03.211 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:52:03.357 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:03.357 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: audit 2024-09-21T11:52:02.205313+0000 mon.smithi078 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:03.357 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: audit 2024-09-21T11:52:02.205313+0000 mon.smithi078 (mon.0) 122 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:03.357 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: audit 2024-09-21T11:52:02.207986+0000 mon.smithi078 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:03.357 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: audit 2024-09-21T11:52:02.207986+0000 mon.smithi078 (mon.0) 123 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:03.357 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: audit 2024-09-21T11:52:02.211165+0000 mon.smithi078 (mon.0) 124 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:03.358 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: audit 2024-09-21T11:52:02.211165+0000 mon.smithi078 (mon.0) 124 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:03.358 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: audit 2024-09-21T11:52:02.213484+0000 mon.smithi078 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:03.358 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: audit 2024-09-21T11:52:02.213484+0000 mon.smithi078 (mon.0) 125 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:03.358 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: cephadm 2024-09-21T11:52:02.214746+0000 mgr.smithi078.aqnwdz (mgr.14164) 19 : cephadm [INF] Deploying daemon node-exporter.smithi078 on smithi078 2024-09-21T11:52:03.358 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 bash[20010]: cephadm 2024-09-21T11:52:02.214746+0000 mgr.smithi078.aqnwdz (mgr.14164) 19 : cephadm [INF] Deploying daemon node-exporter.smithi078 on smithi078 2024-09-21T11:52:03.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:03 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:04.569 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: cluster 2024-09-21T11:52:03.588695+0000 mgr.smithi078.aqnwdz (mgr.14164) 20 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: cluster 2024-09-21T11:52:03.588695+0000 mgr.smithi078.aqnwdz (mgr.14164) 20 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.700274+0000 mon.smithi078 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.700274+0000 mon.smithi078 (mon.0) 126 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.702541+0000 mon.smithi078 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.702541+0000 mon.smithi078 (mon.0) 127 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.704745+0000 mon.smithi078 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.704745+0000 mon.smithi078 (mon.0) 128 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.706789+0000 mon.smithi078 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.706789+0000 mon.smithi078 (mon.0) 129 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.881716+0000 mon.smithi078 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:04.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:04 smithi078 bash[20010]: audit 2024-09-21T11:52:03.881716+0000 mon.smithi078 (mon.0) 130 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:05.379 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:05 smithi078 bash[20010]: cephadm 2024-09-21T11:52:03.715640+0000 mgr.smithi078.aqnwdz (mgr.14164) 21 : cephadm [INF] Deploying daemon alertmanager.smithi078 on smithi078 2024-09-21T11:52:05.379 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:05 smithi078 bash[20010]: cephadm 2024-09-21T11:52:03.715640+0000 mgr.smithi078.aqnwdz (mgr.14164) 21 : cephadm [INF] Deploying daemon alertmanager.smithi078 on smithi078 2024-09-21T11:52:06.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:06 smithi078 bash[20010]: audit 2024-09-21T11:52:05.361934+0000 mgr.smithi078.aqnwdz (mgr.14164) 22 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:52:06.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:06 smithi078 bash[20010]: audit 2024-09-21T11:52:05.361934+0000 mgr.smithi078.aqnwdz (mgr.14164) 22 : audit [DBG] from='client.14191 -' entity='client.admin' cmd=[{"prefix": "orch client-keyring set", "entity": "client.admin", "placement": "*", "mode": "0755", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:52:06.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:06 smithi078 bash[20010]: audit 2024-09-21T11:52:05.367028+0000 mon.smithi078 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:06.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:06 smithi078 bash[20010]: audit 2024-09-21T11:52:05.367028+0000 mon.smithi078 (mon.0) 131 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:06.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:06 smithi078 bash[20010]: cluster 2024-09-21T11:52:05.589024+0000 mgr.smithi078.aqnwdz (mgr.14164) 23 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:06.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:06 smithi078 bash[20010]: cluster 2024-09-21T11:52:05.589024+0000 mgr.smithi078.aqnwdz (mgr.14164) 23 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:06.967 INFO:tasks.cephadm:Writing (initial) conf and keyring to smithi195 2024-09-21T11:52:06.967 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:52:06.968 DEBUG:teuthology.orchestra.run.smithi195:> dd of=/etc/ceph/ceph.conf 2024-09-21T11:52:06.974 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:52:06.974 DEBUG:teuthology.orchestra.run.smithi195:> dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:52:07.021 INFO:tasks.cephadm:Adding host smithi195 to orchestrator... 2024-09-21T11:52:07.022 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph orch host add smithi195 2024-09-21T11:52:07.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:07 smithi078 bash[20010]: cluster 2024-09-21T11:52:07.589476+0000 mgr.smithi078.aqnwdz (mgr.14164) 24 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:07.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:07 smithi078 bash[20010]: cluster 2024-09-21T11:52:07.589476+0000 mgr.smithi078.aqnwdz (mgr.14164) 24 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:10.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:09 smithi078 bash[20010]: cluster 2024-09-21T11:52:09.589901+0000 mgr.smithi078.aqnwdz (mgr.14164) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:10.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:09 smithi078 bash[20010]: cluster 2024-09-21T11:52:09.589901+0000 mgr.smithi078.aqnwdz (mgr.14164) 25 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:11.776 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:52:11.944 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:11 smithi078 bash[20010]: cluster 2024-09-21T11:52:11.590332+0000 mgr.smithi078.aqnwdz (mgr.14164) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:11.944 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:11 smithi078 bash[20010]: cluster 2024-09-21T11:52:11.590332+0000 mgr.smithi078.aqnwdz (mgr.14164) 26 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:14.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:13 smithi078 bash[20010]: cluster 2024-09-21T11:52:13.590741+0000 mgr.smithi078.aqnwdz (mgr.14164) 27 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:14.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:13 smithi078 bash[20010]: cluster 2024-09-21T11:52:13.590741+0000 mgr.smithi078.aqnwdz (mgr.14164) 27 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:14.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:14 smithi078 bash[20010]: audit 2024-09-21T11:52:13.669632+0000 mgr.smithi078.aqnwdz (mgr.14164) 28 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi195", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:52:14.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:14 smithi078 bash[20010]: audit 2024-09-21T11:52:13.669632+0000 mgr.smithi078.aqnwdz (mgr.14164) 28 : audit [DBG] from='client.14193 -' entity='client.admin' cmd=[{"prefix": "orch host add", "hostname": "smithi195", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:52:15.342 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:15.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:16.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: cephadm 2024-09-21T11:52:14.693014+0000 mgr.smithi078.aqnwdz (mgr.14164) 29 : cephadm [INF] Deploying cephadm binary to smithi195 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: cephadm 2024-09-21T11:52:14.693014+0000 mgr.smithi078.aqnwdz (mgr.14164) 29 : cephadm [INF] Deploying cephadm binary to smithi195 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: cluster 2024-09-21T11:52:15.591049+0000 mgr.smithi078.aqnwdz (mgr.14164) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: cluster 2024-09-21T11:52:15.591049+0000 mgr.smithi078.aqnwdz (mgr.14164) 30 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: audit 2024-09-21T11:52:15.631239+0000 mon.smithi078 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: audit 2024-09-21T11:52:15.631239+0000 mon.smithi078 (mon.0) 132 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: audit 2024-09-21T11:52:15.636084+0000 mon.smithi078 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: audit 2024-09-21T11:52:15.636084+0000 mon.smithi078 (mon.0) 133 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: audit 2024-09-21T11:52:15.641248+0000 mon.smithi078 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: audit 2024-09-21T11:52:15.641248+0000 mon.smithi078 (mon.0) 134 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: audit 2024-09-21T11:52:15.645782+0000 mon.smithi078 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:16.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:15 smithi078 bash[20010]: audit 2024-09-21T11:52:15.645782+0000 mon.smithi078 (mon.0) 135 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.531 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: cephadm 2024-09-21T11:52:15.646666+0000 mgr.smithi078.aqnwdz (mgr.14164) 31 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: cephadm 2024-09-21T11:52:15.646666+0000 mgr.smithi078.aqnwdz (mgr.14164) 31 : cephadm [INF] Regenerating cephadm self-signed grafana TLS certificates 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.179311+0000 mon.smithi078 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.179311+0000 mon.smithi078 (mon.0) 136 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.189449+0000 mon.smithi078 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.189449+0000 mon.smithi078 (mon.0) 137 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.196602+0000 mon.smithi078 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.196602+0000 mon.smithi078 (mon.0) 138 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"} : dispatch 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.197429+0000 mgr.smithi078.aqnwdz (mgr.14164) 32 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.197429+0000 mgr.smithi078.aqnwdz (mgr.14164) 32 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-ssl-verify", "value": "false"}]: dispatch 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.203660+0000 mon.smithi078 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.203660+0000 mon.smithi078 (mon.0) 139 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.234970+0000 mon.smithi078 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.533 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.234970+0000 mon.smithi078 (mon.0) 140 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.533 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.237677+0000 mon.smithi078 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:17.533 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:17 smithi078 bash[20010]: audit 2024-09-21T11:52:16.237677+0000 mon.smithi078 (mon.0) 141 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:18.413 INFO:teuthology.orchestra.run.smithi078.stdout:Added host 'smithi195' with addr '172.21.15.195' 2024-09-21T11:52:18.460 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:18 smithi078 bash[20010]: cephadm 2024-09-21T11:52:16.855923+0000 mgr.smithi078.aqnwdz (mgr.14164) 33 : cephadm [INF] Deploying daemon grafana.smithi078 on smithi078 2024-09-21T11:52:18.460 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:18 smithi078 bash[20010]: cephadm 2024-09-21T11:52:16.855923+0000 mgr.smithi078.aqnwdz (mgr.14164) 33 : cephadm [INF] Deploying daemon grafana.smithi078 on smithi078 2024-09-21T11:52:18.461 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:18 smithi078 bash[20010]: cluster 2024-09-21T11:52:17.591455+0000 mgr.smithi078.aqnwdz (mgr.14164) 34 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:18.461 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:18 smithi078 bash[20010]: cluster 2024-09-21T11:52:17.591455+0000 mgr.smithi078.aqnwdz (mgr.14164) 34 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:19.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:19 smithi078 bash[20010]: audit 2024-09-21T11:52:18.411778+0000 mon.smithi078 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:19.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:19 smithi078 bash[20010]: audit 2024-09-21T11:52:18.411778+0000 mon.smithi078 (mon.0) 142 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:19.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:19 smithi078 bash[20010]: cephadm 2024-09-21T11:52:18.412543+0000 mgr.smithi078.aqnwdz (mgr.14164) 35 : cephadm [INF] Added host smithi195 2024-09-21T11:52:19.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:19 smithi078 bash[20010]: cephadm 2024-09-21T11:52:18.412543+0000 mgr.smithi078.aqnwdz (mgr.14164) 35 : cephadm [INF] Added host smithi195 2024-09-21T11:52:19.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:19 smithi078 bash[20010]: audit 2024-09-21T11:52:18.888907+0000 mon.smithi078 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:19.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:19 smithi078 bash[20010]: audit 2024-09-21T11:52:18.888907+0000 mon.smithi078 (mon.0) 143 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:20.398 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph orch host ls --format=json 2024-09-21T11:52:20.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:20 smithi078 bash[20010]: cluster 2024-09-21T11:52:19.591949+0000 mgr.smithi078.aqnwdz (mgr.14164) 36 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:20.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:20 smithi078 bash[20010]: cluster 2024-09-21T11:52:19.591949+0000 mgr.smithi078.aqnwdz (mgr.14164) 36 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:22.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:21 smithi078 bash[20010]: cluster 2024-09-21T11:52:21.592498+0000 mgr.smithi078.aqnwdz (mgr.14164) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:22.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:21 smithi078 bash[20010]: cluster 2024-09-21T11:52:21.592498+0000 mgr.smithi078.aqnwdz (mgr.14164) 37 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:24.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:23 smithi078 bash[20010]: cluster 2024-09-21T11:52:23.592916+0000 mgr.smithi078.aqnwdz (mgr.14164) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:24.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:23 smithi078 bash[20010]: cluster 2024-09-21T11:52:23.592916+0000 mgr.smithi078.aqnwdz (mgr.14164) 38 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:25.177 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:52:25.967 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:25 smithi078 bash[20010]: cluster 2024-09-21T11:52:25.593378+0000 mgr.smithi078.aqnwdz (mgr.14164) 39 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:25.967 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:25 smithi078 bash[20010]: cluster 2024-09-21T11:52:25.593378+0000 mgr.smithi078.aqnwdz (mgr.14164) 39 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:28.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:27 smithi078 bash[20010]: cluster 2024-09-21T11:52:27.593776+0000 mgr.smithi078.aqnwdz (mgr.14164) 40 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:28.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:27 smithi078 bash[20010]: cluster 2024-09-21T11:52:27.593776+0000 mgr.smithi078.aqnwdz (mgr.14164) 40 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:29 smithi078 bash[20010]: cluster 2024-09-21T11:52:29.594218+0000 mgr.smithi078.aqnwdz (mgr.14164) 41 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:29 smithi078 bash[20010]: cluster 2024-09-21T11:52:29.594218+0000 mgr.smithi078.aqnwdz (mgr.14164) 41 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:30.777 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:52:30.777 INFO:teuthology.orchestra.run.smithi078.stdout:[{"addr": "172.21.15.78", "hostname": "smithi078", "labels": [], "status": ""}, {"addr": "172.21.15.195", "hostname": "smithi195", "labels": [], "status": ""}] 2024-09-21T11:52:32.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:31 smithi078 bash[20010]: audit 2024-09-21T11:52:30.775744+0000 mgr.smithi078.aqnwdz (mgr.14164) 42 : audit [DBG] from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:52:32.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:31 smithi078 bash[20010]: audit 2024-09-21T11:52:30.775744+0000 mgr.smithi078.aqnwdz (mgr.14164) 42 : audit [DBG] from='client.14195 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:52:32.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:31 smithi078 bash[20010]: cluster 2024-09-21T11:52:31.594672+0000 mgr.smithi078.aqnwdz (mgr.14164) 43 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:32.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:31 smithi078 bash[20010]: cluster 2024-09-21T11:52:31.594672+0000 mgr.smithi078.aqnwdz (mgr.14164) 43 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:32.226 INFO:tasks.cephadm:Setting crush tunables to default 2024-09-21T11:52:32.227 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd crush tunables default 2024-09-21T11:52:33.783 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:33 smithi078 bash[20010]: cluster 2024-09-21T11:52:33.595161+0000 mgr.smithi078.aqnwdz (mgr.14164) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:33.784 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:33 smithi078 bash[20010]: cluster 2024-09-21T11:52:33.595161+0000 mgr.smithi078.aqnwdz (mgr.14164) 44 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:35.324 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:35 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:35.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:35 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: cluster 2024-09-21T11:52:35.595482+0000 mgr.smithi078.aqnwdz (mgr.14164) 45 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: cluster 2024-09-21T11:52:35.595482+0000 mgr.smithi078.aqnwdz (mgr.14164) 45 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.603026+0000 mon.smithi078 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.603026+0000 mon.smithi078 (mon.0) 144 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.605511+0000 mon.smithi078 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.605511+0000 mon.smithi078 (mon.0) 145 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.607943+0000 mon.smithi078 (mon.0) 146 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.607943+0000 mon.smithi078 (mon.0) 146 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.610081+0000 mon.smithi078 (mon.0) 147 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.607 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.610081+0000 mon.smithi078 (mon.0) 147 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.608 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.612480+0000 mon.smithi078 (mon.0) 148 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.608 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.612480+0000 mon.smithi078 (mon.0) 148 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.608 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.614902+0000 mon.smithi078 (mon.0) 149 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.608 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.614902+0000 mon.smithi078 (mon.0) 149 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.608 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.617424+0000 mon.smithi078 (mon.0) 150 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.608 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.617424+0000 mon.smithi078 (mon.0) 150 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.608 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.619173+0000 mon.smithi078 (mon.0) 151 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:36.608 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:36 smithi078 bash[20010]: audit 2024-09-21T11:52:35.619173+0000 mon.smithi078 (mon.0) 151 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:37.794 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:37 smithi078 bash[20010]: cephadm 2024-09-21T11:52:35.862343+0000 mgr.smithi078.aqnwdz (mgr.14164) 46 : cephadm [INF] Deploying daemon prometheus.smithi078 on smithi078 2024-09-21T11:52:37.794 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:37 smithi078 bash[20010]: cephadm 2024-09-21T11:52:35.862343+0000 mgr.smithi078.aqnwdz (mgr.14164) 46 : cephadm [INF] Deploying daemon prometheus.smithi078 on smithi078 2024-09-21T11:52:38.855 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:38 smithi078 bash[20010]: cluster 2024-09-21T11:52:37.595842+0000 mgr.smithi078.aqnwdz (mgr.14164) 47 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:38.855 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:38 smithi078 bash[20010]: cluster 2024-09-21T11:52:37.595842+0000 mgr.smithi078.aqnwdz (mgr.14164) 47 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:39.020 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:52:39.902 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:39 smithi078 bash[20010]: audit 2024-09-21T11:52:38.896707+0000 mon.smithi078 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:40.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:39 smithi078 bash[20010]: audit 2024-09-21T11:52:38.896707+0000 mon.smithi078 (mon.0) 152 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:40.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:39 smithi078 bash[20010]: cluster 2024-09-21T11:52:39.596213+0000 mgr.smithi078.aqnwdz (mgr.14164) 48 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:40.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:39 smithi078 bash[20010]: cluster 2024-09-21T11:52:39.596213+0000 mgr.smithi078.aqnwdz (mgr.14164) 48 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:41.884 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:41 smithi078 bash[20010]: cluster 2024-09-21T11:52:41.596582+0000 mgr.smithi078.aqnwdz (mgr.14164) 49 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:41.884 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:41 smithi078 bash[20010]: cluster 2024-09-21T11:52:41.596582+0000 mgr.smithi078.aqnwdz (mgr.14164) 49 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:42.788 INFO:teuthology.orchestra.run.smithi078.stderr:adjusted tunables profile to default 2024-09-21T11:52:43.018 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:42 smithi078 bash[20010]: audit 2024-09-21T11:52:42.736699+0000 mon.smithi078 (mon.0) 153 : audit [INF] from='client.? 172.21.15.78:0/3115239008' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-21T11:52:43.018 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:42 smithi078 bash[20010]: audit 2024-09-21T11:52:42.736699+0000 mon.smithi078 (mon.0) 153 : audit [INF] from='client.? 172.21.15.78:0/3115239008' entity='client.admin' cmd={"prefix": "osd crush tunables", "profile": "default"} : dispatch 2024-09-21T11:52:44.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:43 smithi078 bash[20010]: audit 2024-09-21T11:52:42.787949+0000 mon.smithi078 (mon.0) 154 : audit [INF] from='client.? 172.21.15.78:0/3115239008' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-21T11:52:44.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:43 smithi078 bash[20010]: audit 2024-09-21T11:52:42.787949+0000 mon.smithi078 (mon.0) 154 : audit [INF] from='client.? 172.21.15.78:0/3115239008' entity='client.admin' cmd='[{"prefix": "osd crush tunables", "profile": "default"}]': finished 2024-09-21T11:52:44.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:43 smithi078 bash[20010]: cluster 2024-09-21T11:52:42.792387+0000 mon.smithi078 (mon.0) 155 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-21T11:52:44.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:43 smithi078 bash[20010]: cluster 2024-09-21T11:52:42.792387+0000 mon.smithi078 (mon.0) 155 : cluster [DBG] osdmap e4: 0 total, 0 up, 0 in 2024-09-21T11:52:44.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:43 smithi078 bash[20010]: cluster 2024-09-21T11:52:43.597022+0000 mgr.smithi078.aqnwdz (mgr.14164) 50 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:44.219 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:43 smithi078 bash[20010]: cluster 2024-09-21T11:52:43.597022+0000 mgr.smithi078.aqnwdz (mgr.14164) 50 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:44.943 INFO:tasks.cephadm:Adding mon.smithi078 on smithi078 2024-09-21T11:52:44.943 INFO:tasks.cephadm:Adding mon.smithi195 on smithi195 2024-09-21T11:52:44.943 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph orch apply mon '2;smithi078:172.21.15.78=smithi078;smithi195:172.21.15.195=smithi195' 2024-09-21T11:52:45.975 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:45 smithi078 bash[20010]: cluster 2024-09-21T11:52:45.597537+0000 mgr.smithi078.aqnwdz (mgr.14164) 51 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:45.975 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:45 smithi078 bash[20010]: cluster 2024-09-21T11:52:45.597537+0000 mgr.smithi078.aqnwdz (mgr.14164) 51 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:46.168 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:52:47.215 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:52:47.712 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:47 smithi078 bash[20010]: cluster 2024-09-21T11:52:47.597963+0000 mgr.smithi078.aqnwdz (mgr.14164) 52 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:47.712 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:47 smithi078 bash[20010]: cluster 2024-09-21T11:52:47.597963+0000 mgr.smithi078.aqnwdz (mgr.14164) 52 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:48.571 INFO:teuthology.orchestra.run.smithi195.stdout:Scheduled mon update... 2024-09-21T11:52:49.143 DEBUG:teuthology.orchestra.run.smithi195:mon.smithi195> sudo journalctl -f -n 0 -u ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi195.service 2024-09-21T11:52:49.145 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T11:52:49.145 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T11:52:49.646 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:49 smithi078 bash[20010]: audit 2024-09-21T11:52:48.559037+0000 mgr.smithi078.aqnwdz (mgr.14164) 53 : audit [DBG] from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi078:172.21.15.78=smithi078;smithi195:172.21.15.195=smithi195", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:52:49.646 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:49 smithi078 bash[20010]: audit 2024-09-21T11:52:48.559037+0000 mgr.smithi078.aqnwdz (mgr.14164) 53 : audit [DBG] from='client.14199 -' entity='client.admin' cmd=[{"prefix": "orch apply", "service_type": "mon", "placement": "2;smithi078:172.21.15.78=smithi078;smithi195:172.21.15.195=smithi195", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:52:49.646 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:49 smithi078 bash[20010]: cephadm 2024-09-21T11:52:48.564047+0000 mgr.smithi078.aqnwdz (mgr.14164) 54 : cephadm [INF] Saving service mon spec with placement smithi078:172.21.15.78=smithi078;smithi195:172.21.15.195=smithi195;count:2 2024-09-21T11:52:49.646 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:49 smithi078 bash[20010]: cephadm 2024-09-21T11:52:48.564047+0000 mgr.smithi078.aqnwdz (mgr.14164) 54 : cephadm [INF] Saving service mon spec with placement smithi078:172.21.15.78=smithi078;smithi195:172.21.15.195=smithi195;count:2 2024-09-21T11:52:49.646 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:49 smithi078 bash[20010]: audit 2024-09-21T11:52:48.569305+0000 mon.smithi078 (mon.0) 156 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:49.646 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:49 smithi078 bash[20010]: audit 2024-09-21T11:52:48.569305+0000 mon.smithi078 (mon.0) 156 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:50.414 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:52:50.781 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:50 smithi078 bash[20010]: cluster 2024-09-21T11:52:49.598309+0000 mgr.smithi078.aqnwdz (mgr.14164) 55 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:50.781 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:50 smithi078 bash[20010]: cluster 2024-09-21T11:52:49.598309+0000 mgr.smithi078.aqnwdz (mgr.14164) 55 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:51.461 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:52:51.963 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:51 smithi078 bash[20010]: cluster 2024-09-21T11:52:51.598682+0000 mgr.smithi078.aqnwdz (mgr.14164) 56 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:51.963 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:51 smithi078 bash[20010]: cluster 2024-09-21T11:52:51.598682+0000 mgr.smithi078.aqnwdz (mgr.14164) 56 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:53.021 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-09-21T11:52:53.021 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-09-21T11:52:53.021 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","modified":"2024-09-21T11:50:11.698065Z","created":"2024-09-21T11:50:11.698065Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi078","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:3300","nonce":0},{"type":"v1","addr":"172.21.15.78:6789","nonce":0}]},"addr":"172.21.15.78:6789/0","public_addr":"172.21.15.78:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T11:52:53.148 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:53 smithi078 bash[20010]: audit 2024-09-21T11:52:53.019731+0000 mon.smithi078 (mon.0) 157 : audit [DBG] from='client.? 172.21.15.195:0/21208674' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:52:53.148 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:53 smithi078 bash[20010]: audit 2024-09-21T11:52:53.019731+0000 mon.smithi078 (mon.0) 157 : audit [DBG] from='client.? 172.21.15.195:0/21208674' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:52:53.668 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:53 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:53.919 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:53 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:52:54.188 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:54 smithi078 bash[20010]: cluster 2024-09-21T11:52:53.599093+0000 mgr.smithi078.aqnwdz (mgr.14164) 57 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:54.188 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:54 smithi078 bash[20010]: cluster 2024-09-21T11:52:53.599093+0000 mgr.smithi078.aqnwdz (mgr.14164) 57 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:52:54.596 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T11:52:54.596 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T11:52:55.217 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:55 smithi078 bash[20010]: audit 2024-09-21T11:52:54.075288+0000 mon.smithi078 (mon.0) 158 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:55.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:55 smithi078 bash[20010]: audit 2024-09-21T11:52:54.075288+0000 mon.smithi078 (mon.0) 158 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:55.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:55 smithi078 bash[20010]: audit 2024-09-21T11:52:54.077899+0000 mon.smithi078 (mon.0) 159 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:55.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:55 smithi078 bash[20010]: audit 2024-09-21T11:52:54.077899+0000 mon.smithi078 (mon.0) 159 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:55.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:55 smithi078 bash[20010]: audit 2024-09-21T11:52:54.080419+0000 mon.smithi078 (mon.0) 160 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:55.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:55 smithi078 bash[20010]: audit 2024-09-21T11:52:54.080419+0000 mon.smithi078 (mon.0) 160 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:52:55.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:55 smithi078 bash[20010]: audit 2024-09-21T11:52:54.082850+0000 mon.smithi078 (mon.0) 161 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-21T11:52:55.218 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:55 smithi078 bash[20010]: audit 2024-09-21T11:52:54.082850+0000 mon.smithi078 (mon.0) 161 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr module enable", "module": "prometheus"} : dispatch 2024-09-21T11:52:55.811 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:52:56.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:56 smithi078 bash[20010]: audit 2024-09-21T11:52:55.081989+0000 mon.smithi078 (mon.0) 162 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-21T11:52:56.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:56 smithi078 bash[20010]: audit 2024-09-21T11:52:55.081989+0000 mon.smithi078 (mon.0) 162 : audit [INF] from='mgr.14164 172.21.15.78:0/1310934708' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "mgr module enable", "module": "prometheus"}]': finished 2024-09-21T11:52:56.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:56 smithi078 bash[20010]: cluster 2024-09-21T11:52:55.088099+0000 mon.smithi078 (mon.0) 163 : cluster [DBG] mgrmap e15: smithi078.aqnwdz(active, since 81s) 2024-09-21T11:52:56.336 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:56 smithi078 bash[20010]: cluster 2024-09-21T11:52:55.088099+0000 mon.smithi078 (mon.0) 163 : cluster [DBG] mgrmap e15: smithi078.aqnwdz(active, since 81s) 2024-09-21T11:52:56.857 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:52:58.323 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-09-21T11:52:58.323 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-09-21T11:52:58.323 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","modified":"2024-09-21T11:50:11.698065Z","created":"2024-09-21T11:50:11.698065Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi078","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:3300","nonce":0},{"type":"v1","addr":"172.21.15.78:6789","nonce":0}]},"addr":"172.21.15.78:6789/0","public_addr":"172.21.15.78:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T11:52:58.419 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:58 smithi078 bash[20010]: audit 2024-09-21T11:52:58.321735+0000 mon.smithi078 (mon.0) 164 : audit [DBG] from='client.? 172.21.15.195:0/2502099593' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:52:58.419 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:52:58 smithi078 bash[20010]: audit 2024-09-21T11:52:58.321735+0000 mon.smithi078 (mon.0) 164 : audit [DBG] from='client.? 172.21.15.195:0/2502099593' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:52:59.869 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T11:52:59.869 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T11:53:01.098 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:53:01.582 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.381068+0000 mon.smithi078 (mon.0) 165 : cluster [INF] Active manager daemon smithi078.aqnwdz restarted 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.381068+0000 mon.smithi078 (mon.0) 165 : cluster [INF] Active manager daemon smithi078.aqnwdz restarted 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.381563+0000 mon.smithi078 (mon.0) 166 : cluster [INF] Activating manager daemon smithi078.aqnwdz 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.381563+0000 mon.smithi078 (mon.0) 166 : cluster [INF] Activating manager daemon smithi078.aqnwdz 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.388525+0000 mon.smithi078 (mon.0) 167 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.388525+0000 mon.smithi078 (mon.0) 167 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.388791+0000 mon.smithi078 (mon.0) 168 : cluster [DBG] mgrmap e16: smithi078.aqnwdz(active, starting, since 0.00742838s) 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.388791+0000 mon.smithi078 (mon.0) 168 : cluster [DBG] mgrmap e16: smithi078.aqnwdz(active, starting, since 0.00742838s) 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.390232+0000 mon.smithi078 (mon.0) 169 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.390232+0000 mon.smithi078 (mon.0) 169 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.392740+0000 mon.smithi078 (mon.0) 170 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi078.aqnwdz", "id": "smithi078.aqnwdz"} : dispatch 2024-09-21T11:53:01.583 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.392740+0000 mon.smithi078 (mon.0) 170 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi078.aqnwdz", "id": "smithi078.aqnwdz"} : dispatch 2024-09-21T11:53:01.584 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.393636+0000 mon.smithi078 (mon.0) 171 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T11:53:01.584 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.393636+0000 mon.smithi078 (mon.0) 171 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mds metadata"} : dispatch 2024-09-21T11:53:01.584 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.393810+0000 mon.smithi078 (mon.0) 172 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T11:53:01.584 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.393810+0000 mon.smithi078 (mon.0) 172 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata"} : dispatch 2024-09-21T11:53:01.584 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.393983+0000 mon.smithi078 (mon.0) 173 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T11:53:01.584 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: audit 2024-09-21T11:53:01.393983+0000 mon.smithi078 (mon.0) 173 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata"} : dispatch 2024-09-21T11:53:01.584 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.417864+0000 mon.smithi078 (mon.0) 174 : cluster [INF] Manager daemon smithi078.aqnwdz is now available 2024-09-21T11:53:01.584 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:01.417864+0000 mon.smithi078 (mon.0) 174 : cluster [INF] Manager daemon smithi078.aqnwdz is now available 2024-09-21T11:53:02.144 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:53:02.625 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.703206+0000 mon.smithi078 (mon.0) 175 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:53:02.625 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.703206+0000 mon.smithi078 (mon.0) 175 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:53:02.625 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.719922+0000 mon.smithi078 (mon.0) 176 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.719922+0000 mon.smithi078 (mon.0) 176 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.722886+0000 mon.smithi078 (mon.0) 177 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.722886+0000 mon.smithi078 (mon.0) 177 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.728821+0000 mon.smithi078 (mon.0) 178 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.728821+0000 mon.smithi078 (mon.0) 178 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.738538+0000 mon.smithi078 (mon.0) 179 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/mirror_snapshot_schedule"} : dispatch 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.738538+0000 mon.smithi078 (mon.0) 179 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/mirror_snapshot_schedule"} : dispatch 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.742914+0000 mon.smithi078 (mon.0) 180 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/trash_purge_schedule"} : dispatch 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: audit 2024-09-21T11:53:01.742914+0000 mon.smithi078 (mon.0) 180 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config rm","who":"mgr","name":"mgr/rbd_support/smithi078.aqnwdz/trash_purge_schedule"} : dispatch 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: cluster 2024-09-21T11:53:02.391040+0000 mon.smithi078 (mon.0) 181 : cluster [DBG] mgrmap e17: smithi078.aqnwdz(active, since 1.00969s) 2024-09-21T11:53:02.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:02 smithi078 bash[20010]: cluster 2024-09-21T11:53:02.391040+0000 mon.smithi078 (mon.0) 181 : cluster [DBG] mgrmap e17: smithi078.aqnwdz(active, since 1.00969s) 2024-09-21T11:53:03.533 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-09-21T11:53:03.533 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-09-21T11:53:03.534 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","modified":"2024-09-21T11:50:11.698065Z","created":"2024-09-21T11:50:11.698065Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi078","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:3300","nonce":0},{"type":"v1","addr":"172.21.15.78:6789","nonce":0}]},"addr":"172.21.15.78:6789/0","public_addr":"172.21.15.78:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T11:53:03.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.370023+0000 mgr.smithi078.aqnwdz (mgr.14203) 1 : cephadm [INF] [21/Sep/2024:11:53:02] ENGINE Bus STARTING 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.370023+0000 mgr.smithi078.aqnwdz (mgr.14203) 1 : cephadm [INF] [21/Sep/2024:11:53:02] ENGINE Bus STARTING 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: audit 2024-09-21T11:53:02.392045+0000 mgr.smithi078.aqnwdz (mgr.14203) 2 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: audit 2024-09-21T11:53:02.392045+0000 mgr.smithi078.aqnwdz (mgr.14203) 2 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: audit 2024-09-21T11:53:02.471948+0000 mon.smithi078 (mon.0) 182 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: audit 2024-09-21T11:53:02.471948+0000 mon.smithi078 (mon.0) 182 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.488040+0000 mgr.smithi078.aqnwdz (mgr.14203) 3 : cephadm [INF] [21/Sep/2024:11:53:02] ENGINE Serving on https://172.21.15.78:7150 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.488040+0000 mgr.smithi078.aqnwdz (mgr.14203) 3 : cephadm [INF] [21/Sep/2024:11:53:02] ENGINE Serving on https://172.21.15.78:7150 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.490576+0000 mgr.smithi078.aqnwdz (mgr.14203) 4 : cephadm [ERR] [21/Sep/2024:11:53:02] ENGINE Error in HTTPServer.serve 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: Traceback (most recent call last): 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: self._connections.run(self.expiration_interval) 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: self._run(expiration_interval) 2024-09-21T11:53:03.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: s = self.context.wrap_socket( 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: return self.sslsocket_class._create( 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: self.do_handshake() 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: self._sslobj.do_handshake() 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.490576+0000 mgr.smithi078.aqnwdz (mgr.14203) 4 : cephadm [ERR] [21/Sep/2024:11:53:02] ENGINE Error in HTTPServer.serve 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: Traceback (most recent call last): 2024-09-21T11:53:03.689 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/server.py", line 1823, in serve 2024-09-21T11:53:03.690 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: self._connections.run(self.expiration_interval) 2024-09-21T11:53:03.690 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 203, in run 2024-09-21T11:53:03.690 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: self._run(expiration_interval) 2024-09-21T11:53:03.690 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 246, in _run 2024-09-21T11:53:03.690 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: new_conn = self._from_server_socket(self.server.socket) 2024-09-21T11:53:03.690 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/connections.py", line 300, in _from_server_socket 2024-09-21T11:53:03.690 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: s, ssl_env = self.server.ssl_adapter.wrap(s) 2024-09-21T11:53:03.690 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib/python3.9/site-packages/cheroot/ssl/builtin.py", line 277, in wrap 2024-09-21T11:53:03.690 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: s = self.context.wrap_socket( 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 501, in wrap_socket 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: return self.sslsocket_class._create( 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1074, in _create 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: self.do_handshake() 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: File "/lib64/python3.9/ssl.py", line 1343, in do_handshake 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: self._sslobj.do_handshake() 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: ssl.SSLZeroReturnError: TLS/SSL connection has been closed (EOF) (_ssl.c:1133) 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.589400+0000 mgr.smithi078.aqnwdz (mgr.14203) 5 : cephadm [INF] [21/Sep/2024:11:53:02] ENGINE Serving on http://172.21.15.78:8765 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.589400+0000 mgr.smithi078.aqnwdz (mgr.14203) 5 : cephadm [INF] [21/Sep/2024:11:53:02] ENGINE Serving on http://172.21.15.78:8765 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.589586+0000 mgr.smithi078.aqnwdz (mgr.14203) 6 : cephadm [INF] [21/Sep/2024:11:53:02] ENGINE Bus STARTED 2024-09-21T11:53:03.691 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:03 smithi078 bash[20010]: cephadm 2024-09-21T11:53:02.589586+0000 mgr.smithi078.aqnwdz (mgr.14203) 6 : cephadm [INF] [21/Sep/2024:11:53:02] ENGINE Bus STARTED 2024-09-21T11:53:04.719 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:04 smithi078 bash[20010]: cluster 2024-09-21T11:53:03.478033+0000 mon.smithi078 (mon.0) 183 : cluster [DBG] mgrmap e18: smithi078.aqnwdz(active, since 2s) 2024-09-21T11:53:04.720 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:04 smithi078 bash[20010]: cluster 2024-09-21T11:53:03.478033+0000 mon.smithi078 (mon.0) 183 : cluster [DBG] mgrmap e18: smithi078.aqnwdz(active, since 2s) 2024-09-21T11:53:04.720 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:04 smithi078 bash[20010]: audit 2024-09-21T11:53:03.532000+0000 mon.smithi078 (mon.0) 184 : audit [DBG] from='client.? 172.21.15.195:0/3492059497' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:04.720 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:04 smithi078 bash[20010]: audit 2024-09-21T11:53:03.532000+0000 mon.smithi078 (mon.0) 184 : audit [DBG] from='client.? 172.21.15.195:0/3492059497' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:05.100 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T11:53:05.100 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T11:53:05.828 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:05 smithi078 bash[20010]: audit 2024-09-21T11:53:04.540632+0000 mon.smithi078 (mon.0) 185 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:05.828 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:05 smithi078 bash[20010]: audit 2024-09-21T11:53:04.540632+0000 mon.smithi078 (mon.0) 185 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:06.308 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:53:06.872 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:06 smithi078 bash[20010]: audit 2024-09-21T11:53:05.666185+0000 mon.smithi078 (mon.0) 186 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:06.872 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:06 smithi078 bash[20010]: audit 2024-09-21T11:53:05.666185+0000 mon.smithi078 (mon.0) 186 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:07.347 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /etc/ceph/ceph.conf 2024-09-21T11:53:09.102 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-09-21T11:53:09.102 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-09-21T11:53:09.102 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","modified":"2024-09-21T11:50:11.698065Z","created":"2024-09-21T11:50:11.698065Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi078","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:3300","nonce":0},{"type":"v1","addr":"172.21.15.78:6789","nonce":0}]},"addr":"172.21.15.78:6789/0","public_addr":"172.21.15.78:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T11:53:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:08 smithi078 bash[20010]: audit 2024-09-21T11:53:07.778523+0000 mon.smithi078 (mon.0) 187 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:08 smithi078 bash[20010]: audit 2024-09-21T11:53:07.778523+0000 mon.smithi078 (mon.0) 187 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:08 smithi078 bash[20010]: audit 2024-09-21T11:53:07.781271+0000 mon.smithi078 (mon.0) 188 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:08 smithi078 bash[20010]: audit 2024-09-21T11:53:07.781271+0000 mon.smithi078 (mon.0) 188 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:10.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:09 smithi078 bash[20010]: audit 2024-09-21T11:53:08.859969+0000 mon.smithi078 (mon.0) 189 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:10.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:09 smithi078 bash[20010]: audit 2024-09-21T11:53:08.859969+0000 mon.smithi078 (mon.0) 189 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:10.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:09 smithi078 bash[20010]: audit 2024-09-21T11:53:08.864331+0000 mon.smithi078 (mon.0) 190 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:10.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:09 smithi078 bash[20010]: audit 2024-09-21T11:53:08.864331+0000 mon.smithi078 (mon.0) 190 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:10.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:09 smithi078 bash[20010]: audit 2024-09-21T11:53:08.865869+0000 mon.smithi078 (mon.0) 191 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi078", "name": "osd_memory_target"} : dispatch 2024-09-21T11:53:10.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:09 smithi078 bash[20010]: audit 2024-09-21T11:53:08.865869+0000 mon.smithi078 (mon.0) 191 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi078", "name": "osd_memory_target"} : dispatch 2024-09-21T11:53:10.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:09 smithi078 bash[20010]: audit 2024-09-21T11:53:09.100510+0000 mon.smithi078 (mon.0) 192 : audit [DBG] from='client.? 172.21.15.195:0/1866871039' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:10.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:09 smithi078 bash[20010]: audit 2024-09-21T11:53:09.100510+0000 mon.smithi078 (mon.0) 192 : audit [DBG] from='client.? 172.21.15.195:0/1866871039' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:10.898 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T11:53:10.898 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T11:53:13.054 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.153483+0000 mon.smithi078 (mon.0) 193 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.153483+0000 mon.smithi078 (mon.0) 193 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.158690+0000 mon.smithi078 (mon.0) 194 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.158690+0000 mon.smithi078 (mon.0) 194 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.165725+0000 mon.smithi078 (mon.0) 195 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.165725+0000 mon.smithi078 (mon.0) 195 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.171050+0000 mon.smithi078 (mon.0) 196 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.171050+0000 mon.smithi078 (mon.0) 196 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.172661+0000 mon.smithi078 (mon.0) 197 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi195", "name": "osd_memory_target"} : dispatch 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.172661+0000 mon.smithi078 (mon.0) 197 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi195", "name": "osd_memory_target"} : dispatch 2024-09-21T11:53:13.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.174804+0000 mon.smithi078 (mon.0) 198 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.174804+0000 mon.smithi078 (mon.0) 198 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.176632+0000 mon.smithi078 (mon.0) 199 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.176632+0000 mon.smithi078 (mon.0) 199 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.579848+0000 mon.smithi078 (mon.0) 200 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.579848+0000 mon.smithi078 (mon.0) 200 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.586912+0000 mon.smithi078 (mon.0) 201 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.586912+0000 mon.smithi078 (mon.0) 201 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.594544+0000 mon.smithi078 (mon.0) 202 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.594544+0000 mon.smithi078 (mon.0) 202 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.601254+0000 mon.smithi078 (mon.0) 203 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.601254+0000 mon.smithi078 (mon.0) 203 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.609073+0000 mon.smithi078 (mon.0) 204 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.609073+0000 mon.smithi078 (mon.0) 204 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:13.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.610893+0000 mon.smithi078 (mon.0) 205 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:53:13.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.610893+0000 mon.smithi078 (mon.0) 205 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:53:13.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.614664+0000 mon.smithi078 (mon.0) 206 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T11:53:13.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.614664+0000 mon.smithi078 (mon.0) 206 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T11:53:13.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.618722+0000 mon.smithi078 (mon.0) 207 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:13.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:13 smithi078 bash[20010]: audit 2024-09-21T11:53:12.618722+0000 mon.smithi078 (mon.0) 207 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:14.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.179497+0000 mgr.smithi078.aqnwdz (mgr.14203) 7 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.conf 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.179497+0000 mgr.smithi078.aqnwdz (mgr.14203) 7 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.conf 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.179997+0000 mgr.smithi078.aqnwdz (mgr.14203) 8 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.179997+0000 mgr.smithi078.aqnwdz (mgr.14203) 8 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.311459+0000 mgr.smithi078.aqnwdz (mgr.14203) 9 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.311459+0000 mgr.smithi078.aqnwdz (mgr.14203) 9 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.311766+0000 mgr.smithi078.aqnwdz (mgr.14203) 10 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.311766+0000 mgr.smithi078.aqnwdz (mgr.14203) 10 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.401619+0000 mgr.smithi078.aqnwdz (mgr.14203) 11 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.401619+0000 mgr.smithi078.aqnwdz (mgr.14203) 11 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.401917+0000 mgr.smithi078.aqnwdz (mgr.14203) 12 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.401917+0000 mgr.smithi078.aqnwdz (mgr.14203) 12 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.486018+0000 mgr.smithi078.aqnwdz (mgr.14203) 13 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T11:53:14.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.486018+0000 mgr.smithi078.aqnwdz (mgr.14203) 13 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T11:53:14.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.486293+0000 mgr.smithi078.aqnwdz (mgr.14203) 14 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T11:53:14.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.486293+0000 mgr.smithi078.aqnwdz (mgr.14203) 14 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T11:53:14.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.620364+0000 mgr.smithi078.aqnwdz (mgr.14203) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi195 on smithi195 2024-09-21T11:53:14.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:14 smithi078 bash[20010]: cephadm 2024-09-21T11:53:12.620364+0000 mgr.smithi078.aqnwdz (mgr.14203) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi195 on smithi195 2024-09-21T11:53:14.880 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-09-21T11:53:14.880 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-09-21T11:53:14.880 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","modified":"2024-09-21T11:50:11.698065Z","created":"2024-09-21T11:50:11.698065Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi078","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:3300","nonce":0},{"type":"v1","addr":"172.21.15.78:6789","nonce":0}]},"addr":"172.21.15.78:6789/0","public_addr":"172.21.15.78:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T11:53:15.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:15 smithi078 bash[20010]: audit 2024-09-21T11:53:14.878267+0000 mon.smithi078 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.195:0/3239563165' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:15.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:15 smithi078 bash[20010]: audit 2024-09-21T11:53:14.878267+0000 mon.smithi078 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.195:0/3239563165' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:16.622 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T11:53:16.623 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T11:53:17.843 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:18.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.707160+0000 mon.smithi078 (mon.0) 209 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.707160+0000 mon.smithi078 (mon.0) 209 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.715280+0000 mon.smithi078 (mon.0) 210 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.715280+0000 mon.smithi078 (mon.0) 210 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.721947+0000 mon.smithi078 (mon.0) 211 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.721947+0000 mon.smithi078 (mon.0) 211 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.723794+0000 mon.smithi078 (mon.0) 212 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.723794+0000 mon.smithi078 (mon.0) 212 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.728920+0000 mon.smithi078 (mon.0) 213 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.728920+0000 mon.smithi078 (mon.0) 213 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.733053+0000 mon.smithi078 (mon.0) 214 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.733053+0000 mon.smithi078 (mon.0) 214 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.734723+0000 mon.smithi078 (mon.0) 215 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.734723+0000 mon.smithi078 (mon.0) 215 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T11:53:18.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.740470+0000 mon.smithi078 (mon.0) 216 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:18.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: audit 2024-09-21T11:53:16.740470+0000 mon.smithi078 (mon.0) 216 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:18.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: cephadm 2024-09-21T11:53:16.745514+0000 mgr.smithi078.aqnwdz (mgr.14203) 16 : cephadm [INF] Deploying daemon crash.smithi195 on smithi195 2024-09-21T11:53:18.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:17 smithi078 bash[20010]: cephadm 2024-09-21T11:53:16.745514+0000 mgr.smithi078.aqnwdz (mgr.14203) 16 : cephadm [INF] Deploying daemon crash.smithi195 on smithi195 2024-09-21T11:53:20.111 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-09-21T11:53:20.111 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","modified":"2024-09-21T11:50:11.698065Z","created":"2024-09-21T11:50:11.698065Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi078","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:3300","nonce":0},{"type":"v1","addr":"172.21.15.78:6789","nonce":0}]},"addr":"172.21.15.78:6789/0","public_addr":"172.21.15.78:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T11:53:20.111 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-09-21T11:53:20.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:20 smithi078 bash[20010]: audit 2024-09-21T11:53:20.109600+0000 mon.smithi078 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.195:0/2276055726' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:20.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:20 smithi078 bash[20010]: audit 2024-09-21T11:53:20.109600+0000 mon.smithi078 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.195:0/2276055726' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:21.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: audit 2024-09-21T11:53:20.540460+0000 mon.smithi078 (mon.0) 218 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:21.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: audit 2024-09-21T11:53:20.540460+0000 mon.smithi078 (mon.0) 218 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:21.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: audit 2024-09-21T11:53:20.549054+0000 mon.smithi078 (mon.0) 219 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:21.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: audit 2024-09-21T11:53:20.549054+0000 mon.smithi078 (mon.0) 219 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:21.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: audit 2024-09-21T11:53:20.557896+0000 mon.smithi078 (mon.0) 220 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:21.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: audit 2024-09-21T11:53:20.557896+0000 mon.smithi078 (mon.0) 220 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:21.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: audit 2024-09-21T11:53:20.566386+0000 mon.smithi078 (mon.0) 221 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:21.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: audit 2024-09-21T11:53:20.566386+0000 mon.smithi078 (mon.0) 221 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:21.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: cephadm 2024-09-21T11:53:20.569518+0000 mgr.smithi078.aqnwdz (mgr.14203) 17 : cephadm [INF] Deploying daemon node-exporter.smithi195 on smithi195 2024-09-21T11:53:21.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:21 smithi078 bash[20010]: cephadm 2024-09-21T11:53:20.569518+0000 mgr.smithi078.aqnwdz (mgr.14203) 17 : cephadm [INF] Deploying daemon node-exporter.smithi195 on smithi195 2024-09-21T11:53:22.060 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T11:53:22.060 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T11:53:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: cluster 2024-09-21T11:53:21.395372+0000 mgr.smithi078.aqnwdz (mgr.14203) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: cluster 2024-09-21T11:53:21.395372+0000 mgr.smithi078.aqnwdz (mgr.14203) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.724011+0000 mon.smithi078 (mon.0) 222 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.724011+0000 mon.smithi078 (mon.0) 222 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.836489+0000 mon.smithi078 (mon.0) 223 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.836489+0000 mon.smithi078 (mon.0) 223 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.844960+0000 mon.smithi078 (mon.0) 224 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.844960+0000 mon.smithi078 (mon.0) 224 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.853120+0000 mon.smithi078 (mon.0) 225 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.853120+0000 mon.smithi078 (mon.0) 225 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.861039+0000 mon.smithi078 (mon.0) 226 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.861039+0000 mon.smithi078 (mon.0) 226 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.865263+0000 mon.smithi078 (mon.0) 227 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:53:23.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.865263+0000 mon.smithi078 (mon.0) 227 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:53:23.160 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.869474+0000 mon.smithi078 (mon.0) 228 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-21T11:53:23.160 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.869474+0000 mon.smithi078 (mon.0) 228 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-21T11:53:23.160 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.873791+0000 mon.smithi078 (mon.0) 229 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:53:23.160 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.873791+0000 mon.smithi078 (mon.0) 229 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:53:23.160 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.875681+0000 mon.smithi078 (mon.0) 230 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:23.160 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: audit 2024-09-21T11:53:21.875681+0000 mon.smithi078 (mon.0) 230 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:23.160 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: cephadm 2024-09-21T11:53:21.877574+0000 mgr.smithi078.aqnwdz (mgr.14203) 19 : cephadm [INF] Deploying daemon mgr.smithi195.wpaqjn on smithi195 2024-09-21T11:53:23.160 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:22 smithi078 bash[20010]: cephadm 2024-09-21T11:53:21.877574+0000 mgr.smithi078.aqnwdz (mgr.14203) 19 : cephadm [INF] Deploying daemon mgr.smithi195.wpaqjn on smithi195 2024-09-21T11:53:25.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:24 smithi078 bash[20010]: cluster 2024-09-21T11:53:23.395774+0000 mgr.smithi078.aqnwdz (mgr.14203) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:25.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:24 smithi078 bash[20010]: cluster 2024-09-21T11:53:23.395774+0000 mgr.smithi078.aqnwdz (mgr.14203) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:26.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: cluster 2024-09-21T11:53:25.396218+0000 mgr.smithi078.aqnwdz (mgr.14203) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:26.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: cluster 2024-09-21T11:53:25.396218+0000 mgr.smithi078.aqnwdz (mgr.14203) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.452176+0000 mon.smithi078 (mon.0) 231 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.452176+0000 mon.smithi078 (mon.0) 231 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.458812+0000 mon.smithi078 (mon.0) 232 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.458812+0000 mon.smithi078 (mon.0) 232 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.465446+0000 mon.smithi078 (mon.0) 233 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.465446+0000 mon.smithi078 (mon.0) 233 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.471581+0000 mon.smithi078 (mon.0) 234 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.471581+0000 mon.smithi078 (mon.0) 234 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.474920+0000 mon.smithi078 (mon.0) 235 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.474920+0000 mon.smithi078 (mon.0) 235 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.476627+0000 mon.smithi078 (mon.0) 236 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:26.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: audit 2024-09-21T11:53:25.476627+0000 mon.smithi078 (mon.0) 236 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:26.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: cephadm 2024-09-21T11:53:25.478555+0000 mgr.smithi078.aqnwdz (mgr.14203) 22 : cephadm [INF] Deploying daemon mon.smithi195 on smithi195 2024-09-21T11:53:26.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:26 smithi078 bash[20010]: cephadm 2024-09-21T11:53:25.478555+0000 mgr.smithi078.aqnwdz (mgr.14203) 22 : cephadm [INF] Deploying daemon mon.smithi195 on smithi195 2024-09-21T11:53:27.839 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:28.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:27 smithi078 bash[20010]: audit 2024-09-21T11:53:26.730531+0000 mon.smithi078 (mon.0) 237 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:28.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:27 smithi078 bash[20010]: audit 2024-09-21T11:53:26.730531+0000 mon.smithi078 (mon.0) 237 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:29.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:28 smithi078 bash[20010]: cluster 2024-09-21T11:53:27.396645+0000 mgr.smithi078.aqnwdz (mgr.14203) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:29.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:28 smithi078 bash[20010]: cluster 2024-09-21T11:53:27.396645+0000 mgr.smithi078.aqnwdz (mgr.14203) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:30.034 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-09-21T11:53:30.034 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":1,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","modified":"2024-09-21T11:50:11.698065Z","created":"2024-09-21T11:50:11.698065Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi078","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:3300","nonce":0},{"type":"v1","addr":"172.21.15.78:6789","nonce":0}]},"addr":"172.21.15.78:6789/0","public_addr":"172.21.15.78:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0]} 2024-09-21T11:53:30.034 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 1 2024-09-21T11:53:31.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:30 smithi078 bash[20010]: cluster 2024-09-21T11:53:29.397053+0000 mgr.smithi078.aqnwdz (mgr.14203) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:31.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:30 smithi078 bash[20010]: cluster 2024-09-21T11:53:29.397053+0000 mgr.smithi078.aqnwdz (mgr.14203) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:31.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:30 smithi078 bash[20010]: audit 2024-09-21T11:53:30.032453+0000 mon.smithi078 (mon.0) 238 : audit [DBG] from='client.? 172.21.15.195:0/802972834' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:31.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:30 smithi078 bash[20010]: audit 2024-09-21T11:53:30.032453+0000 mon.smithi078 (mon.0) 238 : audit [DBG] from='client.? 172.21.15.195:0/802972834' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:31.467 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:31 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:53:31.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:31 smithi195 systemd[1]: Started Ceph mon.smithi195 for 6b15370c-780f-11ef-baf6-efdc52797490. 2024-09-21T11:53:32.045 INFO:tasks.cephadm:Waiting for 2 mons in monmap... 2024-09-21T11:53:32.046 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph mon dump -f json 2024-09-21T11:53:32.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: cluster 2024-09-21T11:53:31.397444+0000 mgr.smithi078.aqnwdz (mgr.14203) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: cluster 2024-09-21T11:53:31.397444+0000 mgr.smithi078.aqnwdz (mgr.14203) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.619598+0000 mon.smithi078 (mon.0) 239 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.619598+0000 mon.smithi078 (mon.0) 239 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.625722+0000 mon.smithi078 (mon.0) 240 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.625722+0000 mon.smithi078 (mon.0) 240 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.631749+0000 mon.smithi078 (mon.0) 241 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.631749+0000 mon.smithi078 (mon.0) 241 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.637464+0000 mon.smithi078 (mon.0) 242 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.637464+0000 mon.smithi078 (mon.0) 242 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.646862+0000 mon.smithi078 (mon.0) 243 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.646862+0000 mon.smithi078 (mon.0) 243 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.678209+0000 mon.smithi078 (mon.0) 244 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.678209+0000 mon.smithi078 (mon.0) 244 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:53:32.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.724266+0000 mon.smithi078 (mon.0) 245 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:32.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.724266+0000 mon.smithi078 (mon.0) 245 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:32.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.754294+0000 mon.smithi078 (mon.0) 246 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:32.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:32 smithi078 bash[20010]: audit 2024-09-21T11:53:31.754294+0000 mon.smithi078 (mon.0) 246 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.735+0000 7f5760ecdc80 0 set uid:gid to 167:167 (ceph:ceph) 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.735+0000 7f5760ecdc80 0 ceph version 19.3.0-5103-g5c1cdc3c (5c1cdc3c470dae78e91a0ed2bcf13509a046d301) squid (dev), process ceph-mon, pid 7 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.735+0000 7f5760ecdc80 0 pidfile_write: ignore empty --pid-file 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 0 load: jerasure load: lrc 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: RocksDB version: 7.9.2 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Git sha 0 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Compile date 2024-09-21 08:36:07 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: DB SUMMARY 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: DB Session ID: C9P5CKIBYNRW0A1QF0FG 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: CURRENT file: CURRENT 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: IDENTITY file: IDENTITY 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: MANIFEST file: MANIFEST-000005 size: 59 Bytes 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: SST files in /var/lib/ceph/mon/ceph-smithi195/store.db dir, Total Num: 0, files: 2024-09-21T11:53:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Write Ahead Log file in /var/lib/ceph/mon/ceph-smithi195/store.db: 000004.log size: 511 ; 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.error_if_exists: 0 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.create_if_missing: 0 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.paranoid_checks: 1 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.flush_verify_memtable_count: 1 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.track_and_verify_wals_in_manifest: 0 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.verify_sst_unique_id_in_manifest: 1 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.env: 0x55bb81e96120 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.fs: PosixFileSystem 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.info_log: 0x55bb82dd18e0 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_file_opening_threads: 16 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.statistics: (nil) 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.use_fsync: 0 2024-09-21T11:53:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_log_file_size: 0 2024-09-21T11:53:33.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_manifest_file_size: 1073741824 2024-09-21T11:53:33.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.log_file_time_to_roll: 0 2024-09-21T11:53:33.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.keep_log_file_num: 1000 2024-09-21T11:53:33.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.recycle_log_file_num: 0 2024-09-21T11:53:33.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.allow_fallocate: 1 2024-09-21T11:53:33.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.allow_mmap_reads: 0 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.allow_mmap_writes: 0 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.use_direct_reads: 0 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.use_direct_io_for_flush_and_compaction: 0 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.create_missing_column_families: 0 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.db_log_dir: 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.wal_dir: 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.table_cache_numshardbits: 6 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.WAL_ttl_seconds: 0 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.WAL_size_limit_MB: 0 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_write_batch_group_size_bytes: 1048576 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.manifest_preallocation_size: 4194304 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.is_fd_close_on_exec: 1 2024-09-21T11:53:33.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.advise_random_on_open: 1 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.db_write_buffer_size: 0 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.write_buffer_manager: 0x55bb82dd5b80 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.access_hint_on_compaction_start: 1 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.random_access_max_buffer_size: 1048576 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.use_adaptive_mutex: 0 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.rate_limiter: (nil) 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.sst_file_manager.rate_bytes_per_sec: 0 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.wal_recovery_mode: 2 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.enable_thread_tracking: 0 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.enable_pipelined_write: 0 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.unordered_write: 0 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.allow_concurrent_memtable_write: 1 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.enable_write_thread_adaptive_yield: 1 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.write_thread_max_yield_usec: 100 2024-09-21T11:53:33.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.write_thread_slow_yield_usec: 3 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.row_cache: None 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.wal_filter: None 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.avoid_flush_during_recovery: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.allow_ingest_behind: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.two_write_queues: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.manual_wal_flush: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.wal_compression: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.atomic_flush: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.avoid_unnecessary_blocking_io: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.persist_stats_to_disk: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.write_dbid_to_manifest: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.log_readahead_size: 0 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.file_checksum_gen_factory: Unknown 2024-09-21T11:53:33.125 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.best_efforts_recovery: 0 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bgerror_resume_count: 2147483647 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bgerror_resume_retry_interval: 1000000 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.allow_data_in_errors: 0 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.db_host_id: __hostname__ 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.enforce_single_del_contracts: true 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_background_jobs: 2 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_background_compactions: -1 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_subcompactions: 1 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.avoid_flush_during_shutdown: 0 2024-09-21T11:53:33.126 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.writable_file_max_buffer_size: 1048576 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.delayed_write_rate : 16777216 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_total_wal_size: 0 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.delete_obsolete_files_period_micros: 21600000000 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.stats_dump_period_sec: 600 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.stats_persist_period_sec: 600 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.stats_history_buffer_size: 1048576 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_open_files: -1 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bytes_per_sync: 0 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.wal_bytes_per_sync: 0 2024-09-21T11:53:33.127 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.strict_bytes_per_sync: 0 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_readahead_size: 0 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_background_flushes: -1 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Compression algorithms supported: 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: kZSTD supported: 0 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: kXpressCompression supported: 0 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: kBZip2Compression supported: 0 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: kZSTDNotFinalCompression supported: 0 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: kLZ4Compression supported: 1 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: kZlibCompression supported: 1 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: kLZ4HCCompression supported: 1 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: kSnappyCompression supported: 1 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Fast CRC32 supported: Supported on x86 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: DMutex implementation: pthread_mutex_t 2024-09-21T11:53:33.128 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: [db/version_set.cc:5527] Recovering from manifest file: /var/lib/ceph/mon/ceph-smithi195/store.db/MANIFEST-000005 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: [db/column_family.cc:630] --------------- Options for column family [default]: 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.comparator: leveldb.BytewiseComparator 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.merge_operator: 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_filter: None 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_filter_factory: None 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.sst_partitioner_factory: None 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.memtable_factory: SkipListFactory 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.table_factory: BlockBasedTable 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: table_factory options: flush_block_policy_factory: FlushBlockBySizePolicyFactory (0x55bb82dd1540) 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cache_index_and_filter_blocks: 1 2024-09-21T11:53:33.131 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cache_index_and_filter_blocks_with_high_priority: 0 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: pin_l0_filter_and_index_blocks_in_cache: 0 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: pin_top_level_index_and_filter: 1 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: index_type: 0 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: data_block_index_type: 0 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: index_shortening: 1 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: data_block_hash_table_util_ratio: 0.750000 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: checksum: 4 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: no_block_cache: 0 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: block_cache: 0x55bb82dc7610 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: block_cache_name: BinnedLRUCache 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: block_cache_options: 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: capacity : 536870912 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: num_shard_bits : 4 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: strict_capacity_limit : 0 2024-09-21T11:53:33.132 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: high_pri_pool_ratio: 0.000 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: block_cache_compressed: (nil) 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: persistent_cache: (nil) 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: block_size: 4096 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: block_size_deviation: 10 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: block_restart_interval: 16 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: index_block_restart_interval: 1 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: metadata_block_size: 4096 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: partition_filters: 0 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: use_delta_encoding: 1 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: filter_policy: bloomfilter 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: whole_key_filtering: 1 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: verify_compression: 0 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: read_amp_bytes_per_bit: 0 2024-09-21T11:53:33.133 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: format_version: 5 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: enable_index_compression: 1 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: block_align: 0 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: max_auto_readahead_size: 262144 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: prepopulate_block_cache: 0 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: initial_auto_readahead_size: 8192 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: num_file_reads_for_auto_readahead: 2 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.write_buffer_size: 33554432 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_write_buffer_number: 2 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression: NoCompression 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression: Disabled 2024-09-21T11:53:33.134 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.prefix_extractor: nullptr 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.memtable_insert_with_hint_prefix_extractor: nullptr 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.num_levels: 7 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.min_write_buffer_number_to_merge: 1 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_write_buffer_number_to_maintain: 0 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_write_buffer_size_to_maintain: 0 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression_opts.window_bits: -14 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression_opts.level: 32767 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression_opts.strategy: 0 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_bytes: 0 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression_opts.zstd_max_train_bytes: 0 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression_opts.parallel_threads: 1 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression_opts.enabled: false 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression_opts.max_dict_buffer_bytes: 0 2024-09-21T11:53:33.135 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bottommost_compression_opts.use_zstd_dict_trainer: true 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression_opts.window_bits: -14 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression_opts.level: 32767 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression_opts.strategy: 0 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression_opts.max_dict_bytes: 0 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression_opts.zstd_max_train_bytes: 0 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression_opts.use_zstd_dict_trainer: true 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression_opts.parallel_threads: 1 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression_opts.enabled: false 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compression_opts.max_dict_buffer_bytes: 0 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.level0_file_num_compaction_trigger: 4 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.level0_slowdown_writes_trigger: 20 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.level0_stop_writes_trigger: 36 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.target_file_size_base: 67108864 2024-09-21T11:53:33.136 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.target_file_size_multiplier: 1 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bytes_for_level_base: 268435456 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.level_compaction_dynamic_level_bytes: 1 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bytes_for_level_multiplier: 10.000000 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[0]: 1 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[1]: 1 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[2]: 1 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[3]: 1 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[4]: 1 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[5]: 1 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_bytes_for_level_multiplier_addtl[6]: 1 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_sequential_skip_in_iterations: 8 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_compaction_bytes: 1677721600 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.ignore_max_compaction_bytes_for_input: true 2024-09-21T11:53:33.137 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.arena_block_size: 1048576 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.soft_pending_compaction_bytes_limit: 68719476736 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.hard_pending_compaction_bytes_limit: 274877906944 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.disable_auto_compactions: 0 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_style: kCompactionStyleLevel 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_pri: kMinOverlappingRatio 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_options_universal.size_ratio: 1 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_options_universal.min_merge_width: 2 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_options_universal.max_merge_width: 4294967295 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_options_universal.max_size_amplification_percent: 200 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_options_universal.compression_size_percent: -1 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_options_universal.stop_style: kCompactionStopStyleTotalSize 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_options_fifo.max_table_files_size: 1073741824 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.compaction_options_fifo.allow_compaction: 0 2024-09-21T11:53:33.138 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.table_properties_collectors: CompactOnDeletionCollector (Sliding window size = 32768 Deletion trigger = 16384 Deletion ratio = 0); 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.inplace_update_support: 0 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.inplace_update_num_locks: 10000 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.memtable_prefix_bloom_size_ratio: 0.000000 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.memtable_whole_key_filtering: 0 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.memtable_huge_page_size: 0 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.bloom_locality: 0 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.max_successive_merges: 0 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.optimize_filters_for_hits: 0 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.paranoid_file_checks: 0 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.force_consistency_checks: 1 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.report_bg_io_stats: 0 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.ttl: 2592000 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.periodic_compaction_seconds: 0 2024-09-21T11:53:33.139 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.preclude_last_level_data_seconds: 0 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.preserve_internal_time_seconds: 0 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.enable_blob_files: false 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.min_blob_size: 0 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.blob_file_size: 268435456 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.blob_compression_type: NoCompression 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.enable_blob_garbage_collection: false 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.blob_garbage_collection_age_cutoff: 0.250000 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.blob_garbage_collection_force_threshold: 1.000000 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.blob_compaction_readahead_size: 0 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.blob_file_starting_level: 0 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: Options.experimental_mempurge_threshold: 0.000000 2024-09-21T11:53:33.140 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: [db/version_set.cc:5566] Recovered from manifest file:/var/lib/ceph/mon/ceph-smithi195/store.db/MANIFEST-000005 succeeded,manifest_file_number is 5, next_file_number is 7, last_sequence is 0, log_number is 0,prev_log_number is 0,max_column_family is 0,min_log_number_to_keep is 0 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: [db/version_set.cc:5581] Column family [default] (ID 0), log number is 0 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: [db/db_impl/db_impl_open.cc:539] DB ID: 89eb29ce-177e-4362-bff7-bacd7ec84aa5 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726919612745066, "job": 1, "event": "recovery_started", "wal_files": [4]} 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.739+0000 7f5760ecdc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1043] Recovering log #4 mode 2 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726919612745618, "cf_name": "default", "job": 1, "event": "table_file_creation", "file_number": 8, "file_size": 1648, "file_checksum": "", "file_checksum_func_name": "Unknown", "smallest_seqno": 1, "largest_seqno": 5, "table_properties": {"data_size": 523, "index_size": 31, "index_partitions": 0, "top_level_index_size": 0, "index_key_is_user_key": 1, "index_value_is_delta_encoded": 1, "filter_size": 69, "raw_key_size": 115, "raw_average_key_size": 23, "raw_value_size": 401, "raw_average_value_size": 80, "num_data_blocks": 1, "num_entries": 5, "num_filter_entries": 5, "num_deletions": 0, "num_merge_operands": 0, "num_range_deletions": 0, "format_version": 0, "fixed_key_len": 0, "filter_policy": "bloomfilter", "column_family_name": "default", "column_family_id": 0, "comparator": "leveldb.BytewiseComparator", "merge_operator": "", "prefix_extractor_name": "nullptr", "property_collectors": "[CompactOnDeletionCollector]", "compression": "NoCompression", "compression_options": "window_bits=-14; level=32767; strategy=0; max_dict_bytes=0; zstd_max_train_bytes=0; enabled=0; max_dict_buffer_bytes=0; use_zstd_dict_trainer=1; ", "creation_time": 1726919612, "oldest_key_time": 0, "file_creation_time": 0, "slow_compression_estimated_data_size": 0, "fast_compression_estimated_data_size": 0, "db_id": "89eb29ce-177e-4362-bff7-bacd7ec84aa5", "db_session_id": "C9P5CKIBYNRW0A1QF0FG", "orig_file_number": 8, "seqno_to_time_mapping": "N/A"}} 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 4 rocksdb: EVENT_LOG_v1 {"time_micros": 1726919612745761, "job": 1, "event": "recovery_finished"} 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 4 rocksdb: [db/version_set.cc:5047] Creating manifest 10 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 4 rocksdb: [file/delete_scheduler.cc:74] Deleted file /var/lib/ceph/mon/ceph-smithi195/store.db/000004.log immediately, rate_bytes_per_sec 0, total_trash_size 0 max_trash_db_ratio 0.250000 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 4 rocksdb: [db/db_impl/db_impl_open.cc:1987] SstFileManager instance 0x55bb82df4e00 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 4 rocksdb: DB pointer 0x55bb82ef8000 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5756c95640 4 rocksdb: [db/db_impl/db_impl.cc:1109] ------- DUMPING STATS ------- 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5756c95640 4 rocksdb: [db/db_impl/db_impl.cc:1111] 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: ** DB Stats ** 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T11:53:33.141 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Cumulative writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 GB, 0.00 MB/s 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Cumulative WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Cumulative stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Interval writes: 0 writes, 0 keys, 0 commit groups, 0.0 writes per commit group, ingest: 0.00 MB, 0.00 MB/s 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Interval WAL: 0 writes, 0 syncs, 0.00 writes per sync, written: 0.00 GB, 0.00 MB/s 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Interval stall: 00:00:0.000 H:M:S, 0.0 percent 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: ** Compaction Stats [default] ** 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Level Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: L0 1/0 1.61 KB 0.2 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Sum 1/0 1.61 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Int 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 1.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: ** Compaction Stats [default] ** 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Priority Files Size Score Read(GB) Rn(GB) Rnp1(GB) Write(GB) Wnew(GB) Moved(GB) W-Amp Rd(MB/s) Wr(MB/s) Comp(sec) CompMergeCPU(sec) Comp(cnt) Avg(sec) KeyIn KeyDrop Rblob(GB) Wblob(GB) 2024-09-21T11:53:33.142 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: User 0/0 0.00 KB 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 3.0 0.00 0.00 1 0.001 0 0 0.0 0.0 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Blob file count: 0, total size: 0.0 GB, garbage size: 0.0 GB, space amp: 0.0 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Uptime(secs): 0.0 total, 0.0 interval 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Flush(GB): cumulative 0.000, interval 0.000 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: AddFile(GB): cumulative 0.000, interval 0.000 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: AddFile(Total Files): cumulative 0, interval 0 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: AddFile(L0 Files): cumulative 0, interval 0 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: AddFile(Keys): cumulative 0, interval 0 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Cumulative compaction: 0.00 GB write, 0.52 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Interval compaction: 0.00 GB write, 0.52 MB/s write, 0.00 GB read, 0.00 MB/s read, 0.0 seconds 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Stalls(count): 0 level0_slowdown, 0 level0_slowdown_with_compaction, 0 level0_numfiles, 0 level0_numfiles_with_compaction, 0 stop for pending_compaction_bytes, 0 slowdown for pending_compaction_bytes, 0 memtable_compaction, 0 memtable_slowdown, interval 0 total count 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Block cache BinnedLRUCache@0x55bb82dc7610#7 capacity: 512.00 MB usage: 0.22 KB table_size: 0 occupancy: 18446744073709551615 collections: 1 last_copies: 0 last_secs: 1e-05 secs_since: 0 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: Block cache entry stats(count,size,portion): FilterBlock(1,0.11 KB,2.08616e-05%) IndexBlock(1,0.11 KB,2.08616e-05%) Misc(1,0.00 KB,0%) 2024-09-21T11:53:33.143 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: ** File Read Latency Histogram By Level [default] ** 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 0 mon.smithi195 does not exist in monmap, will attempt to join an existing cluster 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 0 using public_addr v2:172.21.15.195:0/0 -> [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 0 starting mon.smithi195 rank -1 at public addrs [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] at bind addrs [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] mon_data /var/lib/ceph/mon/ceph-smithi195 fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.743+0000 7f5760ecdc80 1 mon.smithi195@-1(???) e0 preinit fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 0 mon.smithi195@-1(synchronizing).mds e1 new map 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 0 mon.smithi195@-1(synchronizing).mds e1 print_map 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: e1 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: btime 2024-09-21T11:50:16:544681+0000 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: enable_multiple, ever_enabled_multiple: 1,1 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: default compat: compat={},rocompat={},incompat={1=base v0.20,2=client writeable ranges,3=default file layouts on dirs,4=dir inode in separate object,5=mds uses versioned encoding,6=dirfrag is stored in omap,8=no anchor table,9=file layout v2,10=snaprealm v2,11=minor log segments,12=quiesce subvolumes} 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: legacy client fscid: -1 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: 2024-09-21T11:53:33.144 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: No filesystems configured 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 1 mon.smithi195@-1(synchronizing).osd e0 _set_cache_ratios kv ratio 0.25 inc ratio 0.375 full ratio 0.375 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 1 mon.smithi195@-1(synchronizing).osd e0 register_cache_with_pcm pcm target: 2147483648 pcm max: 1020054732 pcm min: 134217728 inc_osd_cache size: 1 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 1 mon.smithi195@-1(synchronizing).osd e1 e1: 0 total, 0 up, 0 in 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 1 mon.smithi195@-1(synchronizing).osd e2 e2: 0 total, 0 up, 0 in 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 1 mon.smithi195@-1(synchronizing).osd e3 e3: 0 total, 0 up, 0 in 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 1 mon.smithi195@-1(synchronizing).osd e4 e4: 0 total, 0 up, 0 in 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 1 mon.smithi195@-1(synchronizing).osd e5 e5: 0 total, 0 up, 0 in 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 3314932999778484224, adjusting msgr requires 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.775+0000 7f5759c9b640 0 mon.smithi195@-1(synchronizing).osd e5 crush map has features 288514050185494528, adjusting msgr requires 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:04.540632+0000 mon.smithi078 (mon.0) 185 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:04.540632+0000 mon.smithi078 (mon.0) 185 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.145 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:05.666185+0000 mon.smithi078 (mon.0) 186 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:05.666185+0000 mon.smithi078 (mon.0) 186 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:07.778523+0000 mon.smithi078 (mon.0) 187 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:07.778523+0000 mon.smithi078 (mon.0) 187 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:07.781271+0000 mon.smithi078 (mon.0) 188 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:07.781271+0000 mon.smithi078 (mon.0) 188 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:08.859969+0000 mon.smithi078 (mon.0) 189 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:08.859969+0000 mon.smithi078 (mon.0) 189 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:08.864331+0000 mon.smithi078 (mon.0) 190 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:08.864331+0000 mon.smithi078 (mon.0) 190 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:08.865869+0000 mon.smithi078 (mon.0) 191 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi078", "name": "osd_memory_target"} : dispatch 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:08.865869+0000 mon.smithi078 (mon.0) 191 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi078", "name": "osd_memory_target"} : dispatch 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:09.100510+0000 mon.smithi078 (mon.0) 192 : audit [DBG] from='client.? 172.21.15.195:0/1866871039' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:33.146 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:09.100510+0000 mon.smithi078 (mon.0) 192 : audit [DBG] from='client.? 172.21.15.195:0/1866871039' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.153483+0000 mon.smithi078 (mon.0) 193 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.153483+0000 mon.smithi078 (mon.0) 193 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.158690+0000 mon.smithi078 (mon.0) 194 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.158690+0000 mon.smithi078 (mon.0) 194 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.165725+0000 mon.smithi078 (mon.0) 195 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.165725+0000 mon.smithi078 (mon.0) 195 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.171050+0000 mon.smithi078 (mon.0) 196 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.171050+0000 mon.smithi078 (mon.0) 196 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.172661+0000 mon.smithi078 (mon.0) 197 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi195", "name": "osd_memory_target"} : dispatch 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.172661+0000 mon.smithi078 (mon.0) 197 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd/host:smithi195", "name": "osd_memory_target"} : dispatch 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.174804+0000 mon.smithi078 (mon.0) 198 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.174804+0000 mon.smithi078 (mon.0) 198 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.176632+0000 mon.smithi078 (mon.0) 199 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:53:33.147 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.176632+0000 mon.smithi078 (mon.0) 199 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.579848+0000 mon.smithi078 (mon.0) 200 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.579848+0000 mon.smithi078 (mon.0) 200 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.586912+0000 mon.smithi078 (mon.0) 201 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.586912+0000 mon.smithi078 (mon.0) 201 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.594544+0000 mon.smithi078 (mon.0) 202 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.594544+0000 mon.smithi078 (mon.0) 202 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.601254+0000 mon.smithi078 (mon.0) 203 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.601254+0000 mon.smithi078 (mon.0) 203 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.609073+0000 mon.smithi078 (mon.0) 204 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.609073+0000 mon.smithi078 (mon.0) 204 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.610893+0000 mon.smithi078 (mon.0) 205 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.610893+0000 mon.smithi078 (mon.0) 205 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:53:33.148 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.614664+0000 mon.smithi078 (mon.0) 206 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.614664+0000 mon.smithi078 (mon.0) 206 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]}]': finished 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.618722+0000 mon.smithi078 (mon.0) 207 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:12.618722+0000 mon.smithi078 (mon.0) 207 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.179497+0000 mgr.smithi078.aqnwdz (mgr.14203) 7 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.conf 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.179497+0000 mgr.smithi078.aqnwdz (mgr.14203) 7 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.conf 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.179997+0000 mgr.smithi078.aqnwdz (mgr.14203) 8 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.179997+0000 mgr.smithi078.aqnwdz (mgr.14203) 8 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.311459+0000 mgr.smithi078.aqnwdz (mgr.14203) 9 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.311459+0000 mgr.smithi078.aqnwdz (mgr.14203) 9 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.311766+0000 mgr.smithi078.aqnwdz (mgr.14203) 10 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.311766+0000 mgr.smithi078.aqnwdz (mgr.14203) 10 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.401619+0000 mgr.smithi078.aqnwdz (mgr.14203) 11 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:33.149 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.401619+0000 mgr.smithi078.aqnwdz (mgr.14203) 11 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.401917+0000 mgr.smithi078.aqnwdz (mgr.14203) 12 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.401917+0000 mgr.smithi078.aqnwdz (mgr.14203) 12 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.486018+0000 mgr.smithi078.aqnwdz (mgr.14203) 13 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.486018+0000 mgr.smithi078.aqnwdz (mgr.14203) 13 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.486293+0000 mgr.smithi078.aqnwdz (mgr.14203) 14 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.486293+0000 mgr.smithi078.aqnwdz (mgr.14203) 14 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.client.admin.keyring 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.620364+0000 mgr.smithi078.aqnwdz (mgr.14203) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi195 on smithi195 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:12.620364+0000 mgr.smithi078.aqnwdz (mgr.14203) 15 : cephadm [INF] Deploying daemon ceph-exporter.smithi195 on smithi195 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:14.878267+0000 mon.smithi078 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.195:0/3239563165' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:14.878267+0000 mon.smithi078 (mon.0) 208 : audit [DBG] from='client.? 172.21.15.195:0/3239563165' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.707160+0000 mon.smithi078 (mon.0) 209 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.707160+0000 mon.smithi078 (mon.0) 209 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.150 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.715280+0000 mon.smithi078 (mon.0) 210 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.715280+0000 mon.smithi078 (mon.0) 210 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.721947+0000 mon.smithi078 (mon.0) 211 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.721947+0000 mon.smithi078 (mon.0) 211 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.723794+0000 mon.smithi078 (mon.0) 212 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.723794+0000 mon.smithi078 (mon.0) 212 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.728920+0000 mon.smithi078 (mon.0) 213 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.728920+0000 mon.smithi078 (mon.0) 213 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.733053+0000 mon.smithi078 (mon.0) 214 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.733053+0000 mon.smithi078 (mon.0) 214 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.734723+0000 mon.smithi078 (mon.0) 215 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.734723+0000 mon.smithi078 (mon.0) 215 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]}]': finished 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.740470+0000 mon.smithi078 (mon.0) 216 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:16.740470+0000 mon.smithi078 (mon.0) 216 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.151 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:16.745514+0000 mgr.smithi078.aqnwdz (mgr.14203) 16 : cephadm [INF] Deploying daemon crash.smithi195 on smithi195 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:16.745514+0000 mgr.smithi078.aqnwdz (mgr.14203) 16 : cephadm [INF] Deploying daemon crash.smithi195 on smithi195 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.109600+0000 mon.smithi078 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.195:0/2276055726' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.109600+0000 mon.smithi078 (mon.0) 217 : audit [DBG] from='client.? 172.21.15.195:0/2276055726' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.540460+0000 mon.smithi078 (mon.0) 218 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.540460+0000 mon.smithi078 (mon.0) 218 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.549054+0000 mon.smithi078 (mon.0) 219 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.549054+0000 mon.smithi078 (mon.0) 219 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.557896+0000 mon.smithi078 (mon.0) 220 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.557896+0000 mon.smithi078 (mon.0) 220 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.566386+0000 mon.smithi078 (mon.0) 221 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:20.566386+0000 mon.smithi078 (mon.0) 221 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:20.569518+0000 mgr.smithi078.aqnwdz (mgr.14203) 17 : cephadm [INF] Deploying daemon node-exporter.smithi195 on smithi195 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:20.569518+0000 mgr.smithi078.aqnwdz (mgr.14203) 17 : cephadm [INF] Deploying daemon node-exporter.smithi195 on smithi195 2024-09-21T11:53:33.152 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:21.395372+0000 mgr.smithi078.aqnwdz (mgr.14203) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:21.395372+0000 mgr.smithi078.aqnwdz (mgr.14203) 18 : cluster [DBG] pgmap v3: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.724011+0000 mon.smithi078 (mon.0) 222 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.724011+0000 mon.smithi078 (mon.0) 222 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.836489+0000 mon.smithi078 (mon.0) 223 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.836489+0000 mon.smithi078 (mon.0) 223 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.844960+0000 mon.smithi078 (mon.0) 224 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.844960+0000 mon.smithi078 (mon.0) 224 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.853120+0000 mon.smithi078 (mon.0) 225 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.853120+0000 mon.smithi078 (mon.0) 225 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.861039+0000 mon.smithi078 (mon.0) 226 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.861039+0000 mon.smithi078 (mon.0) 226 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.865263+0000 mon.smithi078 (mon.0) 227 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:53:33.153 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.865263+0000 mon.smithi078 (mon.0) 227 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:53:33.154 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.869474+0000 mon.smithi078 (mon.0) 228 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-21T11:53:33.154 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.869474+0000 mon.smithi078 (mon.0) 228 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]}]': finished 2024-09-21T11:53:33.154 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.873791+0000 mon.smithi078 (mon.0) 229 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:53:33.154 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.873791+0000 mon.smithi078 (mon.0) 229 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:53:33.154 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.875681+0000 mon.smithi078 (mon.0) 230 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:21.875681+0000 mon.smithi078 (mon.0) 230 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:21.877574+0000 mgr.smithi078.aqnwdz (mgr.14203) 19 : cephadm [INF] Deploying daemon mgr.smithi195.wpaqjn on smithi195 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:21.877574+0000 mgr.smithi078.aqnwdz (mgr.14203) 19 : cephadm [INF] Deploying daemon mgr.smithi195.wpaqjn on smithi195 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:23.395774+0000 mgr.smithi078.aqnwdz (mgr.14203) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:23.395774+0000 mgr.smithi078.aqnwdz (mgr.14203) 20 : cluster [DBG] pgmap v4: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:25.396218+0000 mgr.smithi078.aqnwdz (mgr.14203) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:25.396218+0000 mgr.smithi078.aqnwdz (mgr.14203) 21 : cluster [DBG] pgmap v5: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.452176+0000 mon.smithi078 (mon.0) 231 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.452176+0000 mon.smithi078 (mon.0) 231 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.458812+0000 mon.smithi078 (mon.0) 232 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.458812+0000 mon.smithi078 (mon.0) 232 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.465446+0000 mon.smithi078 (mon.0) 233 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.465446+0000 mon.smithi078 (mon.0) 233 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.155 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.471581+0000 mon.smithi078 (mon.0) 234 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.471581+0000 mon.smithi078 (mon.0) 234 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.474920+0000 mon.smithi078 (mon.0) 235 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.474920+0000 mon.smithi078 (mon.0) 235 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.476627+0000 mon.smithi078 (mon.0) 236 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:25.476627+0000 mon.smithi078 (mon.0) 236 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:25.478555+0000 mgr.smithi078.aqnwdz (mgr.14203) 22 : cephadm [INF] Deploying daemon mon.smithi195 on smithi195 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cephadm 2024-09-21T11:53:25.478555+0000 mgr.smithi078.aqnwdz (mgr.14203) 22 : cephadm [INF] Deploying daemon mon.smithi195 on smithi195 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:26.730531+0000 mon.smithi078 (mon.0) 237 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:26.730531+0000 mon.smithi078 (mon.0) 237 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:27.396645+0000 mgr.smithi078.aqnwdz (mgr.14203) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:27.396645+0000 mgr.smithi078.aqnwdz (mgr.14203) 23 : cluster [DBG] pgmap v6: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:29.397053+0000 mgr.smithi078.aqnwdz (mgr.14203) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:29.397053+0000 mgr.smithi078.aqnwdz (mgr.14203) 24 : cluster [DBG] pgmap v7: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:30.032453+0000 mon.smithi078 (mon.0) 238 : audit [DBG] from='client.? 172.21.15.195:0/802972834' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:33.156 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:30.032453+0000 mon.smithi078 (mon.0) 238 : audit [DBG] from='client.? 172.21.15.195:0/802972834' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:31.397444+0000 mgr.smithi078.aqnwdz (mgr.14203) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: cluster 2024-09-21T11:53:31.397444+0000 mgr.smithi078.aqnwdz (mgr.14203) 25 : cluster [DBG] pgmap v8: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.619598+0000 mon.smithi078 (mon.0) 239 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.619598+0000 mon.smithi078 (mon.0) 239 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.625722+0000 mon.smithi078 (mon.0) 240 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.625722+0000 mon.smithi078 (mon.0) 240 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.631749+0000 mon.smithi078 (mon.0) 241 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.631749+0000 mon.smithi078 (mon.0) 241 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.637464+0000 mon.smithi078 (mon.0) 242 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.637464+0000 mon.smithi078 (mon.0) 242 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.646862+0000 mon.smithi078 (mon.0) 243 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.646862+0000 mon.smithi078 (mon.0) 243 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.678209+0000 mon.smithi078 (mon.0) 244 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:53:33.157 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.678209+0000 mon.smithi078 (mon.0) 244 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:53:33.158 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.724266+0000 mon.smithi078 (mon.0) 245 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:33.158 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.724266+0000 mon.smithi078 (mon.0) 245 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:33.158 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.754294+0000 mon.smithi078 (mon.0) 246 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.158 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: audit 2024-09-21T11:53:31.754294+0000 mon.smithi078 (mon.0) 246 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:33.158 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:32 smithi195 bash[25267]: debug 2024-09-21T11:53:32.779+0000 7f5759c9b640 1 mon.smithi195@-1(synchronizing).paxosservice(auth 1..8) refresh upgraded, format 0 -> 3 2024-09-21T11:53:36.714 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi195/config 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:32.791760+0000 mon.smithi078 (mon.0) 248 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:32.791760+0000 mon.smithi078 (mon.0) 248 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:32.792096+0000 mon.smithi078 (mon.0) 249 : cluster [INF] mon.smithi078 calling monitor election 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:32.792096+0000 mon.smithi078 (mon.0) 249 : cluster [INF] mon.smithi078 calling monitor election 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:32.813001+0000 mon.smithi078 (mon.0) 250 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:32.813001+0000 mon.smithi078 (mon.0) 250 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:33.397881+0000 mgr.smithi078.aqnwdz (mgr.14203) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:33.397881+0000 mgr.smithi078.aqnwdz (mgr.14203) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:33.786461+0000 mon.smithi078 (mon.0) 251 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:33.786461+0000 mon.smithi078 (mon.0) 251 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:34.003530+0000 mon.smithi078 (mon.0) 252 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi195.wpaqjn/crt"} : dispatch 2024-09-21T11:53:38.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:34.003530+0000 mon.smithi078 (mon.0) 252 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi195.wpaqjn/crt"} : dispatch 2024-09-21T11:53:38.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:34.786408+0000 mon.smithi078 (mon.0) 253 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:34.786408+0000 mon.smithi078 (mon.0) 253 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:34.788342+0000 mon.smithi195 (mon.1) 1 : cluster [INF] mon.smithi195 calling monitor election 2024-09-21T11:53:38.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:34.788342+0000 mon.smithi195 (mon.1) 1 : cluster [INF] mon.smithi195 calling monitor election 2024-09-21T11:53:38.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:35.398306+0000 mgr.smithi078.aqnwdz (mgr.14203) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:38.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:35.398306+0000 mgr.smithi078.aqnwdz (mgr.14203) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:35.786802+0000 mon.smithi078 (mon.0) 254 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:35.786802+0000 mon.smithi078 (mon.0) 254 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:36.786565+0000 mon.smithi078 (mon.0) 255 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:36.786565+0000 mon.smithi078 (mon.0) 255 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.786862+0000 mon.smithi078 (mon.0) 256 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.786862+0000 mon.smithi078 (mon.0) 256 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.838485+0000 mon.smithi078 (mon.0) 257 : cluster [INF] mon.smithi078 is new leader, mons smithi078,smithi195 in quorum (ranks 0,1) 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.838485+0000 mon.smithi078 (mon.0) 257 : cluster [INF] mon.smithi078 is new leader, mons smithi078,smithi195 in quorum (ranks 0,1) 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.845997+0000 mon.smithi078 (mon.0) 258 : cluster [DBG] monmap epoch 2 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.845997+0000 mon.smithi078 (mon.0) 258 : cluster [DBG] monmap epoch 2 2024-09-21T11:53:38.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846044+0000 mon.smithi078 (mon.0) 259 : cluster [DBG] fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846044+0000 mon.smithi078 (mon.0) 259 : cluster [DBG] fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846078+0000 mon.smithi078 (mon.0) 260 : cluster [DBG] last_changed 2024-09-21T11:53:32.785974+0000 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846078+0000 mon.smithi078 (mon.0) 260 : cluster [DBG] last_changed 2024-09-21T11:53:32.785974+0000 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846117+0000 mon.smithi078 (mon.0) 261 : cluster [DBG] created 2024-09-21T11:50:11.698065+0000 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846117+0000 mon.smithi078 (mon.0) 261 : cluster [DBG] created 2024-09-21T11:50:11.698065+0000 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846155+0000 mon.smithi078 (mon.0) 262 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846155+0000 mon.smithi078 (mon.0) 262 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846193+0000 mon.smithi078 (mon.0) 263 : cluster [DBG] election_strategy: 1 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846193+0000 mon.smithi078 (mon.0) 263 : cluster [DBG] election_strategy: 1 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846230+0000 mon.smithi078 (mon.0) 264 : cluster [DBG] 0: [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon.smithi078 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846230+0000 mon.smithi078 (mon.0) 264 : cluster [DBG] 0: [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon.smithi078 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846271+0000 mon.smithi078 (mon.0) 265 : cluster [DBG] 1: [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] mon.smithi195 2024-09-21T11:53:38.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.846271+0000 mon.smithi078 (mon.0) 265 : cluster [DBG] 1: [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] mon.smithi195 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.864495+0000 mon.smithi078 (mon.0) 266 : cluster [DBG] fsmap 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.864495+0000 mon.smithi078 (mon.0) 266 : cluster [DBG] fsmap 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.864580+0000 mon.smithi078 (mon.0) 267 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.864580+0000 mon.smithi078 (mon.0) 267 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.864920+0000 mon.smithi078 (mon.0) 268 : cluster [DBG] mgrmap e18: smithi078.aqnwdz(active, since 36s) 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.864920+0000 mon.smithi078 (mon.0) 268 : cluster [DBG] mgrmap e18: smithi078.aqnwdz(active, since 36s) 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.865262+0000 mon.smithi078 (mon.0) 269 : cluster [INF] overall HEALTH_OK 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.865262+0000 mon.smithi078 (mon.0) 269 : cluster [INF] overall HEALTH_OK 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.866283+0000 mon.smithi078 (mon.0) 270 : cluster [DBG] Standby manager daemon smithi195.wpaqjn started 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.866283+0000 mon.smithi078 (mon.0) 270 : cluster [DBG] Standby manager daemon smithi195.wpaqjn started 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.871184+0000 mon.smithi078 (mon.0) 271 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.871184+0000 mon.smithi078 (mon.0) 271 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.875100+0000 mon.smithi078 (mon.0) 272 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.875100+0000 mon.smithi078 (mon.0) 272 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:38.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.875936+0000 mon.smithi078 (mon.0) 273 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi195.wpaqjn/key"} : dispatch 2024-09-21T11:53:38.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.875936+0000 mon.smithi078 (mon.0) 273 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi195.wpaqjn/key"} : dispatch 2024-09-21T11:53:38.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.876762+0000 mon.smithi078 (mon.0) 274 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-21T11:53:38.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.876762+0000 mon.smithi078 (mon.0) 274 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-21T11:53:38.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.884790+0000 mon.smithi078 (mon.0) 275 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:38.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.884790+0000 mon.smithi078 (mon.0) 275 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:38.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.886866+0000 mon.smithi078 (mon.0) 276 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:38.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.886866+0000 mon.smithi078 (mon.0) 276 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:38.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.888713+0000 mon.smithi078 (mon.0) 277 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:53:38.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:37 smithi195 bash[25267]: audit 2024-09-21T11:53:37.888713+0000 mon.smithi078 (mon.0) 277 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:53:38.217 INFO:teuthology.orchestra.run.smithi195.stderr:dumped monmap epoch 2 2024-09-21T11:53:38.217 INFO:teuthology.orchestra.run.smithi195.stdout: 2024-09-21T11:53:38.217 INFO:teuthology.orchestra.run.smithi195.stdout:{"epoch":2,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","modified":"2024-09-21T11:53:32.785974Z","created":"2024-09-21T11:50:11.698065Z","min_mon_release":19,"min_mon_release_name":"squid","election_strategy":1,"disallowed_leaders: ":"","stretch_mode":false,"tiebreaker_mon":"","removed_ranks: ":"","features":{"persistent":["kraken","luminous","mimic","osdmap-prune","nautilus","octopus","pacific","elector-pinging","quincy","reef","squid"],"optional":[]},"mons":[{"rank":0,"name":"smithi078","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:3300","nonce":0},{"type":"v1","addr":"172.21.15.78:6789","nonce":0}]},"addr":"172.21.15.78:6789/0","public_addr":"172.21.15.78:6789/0","priority":0,"weight":0,"crush_location":"{}"},{"rank":1,"name":"smithi195","public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:3300","nonce":0},{"type":"v1","addr":"172.21.15.195:6789","nonce":0}]},"addr":"172.21.15.195:6789/0","public_addr":"172.21.15.195:6789/0","priority":0,"weight":0,"crush_location":"{}"}],"quorum":[0,1]} 2024-09-21T11:53:38.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:32.791760+0000 mon.smithi078 (mon.0) 248 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:32.791760+0000 mon.smithi078 (mon.0) 248 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:32.792096+0000 mon.smithi078 (mon.0) 249 : cluster [INF] mon.smithi078 calling monitor election 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:32.792096+0000 mon.smithi078 (mon.0) 249 : cluster [INF] mon.smithi078 calling monitor election 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:32.813001+0000 mon.smithi078 (mon.0) 250 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:32.813001+0000 mon.smithi078 (mon.0) 250 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:33.397881+0000 mgr.smithi078.aqnwdz (mgr.14203) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:33.397881+0000 mgr.smithi078.aqnwdz (mgr.14203) 26 : cluster [DBG] pgmap v9: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:33.786461+0000 mon.smithi078 (mon.0) 251 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:33.786461+0000 mon.smithi078 (mon.0) 251 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:34.003530+0000 mon.smithi078 (mon.0) 252 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi195.wpaqjn/crt"} : dispatch 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:34.003530+0000 mon.smithi078 (mon.0) 252 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi195.wpaqjn/crt"} : dispatch 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:34.786408+0000 mon.smithi078 (mon.0) 253 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:34.786408+0000 mon.smithi078 (mon.0) 253 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:34.788342+0000 mon.smithi195 (mon.1) 1 : cluster [INF] mon.smithi195 calling monitor election 2024-09-21T11:53:38.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:34.788342+0000 mon.smithi195 (mon.1) 1 : cluster [INF] mon.smithi195 calling monitor election 2024-09-21T11:53:38.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:35.398306+0000 mgr.smithi078.aqnwdz (mgr.14203) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:38.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:35.398306+0000 mgr.smithi078.aqnwdz (mgr.14203) 27 : cluster [DBG] pgmap v10: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:38.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:35.786802+0000 mon.smithi078 (mon.0) 254 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:35.786802+0000 mon.smithi078 (mon.0) 254 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:36.786565+0000 mon.smithi078 (mon.0) 255 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:36.786565+0000 mon.smithi078 (mon.0) 255 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.786862+0000 mon.smithi078 (mon.0) 256 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.786862+0000 mon.smithi078 (mon.0) 256 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.838485+0000 mon.smithi078 (mon.0) 257 : cluster [INF] mon.smithi078 is new leader, mons smithi078,smithi195 in quorum (ranks 0,1) 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.838485+0000 mon.smithi078 (mon.0) 257 : cluster [INF] mon.smithi078 is new leader, mons smithi078,smithi195 in quorum (ranks 0,1) 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.845997+0000 mon.smithi078 (mon.0) 258 : cluster [DBG] monmap epoch 2 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.845997+0000 mon.smithi078 (mon.0) 258 : cluster [DBG] monmap epoch 2 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846044+0000 mon.smithi078 (mon.0) 259 : cluster [DBG] fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846044+0000 mon.smithi078 (mon.0) 259 : cluster [DBG] fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846078+0000 mon.smithi078 (mon.0) 260 : cluster [DBG] last_changed 2024-09-21T11:53:32.785974+0000 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846078+0000 mon.smithi078 (mon.0) 260 : cluster [DBG] last_changed 2024-09-21T11:53:32.785974+0000 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846117+0000 mon.smithi078 (mon.0) 261 : cluster [DBG] created 2024-09-21T11:50:11.698065+0000 2024-09-21T11:53:38.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846117+0000 mon.smithi078 (mon.0) 261 : cluster [DBG] created 2024-09-21T11:50:11.698065+0000 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846155+0000 mon.smithi078 (mon.0) 262 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846155+0000 mon.smithi078 (mon.0) 262 : cluster [DBG] min_mon_release 19 (squid) 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846193+0000 mon.smithi078 (mon.0) 263 : cluster [DBG] election_strategy: 1 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846193+0000 mon.smithi078 (mon.0) 263 : cluster [DBG] election_strategy: 1 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846230+0000 mon.smithi078 (mon.0) 264 : cluster [DBG] 0: [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon.smithi078 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846230+0000 mon.smithi078 (mon.0) 264 : cluster [DBG] 0: [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] mon.smithi078 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846271+0000 mon.smithi078 (mon.0) 265 : cluster [DBG] 1: [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] mon.smithi195 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.846271+0000 mon.smithi078 (mon.0) 265 : cluster [DBG] 1: [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] mon.smithi195 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.864495+0000 mon.smithi078 (mon.0) 266 : cluster [DBG] fsmap 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.864495+0000 mon.smithi078 (mon.0) 266 : cluster [DBG] fsmap 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.864580+0000 mon.smithi078 (mon.0) 267 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.864580+0000 mon.smithi078 (mon.0) 267 : cluster [DBG] osdmap e5: 0 total, 0 up, 0 in 2024-09-21T11:53:38.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.864920+0000 mon.smithi078 (mon.0) 268 : cluster [DBG] mgrmap e18: smithi078.aqnwdz(active, since 36s) 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.864920+0000 mon.smithi078 (mon.0) 268 : cluster [DBG] mgrmap e18: smithi078.aqnwdz(active, since 36s) 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.865262+0000 mon.smithi078 (mon.0) 269 : cluster [INF] overall HEALTH_OK 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.865262+0000 mon.smithi078 (mon.0) 269 : cluster [INF] overall HEALTH_OK 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.866283+0000 mon.smithi078 (mon.0) 270 : cluster [DBG] Standby manager daemon smithi195.wpaqjn started 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.866283+0000 mon.smithi078 (mon.0) 270 : cluster [DBG] Standby manager daemon smithi195.wpaqjn started 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.871184+0000 mon.smithi078 (mon.0) 271 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.871184+0000 mon.smithi078 (mon.0) 271 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/crt"} : dispatch 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.875100+0000 mon.smithi078 (mon.0) 272 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.875100+0000 mon.smithi078 (mon.0) 272 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.875936+0000 mon.smithi078 (mon.0) 273 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi195.wpaqjn/key"} : dispatch 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.875936+0000 mon.smithi078 (mon.0) 273 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/smithi195.wpaqjn/key"} : dispatch 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.876762+0000 mon.smithi078 (mon.0) 274 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.876762+0000 mon.smithi078 (mon.0) 274 : audit [DBG] from='mgr.? 172.21.15.195:0/1822193799' entity='mgr.smithi195.wpaqjn' cmd={"prefix": "config-key get", "key": "mgr/dashboard/key"} : dispatch 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.884790+0000 mon.smithi078 (mon.0) 275 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:38.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.884790+0000 mon.smithi078 (mon.0) 275 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:38.412 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.886866+0000 mon.smithi078 (mon.0) 276 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:38.412 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.886866+0000 mon.smithi078 (mon.0) 276 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:38.412 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.888713+0000 mon.smithi078 (mon.0) 277 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:53:38.412 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:37 smithi078 bash[20010]: audit 2024-09-21T11:53:37.888713+0000 mon.smithi078 (mon.0) 277 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:53:38.833 INFO:tasks.cephadm:Generating final ceph.conf file... 2024-09-21T11:53:38.833 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph config generate-minimal-conf 2024-09-21T11:53:39.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.398711+0000 mgr.smithi078.aqnwdz (mgr.14203) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.398711+0000 mgr.smithi078.aqnwdz (mgr.14203) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:37.891025+0000 mgr.smithi078.aqnwdz (mgr.14203) 29 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.conf 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:37.891025+0000 mgr.smithi078.aqnwdz (mgr.14203) 29 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.conf 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:37.891579+0000 mgr.smithi078.aqnwdz (mgr.14203) 30 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:37.891579+0000 mgr.smithi078.aqnwdz (mgr.14203) 30 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.937176+0000 mon.smithi078 (mon.0) 278 : cluster [DBG] mgrmap e19: smithi078.aqnwdz(active, since 36s), standbys: smithi195.wpaqjn 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cluster 2024-09-21T11:53:37.937176+0000 mon.smithi078 (mon.0) 278 : cluster [DBG] mgrmap e19: smithi078.aqnwdz(active, since 36s), standbys: smithi195.wpaqjn 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:37.937866+0000 mon.smithi078 (mon.0) 279 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi195.wpaqjn", "id": "smithi195.wpaqjn"} : dispatch 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:37.937866+0000 mon.smithi078 (mon.0) 279 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi195.wpaqjn", "id": "smithi195.wpaqjn"} : dispatch 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:38.032996+0000 mgr.smithi078.aqnwdz (mgr.14203) 31 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:38.032996+0000 mgr.smithi078.aqnwdz (mgr.14203) 31 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:38.033178+0000 mgr.smithi078.aqnwdz (mgr.14203) 32 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:39.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:38.033178+0000 mgr.smithi078.aqnwdz (mgr.14203) 32 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.121619+0000 mon.smithi078 (mon.0) 280 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.121619+0000 mon.smithi078 (mon.0) 280 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.124837+0000 mon.smithi078 (mon.0) 281 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.124837+0000 mon.smithi078 (mon.0) 281 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.127275+0000 mon.smithi078 (mon.0) 282 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.127275+0000 mon.smithi078 (mon.0) 282 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.129997+0000 mon.smithi078 (mon.0) 283 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.129997+0000 mon.smithi078 (mon.0) 283 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.133831+0000 mon.smithi078 (mon.0) 284 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.133831+0000 mon.smithi078 (mon.0) 284 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:38.152952+0000 mgr.smithi078.aqnwdz (mgr.14203) 33 : cephadm [INF] Reconfiguring mon.smithi078 (unknown last config time)... 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: cephadm 2024-09-21T11:53:38.152952+0000 mgr.smithi078.aqnwdz (mgr.14203) 33 : cephadm [INF] Reconfiguring mon.smithi078 (unknown last config time)... 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.153284+0000 mon.smithi078 (mon.0) 285 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:53:39.123 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.153284+0000 mon.smithi078 (mon.0) 285 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:53:39.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.154036+0000 mon.smithi078 (mon.0) 286 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T11:53:39.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.154036+0000 mon.smithi078 (mon.0) 286 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T11:53:39.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.154688+0000 mon.smithi078 (mon.0) 287 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:39.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.154688+0000 mon.smithi078 (mon.0) 287 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:39.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.215510+0000 mon.smithi078 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.195:0/1523167999' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:39.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.215510+0000 mon.smithi078 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.195:0/1523167999' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:39.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.787057+0000 mon.smithi078 (mon.0) 289 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:39.124 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:38 smithi195 bash[25267]: audit 2024-09-21T11:53:38.787057+0000 mon.smithi078 (mon.0) 289 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.398711+0000 mgr.smithi078.aqnwdz (mgr.14203) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.398711+0000 mgr.smithi078.aqnwdz (mgr.14203) 28 : cluster [DBG] pgmap v11: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:37.891025+0000 mgr.smithi078.aqnwdz (mgr.14203) 29 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.conf 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:37.891025+0000 mgr.smithi078.aqnwdz (mgr.14203) 29 : cephadm [INF] Updating smithi078:/etc/ceph/ceph.conf 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:37.891579+0000 mgr.smithi078.aqnwdz (mgr.14203) 30 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:37.891579+0000 mgr.smithi078.aqnwdz (mgr.14203) 30 : cephadm [INF] Updating smithi195:/etc/ceph/ceph.conf 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.937176+0000 mon.smithi078 (mon.0) 278 : cluster [DBG] mgrmap e19: smithi078.aqnwdz(active, since 36s), standbys: smithi195.wpaqjn 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cluster 2024-09-21T11:53:37.937176+0000 mon.smithi078 (mon.0) 278 : cluster [DBG] mgrmap e19: smithi078.aqnwdz(active, since 36s), standbys: smithi195.wpaqjn 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:37.937866+0000 mon.smithi078 (mon.0) 279 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi195.wpaqjn", "id": "smithi195.wpaqjn"} : dispatch 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:37.937866+0000 mon.smithi078 (mon.0) 279 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr metadata", "who": "smithi195.wpaqjn", "id": "smithi195.wpaqjn"} : dispatch 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:38.032996+0000 mgr.smithi078.aqnwdz (mgr.14203) 31 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:39.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:38.032996+0000 mgr.smithi078.aqnwdz (mgr.14203) 31 : cephadm [INF] Updating smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:38.033178+0000 mgr.smithi078.aqnwdz (mgr.14203) 32 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:38.033178+0000 mgr.smithi078.aqnwdz (mgr.14203) 32 : cephadm [INF] Updating smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/config/ceph.conf 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.121619+0000 mon.smithi078 (mon.0) 280 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.121619+0000 mon.smithi078 (mon.0) 280 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.124837+0000 mon.smithi078 (mon.0) 281 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.124837+0000 mon.smithi078 (mon.0) 281 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.127275+0000 mon.smithi078 (mon.0) 282 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.127275+0000 mon.smithi078 (mon.0) 282 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.129997+0000 mon.smithi078 (mon.0) 283 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.129997+0000 mon.smithi078 (mon.0) 283 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.133831+0000 mon.smithi078 (mon.0) 284 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.133831+0000 mon.smithi078 (mon.0) 284 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:38.152952+0000 mgr.smithi078.aqnwdz (mgr.14203) 33 : cephadm [INF] Reconfiguring mon.smithi078 (unknown last config time)... 2024-09-21T11:53:39.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: cephadm 2024-09-21T11:53:38.152952+0000 mgr.smithi078.aqnwdz (mgr.14203) 33 : cephadm [INF] Reconfiguring mon.smithi078 (unknown last config time)... 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.153284+0000 mon.smithi078 (mon.0) 285 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.153284+0000 mon.smithi078 (mon.0) 285 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.154036+0000 mon.smithi078 (mon.0) 286 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.154036+0000 mon.smithi078 (mon.0) 286 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.154688+0000 mon.smithi078 (mon.0) 287 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.154688+0000 mon.smithi078 (mon.0) 287 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.215510+0000 mon.smithi078 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.195:0/1523167999' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.215510+0000 mon.smithi078 (mon.0) 288 : audit [DBG] from='client.? 172.21.15.195:0/1523167999' entity='client.admin' cmd={"prefix": "mon dump", "format": "json"} : dispatch 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.787057+0000 mon.smithi078 (mon.0) 289 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:39.159 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:38 smithi078 bash[20010]: audit 2024-09-21T11:53:38.787057+0000 mon.smithi078 (mon.0) 289 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:53:40.052 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:39 smithi078 bash[20010]: cephadm 2024-09-21T11:53:38.155358+0000 mgr.smithi078.aqnwdz (mgr.14203) 34 : cephadm [INF] Reconfiguring daemon mon.smithi078 on smithi078 2024-09-21T11:53:40.052 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:39 smithi078 bash[20010]: cephadm 2024-09-21T11:53:38.155358+0000 mgr.smithi078.aqnwdz (mgr.14203) 34 : cephadm [INF] Reconfiguring daemon mon.smithi078 on smithi078 2024-09-21T11:53:40.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:39 smithi195 bash[25267]: cephadm 2024-09-21T11:53:38.155358+0000 mgr.smithi078.aqnwdz (mgr.14203) 34 : cephadm [INF] Reconfiguring daemon mon.smithi078 on smithi078 2024-09-21T11:53:40.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:39 smithi195 bash[25267]: cephadm 2024-09-21T11:53:38.155358+0000 mgr.smithi078.aqnwdz (mgr.14203) 34 : cephadm [INF] Reconfiguring daemon mon.smithi078 on smithi078 2024-09-21T11:53:41.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: cluster 2024-09-21T11:53:39.399114+0000 mgr.smithi078.aqnwdz (mgr.14203) 35 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:41.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: cluster 2024-09-21T11:53:39.399114+0000 mgr.smithi078.aqnwdz (mgr.14203) 35 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:41.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.444252+0000 mon.smithi078 (mon.0) 290 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:41.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.444252+0000 mon.smithi078 (mon.0) 290 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:41.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.453613+0000 mon.smithi078 (mon.0) 291 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:41.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.453613+0000 mon.smithi078 (mon.0) 291 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:41.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.455759+0000 mon.smithi078 (mon.0) 292 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi078.aqnwdz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:53:41.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.455759+0000 mon.smithi078 (mon.0) 292 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi078.aqnwdz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:53:41.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.457490+0000 mon.smithi078 (mon.0) 293 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:53:41.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.457490+0000 mon.smithi078 (mon.0) 293 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:53:41.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.458882+0000 mon.smithi078 (mon.0) 294 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:41.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:40 smithi195 bash[25267]: audit 2024-09-21T11:53:40.458882+0000 mon.smithi078 (mon.0) 294 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:41.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: cluster 2024-09-21T11:53:39.399114+0000 mgr.smithi078.aqnwdz (mgr.14203) 35 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:41.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: cluster 2024-09-21T11:53:39.399114+0000 mgr.smithi078.aqnwdz (mgr.14203) 35 : cluster [DBG] pgmap v12: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:41.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.444252+0000 mon.smithi078 (mon.0) 290 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:41.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.444252+0000 mon.smithi078 (mon.0) 290 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:41.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.453613+0000 mon.smithi078 (mon.0) 291 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:41.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.453613+0000 mon.smithi078 (mon.0) 291 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:41.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.455759+0000 mon.smithi078 (mon.0) 292 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi078.aqnwdz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:53:41.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.455759+0000 mon.smithi078 (mon.0) 292 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi078.aqnwdz", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:53:41.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.457490+0000 mon.smithi078 (mon.0) 293 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:53:41.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.457490+0000 mon.smithi078 (mon.0) 293 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:53:41.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.458882+0000 mon.smithi078 (mon.0) 294 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:41.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:40 smithi078 bash[20010]: audit 2024-09-21T11:53:40.458882+0000 mon.smithi078 (mon.0) 294 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:42.244 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:41 smithi078 bash[20010]: cephadm 2024-09-21T11:53:40.455230+0000 mgr.smithi078.aqnwdz (mgr.14203) 36 : cephadm [INF] Reconfiguring mgr.smithi078.aqnwdz (unknown last config time)... 2024-09-21T11:53:42.244 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:41 smithi078 bash[20010]: cephadm 2024-09-21T11:53:40.455230+0000 mgr.smithi078.aqnwdz (mgr.14203) 36 : cephadm [INF] Reconfiguring mgr.smithi078.aqnwdz (unknown last config time)... 2024-09-21T11:53:42.244 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:41 smithi078 bash[20010]: cephadm 2024-09-21T11:53:40.460529+0000 mgr.smithi078.aqnwdz (mgr.14203) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi078.aqnwdz on smithi078 2024-09-21T11:53:42.244 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:41 smithi078 bash[20010]: cephadm 2024-09-21T11:53:40.460529+0000 mgr.smithi078.aqnwdz (mgr.14203) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi078.aqnwdz on smithi078 2024-09-21T11:53:42.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:41 smithi195 bash[25267]: cephadm 2024-09-21T11:53:40.455230+0000 mgr.smithi078.aqnwdz (mgr.14203) 36 : cephadm [INF] Reconfiguring mgr.smithi078.aqnwdz (unknown last config time)... 2024-09-21T11:53:42.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:41 smithi195 bash[25267]: cephadm 2024-09-21T11:53:40.455230+0000 mgr.smithi078.aqnwdz (mgr.14203) 36 : cephadm [INF] Reconfiguring mgr.smithi078.aqnwdz (unknown last config time)... 2024-09-21T11:53:42.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:41 smithi195 bash[25267]: cephadm 2024-09-21T11:53:40.460529+0000 mgr.smithi078.aqnwdz (mgr.14203) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi078.aqnwdz on smithi078 2024-09-21T11:53:42.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:41 smithi195 bash[25267]: cephadm 2024-09-21T11:53:40.460529+0000 mgr.smithi078.aqnwdz (mgr.14203) 37 : cephadm [INF] Reconfiguring daemon mgr.smithi078.aqnwdz on smithi078 2024-09-21T11:53:43.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: cluster 2024-09-21T11:53:41.399455+0000 mgr.smithi078.aqnwdz (mgr.14203) 38 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:43.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: cluster 2024-09-21T11:53:41.399455+0000 mgr.smithi078.aqnwdz (mgr.14203) 38 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:43.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: audit 2024-09-21T11:53:42.718979+0000 mon.smithi078 (mon.0) 295 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:43.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: audit 2024-09-21T11:53:42.718979+0000 mon.smithi078 (mon.0) 295 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:43.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: audit 2024-09-21T11:53:42.726990+0000 mon.smithi078 (mon.0) 296 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:43.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: audit 2024-09-21T11:53:42.726990+0000 mon.smithi078 (mon.0) 296 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:43.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: audit 2024-09-21T11:53:42.729061+0000 mon.smithi078 (mon.0) 297 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi078", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:53:43.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: audit 2024-09-21T11:53:42.729061+0000 mon.smithi078 (mon.0) 297 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi078", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:53:43.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: audit 2024-09-21T11:53:42.730476+0000 mon.smithi078 (mon.0) 298 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:43.293 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:42 smithi078 bash[20010]: audit 2024-09-21T11:53:42.730476+0000 mon.smithi078 (mon.0) 298 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:43.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: cluster 2024-09-21T11:53:41.399455+0000 mgr.smithi078.aqnwdz (mgr.14203) 38 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:43.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: cluster 2024-09-21T11:53:41.399455+0000 mgr.smithi078.aqnwdz (mgr.14203) 38 : cluster [DBG] pgmap v13: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:43.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: audit 2024-09-21T11:53:42.718979+0000 mon.smithi078 (mon.0) 295 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:43.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: audit 2024-09-21T11:53:42.718979+0000 mon.smithi078 (mon.0) 295 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:43.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: audit 2024-09-21T11:53:42.726990+0000 mon.smithi078 (mon.0) 296 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:43.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: audit 2024-09-21T11:53:42.726990+0000 mon.smithi078 (mon.0) 296 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:43.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: audit 2024-09-21T11:53:42.729061+0000 mon.smithi078 (mon.0) 297 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi078", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:53:43.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: audit 2024-09-21T11:53:42.729061+0000 mon.smithi078 (mon.0) 297 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi078", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:53:43.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: audit 2024-09-21T11:53:42.730476+0000 mon.smithi078 (mon.0) 298 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:43.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:42 smithi195 bash[25267]: audit 2024-09-21T11:53:42.730476+0000 mon.smithi078 (mon.0) 298 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:43.593 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:53:44.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:43 smithi078 bash[20010]: cephadm 2024-09-21T11:53:42.728486+0000 mgr.smithi078.aqnwdz (mgr.14203) 39 : cephadm [INF] Reconfiguring ceph-exporter.smithi078 (monmap changed)... 2024-09-21T11:53:44.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:43 smithi078 bash[20010]: cephadm 2024-09-21T11:53:42.728486+0000 mgr.smithi078.aqnwdz (mgr.14203) 39 : cephadm [INF] Reconfiguring ceph-exporter.smithi078 (monmap changed)... 2024-09-21T11:53:44.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:43 smithi078 bash[20010]: cephadm 2024-09-21T11:53:42.731517+0000 mgr.smithi078.aqnwdz (mgr.14203) 40 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi078 on smithi078 2024-09-21T11:53:44.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:43 smithi078 bash[20010]: cephadm 2024-09-21T11:53:42.731517+0000 mgr.smithi078.aqnwdz (mgr.14203) 40 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi078 on smithi078 2024-09-21T11:53:44.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:43 smithi195 bash[25267]: cephadm 2024-09-21T11:53:42.728486+0000 mgr.smithi078.aqnwdz (mgr.14203) 39 : cephadm [INF] Reconfiguring ceph-exporter.smithi078 (monmap changed)... 2024-09-21T11:53:44.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:43 smithi195 bash[25267]: cephadm 2024-09-21T11:53:42.728486+0000 mgr.smithi078.aqnwdz (mgr.14203) 39 : cephadm [INF] Reconfiguring ceph-exporter.smithi078 (monmap changed)... 2024-09-21T11:53:44.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:43 smithi195 bash[25267]: cephadm 2024-09-21T11:53:42.731517+0000 mgr.smithi078.aqnwdz (mgr.14203) 40 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi078 on smithi078 2024-09-21T11:53:44.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:43 smithi195 bash[25267]: cephadm 2024-09-21T11:53:42.731517+0000 mgr.smithi078.aqnwdz (mgr.14203) 40 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi078 on smithi078 2024-09-21T11:53:45.022 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:44 smithi078 bash[20010]: cluster 2024-09-21T11:53:43.399832+0000 mgr.smithi078.aqnwdz (mgr.14203) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:45.022 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:44 smithi078 bash[20010]: cluster 2024-09-21T11:53:43.399832+0000 mgr.smithi078.aqnwdz (mgr.14203) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:45.348 INFO:teuthology.orchestra.run.smithi078.stdout:# minimal ceph.conf for 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:53:45.348 INFO:teuthology.orchestra.run.smithi078.stdout:[global] 2024-09-21T11:53:45.348 INFO:teuthology.orchestra.run.smithi078.stdout: fsid = 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:53:45.348 INFO:teuthology.orchestra.run.smithi078.stdout: mon_host = [v2:172.21.15.78:3300/0,v1:172.21.15.78:6789/0] [v2:172.21.15.195:3300/0,v1:172.21.15.195:6789/0] 2024-09-21T11:53:45.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:44 smithi195 bash[25267]: cluster 2024-09-21T11:53:43.399832+0000 mgr.smithi078.aqnwdz (mgr.14203) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:45.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:44 smithi195 bash[25267]: cluster 2024-09-21T11:53:43.399832+0000 mgr.smithi078.aqnwdz (mgr.14203) 41 : cluster [DBG] pgmap v14: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:46.104 INFO:tasks.cephadm:Distributing (final) config and client.admin keyring... 2024-09-21T11:53:46.104 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:53:46.104 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd of=/etc/ceph/ceph.conf 2024-09-21T11:53:46.116 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:53:46.116 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:46.171 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:53:46.171 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/ceph/ceph.conf 2024-09-21T11:53:46.186 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:53:46.186 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/ceph/ceph.client.admin.keyring 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.346801+0000 mon.smithi078 (mon.0) 299 : audit [DBG] from='client.? 172.21.15.78:0/3580898681' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.346801+0000 mon.smithi078 (mon.0) 299 : audit [DBG] from='client.? 172.21.15.78:0/3580898681' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.770749+0000 mon.smithi078 (mon.0) 300 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.770749+0000 mon.smithi078 (mon.0) 300 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.778265+0000 mon.smithi078 (mon.0) 301 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.778265+0000 mon.smithi078 (mon.0) 301 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.780359+0000 mon.smithi078 (mon.0) 302 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi078", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.780359+0000 mon.smithi078 (mon.0) 302 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi078", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.782139+0000 mon.smithi078 (mon.0) 303 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:46.239 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:45 smithi195 bash[25267]: audit 2024-09-21T11:53:45.782139+0000 mon.smithi078 (mon.0) 303 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:46.241 DEBUG:tasks.cephadm:set 0 configs 2024-09-21T11:53:46.241 INFO:tasks.cephadm:Deploying OSDs... 2024-09-21T11:53:46.241 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:53:46.242 DEBUG:teuthology.orchestra.run.smithi078:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T11:53:46.246 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-21T11:53:46.246 DEBUG:teuthology.orchestra.run.smithi078:> stat /dev/nvme1n1 2024-09-21T11:53:46.292 INFO:teuthology.orchestra.run.smithi078.stdout: File: /dev/nvme1n1 2024-09-21T11:53:46.292 INFO:teuthology.orchestra.run.smithi078.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T11:53:46.292 INFO:teuthology.orchestra.run.smithi078.stdout:Device: 5h/5d Inode: 960 Links: 1 Device type: 103,2 2024-09-21T11:53:46.292 INFO:teuthology.orchestra.run.smithi078.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T11:53:46.293 INFO:teuthology.orchestra.run.smithi078.stdout:Access: 2024-09-21 11:48:24.893286340 +0000 2024-09-21T11:53:46.293 INFO:teuthology.orchestra.run.smithi078.stdout:Modify: 2024-09-21 11:48:24.841286801 +0000 2024-09-21T11:53:46.293 INFO:teuthology.orchestra.run.smithi078.stdout:Change: 2024-09-21 11:48:24.841286801 +0000 2024-09-21T11:53:46.293 INFO:teuthology.orchestra.run.smithi078.stdout: Birth: - 2024-09-21T11:53:46.293 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-21T11:53:46.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.346801+0000 mon.smithi078 (mon.0) 299 : audit [DBG] from='client.? 172.21.15.78:0/3580898681' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:46.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.346801+0000 mon.smithi078 (mon.0) 299 : audit [DBG] from='client.? 172.21.15.78:0/3580898681' entity='client.admin' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:46.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.770749+0000 mon.smithi078 (mon.0) 300 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:46.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.770749+0000 mon.smithi078 (mon.0) 300 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:46.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.778265+0000 mon.smithi078 (mon.0) 301 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:46.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.778265+0000 mon.smithi078 (mon.0) 301 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:46.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.780359+0000 mon.smithi078 (mon.0) 302 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi078", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:53:46.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.780359+0000 mon.smithi078 (mon.0) 302 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi078", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:53:46.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.782139+0000 mon.smithi078 (mon.0) 303 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:46.333 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:45 smithi078 bash[20010]: audit 2024-09-21T11:53:45.782139+0000 mon.smithi078 (mon.0) 303 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:53:46.342 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records in 2024-09-21T11:53:46.342 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records out 2024-09-21T11:53:46.342 INFO:teuthology.orchestra.run.smithi078.stderr:512 bytes copied, 0.000408718 s, 1.3 MB/s 2024-09-21T11:53:46.343 DEBUG:teuthology.orchestra.run.smithi078:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-21T11:53:46.393 DEBUG:teuthology.orchestra.run.smithi078:> stat /dev/nvme2n1 2024-09-21T11:53:46.440 INFO:teuthology.orchestra.run.smithi078.stdout: File: /dev/nvme2n1 2024-09-21T11:53:46.440 INFO:teuthology.orchestra.run.smithi078.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T11:53:46.441 INFO:teuthology.orchestra.run.smithi078.stdout:Device: 5h/5d Inode: 969 Links: 1 Device type: 103,4 2024-09-21T11:53:46.441 INFO:teuthology.orchestra.run.smithi078.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T11:53:46.441 INFO:teuthology.orchestra.run.smithi078.stdout:Access: 2024-09-21 11:48:25.245283216 +0000 2024-09-21T11:53:46.441 INFO:teuthology.orchestra.run.smithi078.stdout:Modify: 2024-09-21 11:48:25.193283677 +0000 2024-09-21T11:53:46.441 INFO:teuthology.orchestra.run.smithi078.stdout:Change: 2024-09-21 11:48:25.193283677 +0000 2024-09-21T11:53:46.441 INFO:teuthology.orchestra.run.smithi078.stdout: Birth: - 2024-09-21T11:53:46.441 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-21T11:53:46.494 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records in 2024-09-21T11:53:46.494 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records out 2024-09-21T11:53:46.494 INFO:teuthology.orchestra.run.smithi078.stderr:512 bytes copied, 0.000329149 s, 1.6 MB/s 2024-09-21T11:53:46.495 DEBUG:teuthology.orchestra.run.smithi078:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-21T11:53:46.546 DEBUG:teuthology.orchestra.run.smithi078:> stat /dev/nvme3n1 2024-09-21T11:53:46.592 INFO:teuthology.orchestra.run.smithi078.stdout: File: /dev/nvme3n1 2024-09-21T11:53:46.593 INFO:teuthology.orchestra.run.smithi078.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T11:53:46.593 INFO:teuthology.orchestra.run.smithi078.stdout:Device: 5h/5d Inode: 978 Links: 1 Device type: 103,6 2024-09-21T11:53:46.593 INFO:teuthology.orchestra.run.smithi078.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T11:53:46.593 INFO:teuthology.orchestra.run.smithi078.stdout:Access: 2024-09-21 11:48:25.597280090 +0000 2024-09-21T11:53:46.593 INFO:teuthology.orchestra.run.smithi078.stdout:Modify: 2024-09-21 11:48:25.549280517 +0000 2024-09-21T11:53:46.593 INFO:teuthology.orchestra.run.smithi078.stdout:Change: 2024-09-21 11:48:25.549280517 +0000 2024-09-21T11:53:46.593 INFO:teuthology.orchestra.run.smithi078.stdout: Birth: - 2024-09-21T11:53:46.593 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-21T11:53:46.647 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records in 2024-09-21T11:53:46.647 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records out 2024-09-21T11:53:46.647 INFO:teuthology.orchestra.run.smithi078.stderr:512 bytes copied, 0.000400461 s, 1.3 MB/s 2024-09-21T11:53:46.648 DEBUG:teuthology.orchestra.run.smithi078:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-21T11:53:46.699 DEBUG:teuthology.orchestra.run.smithi078:> stat /dev/nvme4n1 2024-09-21T11:53:46.745 INFO:teuthology.orchestra.run.smithi078.stdout: File: /dev/nvme4n1 2024-09-21T11:53:46.745 INFO:teuthology.orchestra.run.smithi078.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T11:53:46.745 INFO:teuthology.orchestra.run.smithi078.stdout:Device: 5h/5d Inode: 987 Links: 1 Device type: 103,8 2024-09-21T11:53:46.745 INFO:teuthology.orchestra.run.smithi078.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T11:53:46.745 INFO:teuthology.orchestra.run.smithi078.stdout:Access: 2024-09-21 11:48:25.945277000 +0000 2024-09-21T11:53:46.746 INFO:teuthology.orchestra.run.smithi078.stdout:Modify: 2024-09-21 11:48:25.893277463 +0000 2024-09-21T11:53:46.746 INFO:teuthology.orchestra.run.smithi078.stdout:Change: 2024-09-21 11:48:25.893277463 +0000 2024-09-21T11:53:46.746 INFO:teuthology.orchestra.run.smithi078.stdout: Birth: - 2024-09-21T11:53:46.746 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-21T11:53:46.803 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records in 2024-09-21T11:53:46.803 INFO:teuthology.orchestra.run.smithi078.stderr:1+0 records out 2024-09-21T11:53:46.803 INFO:teuthology.orchestra.run.smithi078.stderr:512 bytes copied, 0.000319346 s, 1.6 MB/s 2024-09-21T11:53:46.804 DEBUG:teuthology.orchestra.run.smithi078:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-21T11:53:46.853 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:53:46.854 DEBUG:teuthology.orchestra.run.smithi195:> dd if=/scratch_devs of=/dev/stdout 2024-09-21T11:53:46.859 DEBUG:teuthology.misc:devs=['/dev/nvme1n1', '/dev/nvme2n1', '/dev/nvme3n1', '/dev/nvme4n1'] 2024-09-21T11:53:46.859 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme1n1 2024-09-21T11:53:46.906 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme1n1 2024-09-21T11:53:46.906 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T11:53:46.906 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 965 Links: 1 Device type: 103,2 2024-09-21T11:53:46.906 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T11:53:46.906 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-09-21 11:48:27.605297090 +0000 2024-09-21T11:53:46.906 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-09-21 11:48:27.553297555 +0000 2024-09-21T11:53:46.907 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-09-21 11:48:27.553297555 +0000 2024-09-21T11:53:46.907 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-09-21T11:53:46.907 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme1n1 of=/dev/null count=1 2024-09-21T11:53:46.960 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-09-21T11:53:46.960 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-09-21T11:53:46.960 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000223929 s, 2.3 MB/s 2024-09-21T11:53:46.961 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme1n1 2024-09-21T11:53:47.016 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme2n1 2024-09-21T11:53:47.062 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme2n1 2024-09-21T11:53:47.062 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T11:53:47.062 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 974 Links: 1 Device type: 103,4 2024-09-21T11:53:47.062 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T11:53:47.063 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-09-21 11:48:27.961293912 +0000 2024-09-21T11:53:47.063 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-09-21 11:48:27.913294339 +0000 2024-09-21T11:53:47.063 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-09-21 11:48:27.913294339 +0000 2024-09-21T11:53:47.063 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-09-21T11:53:47.063 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme2n1 of=/dev/null count=1 2024-09-21T11:53:47.116 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-09-21T11:53:47.117 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-09-21T11:53:47.117 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000351335 s, 1.5 MB/s 2024-09-21T11:53:47.118 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme2n1 2024-09-21T11:53:47.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:46 smithi078 bash[20010]: cluster 2024-09-21T11:53:45.400142+0000 mgr.smithi078.aqnwdz (mgr.14203) 42 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:47.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:46 smithi078 bash[20010]: cluster 2024-09-21T11:53:45.400142+0000 mgr.smithi078.aqnwdz (mgr.14203) 42 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:47.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:46 smithi078 bash[20010]: cephadm 2024-09-21T11:53:45.779792+0000 mgr.smithi078.aqnwdz (mgr.14203) 43 : cephadm [INF] Reconfiguring crash.smithi078 (monmap changed)... 2024-09-21T11:53:47.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:46 smithi078 bash[20010]: cephadm 2024-09-21T11:53:45.779792+0000 mgr.smithi078.aqnwdz (mgr.14203) 43 : cephadm [INF] Reconfiguring crash.smithi078 (monmap changed)... 2024-09-21T11:53:47.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:46 smithi078 bash[20010]: cephadm 2024-09-21T11:53:45.783674+0000 mgr.smithi078.aqnwdz (mgr.14203) 44 : cephadm [INF] Reconfiguring daemon crash.smithi078 on smithi078 2024-09-21T11:53:47.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:46 smithi078 bash[20010]: cephadm 2024-09-21T11:53:45.783674+0000 mgr.smithi078.aqnwdz (mgr.14203) 44 : cephadm [INF] Reconfiguring daemon crash.smithi078 on smithi078 2024-09-21T11:53:47.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:46 smithi078 bash[20010]: audit 2024-09-21T11:53:46.724604+0000 mon.smithi078 (mon.0) 304 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:47.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:46 smithi078 bash[20010]: audit 2024-09-21T11:53:46.724604+0000 mon.smithi078 (mon.0) 304 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:47.167 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme3n1 2024-09-21T11:53:47.214 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme3n1 2024-09-21T11:53:47.214 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T11:53:47.214 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 983 Links: 1 Device type: 103,6 2024-09-21T11:53:47.215 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T11:53:47.215 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-09-21 11:48:28.309290804 +0000 2024-09-21T11:53:47.215 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-09-21 11:48:28.257291267 +0000 2024-09-21T11:53:47.215 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-09-21 11:48:28.257291267 +0000 2024-09-21T11:53:47.215 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-09-21T11:53:47.215 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme3n1 of=/dev/null count=1 2024-09-21T11:53:47.266 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:46 smithi195 bash[25267]: cluster 2024-09-21T11:53:45.400142+0000 mgr.smithi078.aqnwdz (mgr.14203) 42 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:47.267 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:46 smithi195 bash[25267]: cluster 2024-09-21T11:53:45.400142+0000 mgr.smithi078.aqnwdz (mgr.14203) 42 : cluster [DBG] pgmap v15: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:47.267 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:46 smithi195 bash[25267]: cephadm 2024-09-21T11:53:45.779792+0000 mgr.smithi078.aqnwdz (mgr.14203) 43 : cephadm [INF] Reconfiguring crash.smithi078 (monmap changed)... 2024-09-21T11:53:47.267 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:46 smithi195 bash[25267]: cephadm 2024-09-21T11:53:45.779792+0000 mgr.smithi078.aqnwdz (mgr.14203) 43 : cephadm [INF] Reconfiguring crash.smithi078 (monmap changed)... 2024-09-21T11:53:47.267 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:46 smithi195 bash[25267]: cephadm 2024-09-21T11:53:45.783674+0000 mgr.smithi078.aqnwdz (mgr.14203) 44 : cephadm [INF] Reconfiguring daemon crash.smithi078 on smithi078 2024-09-21T11:53:47.267 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:46 smithi195 bash[25267]: cephadm 2024-09-21T11:53:45.783674+0000 mgr.smithi078.aqnwdz (mgr.14203) 44 : cephadm [INF] Reconfiguring daemon crash.smithi078 on smithi078 2024-09-21T11:53:47.267 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:46 smithi195 bash[25267]: audit 2024-09-21T11:53:46.724604+0000 mon.smithi078 (mon.0) 304 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:47.267 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:46 smithi195 bash[25267]: audit 2024-09-21T11:53:46.724604+0000 mon.smithi078 (mon.0) 304 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:53:47.267 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-09-21T11:53:47.268 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-09-21T11:53:47.268 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000215241 s, 2.4 MB/s 2024-09-21T11:53:47.269 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme3n1 2024-09-21T11:53:47.319 DEBUG:teuthology.orchestra.run.smithi195:> stat /dev/nvme4n1 2024-09-21T11:53:47.366 INFO:teuthology.orchestra.run.smithi195.stdout: File: /dev/nvme4n1 2024-09-21T11:53:47.366 INFO:teuthology.orchestra.run.smithi195.stdout: Size: 0 Blocks: 0 IO Block: 4096 block special file 2024-09-21T11:53:47.366 INFO:teuthology.orchestra.run.smithi195.stdout:Device: 5h/5d Inode: 992 Links: 1 Device type: 103,8 2024-09-21T11:53:47.366 INFO:teuthology.orchestra.run.smithi195.stdout:Access: (0660/brw-rw----) Uid: ( 0/ root) Gid: ( 6/ disk) 2024-09-21T11:53:47.366 INFO:teuthology.orchestra.run.smithi195.stdout:Access: 2024-09-21 11:48:28.661287663 +0000 2024-09-21T11:53:47.366 INFO:teuthology.orchestra.run.smithi195.stdout:Modify: 2024-09-21 11:48:28.617288054 +0000 2024-09-21T11:53:47.366 INFO:teuthology.orchestra.run.smithi195.stdout:Change: 2024-09-21 11:48:28.617288054 +0000 2024-09-21T11:53:47.366 INFO:teuthology.orchestra.run.smithi195.stdout: Birth: - 2024-09-21T11:53:47.367 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd if=/dev/nvme4n1 of=/dev/null count=1 2024-09-21T11:53:47.420 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records in 2024-09-21T11:53:47.421 INFO:teuthology.orchestra.run.smithi195.stderr:1+0 records out 2024-09-21T11:53:47.421 INFO:teuthology.orchestra.run.smithi195.stderr:512 bytes copied, 0.000276341 s, 1.9 MB/s 2024-09-21T11:53:47.422 DEBUG:teuthology.orchestra.run.smithi195:> ! mount | grep -v devtmpfs | grep -q /dev/nvme4n1 2024-09-21T11:53:47.471 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph orch apply osd --all-available-devices 2024-09-21T11:53:49.071 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:48 smithi078 bash[20010]: cluster 2024-09-21T11:53:47.400532+0000 mgr.smithi078.aqnwdz (mgr.14203) 45 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:49.071 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:48 smithi078 bash[20010]: cluster 2024-09-21T11:53:47.400532+0000 mgr.smithi078.aqnwdz (mgr.14203) 45 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:49.071 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:48 smithi078 bash[20010]: audit 2024-09-21T11:53:48.237526+0000 mon.smithi078 (mon.0) 305 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:49.071 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:48 smithi078 bash[20010]: audit 2024-09-21T11:53:48.237526+0000 mon.smithi078 (mon.0) 305 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:49.071 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:48 smithi078 bash[20010]: audit 2024-09-21T11:53:48.246727+0000 mon.smithi078 (mon.0) 306 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:49.071 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:48 smithi078 bash[20010]: audit 2024-09-21T11:53:48.246727+0000 mon.smithi078 (mon.0) 306 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:49.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:48 smithi195 bash[25267]: cluster 2024-09-21T11:53:47.400532+0000 mgr.smithi078.aqnwdz (mgr.14203) 45 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:49.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:48 smithi195 bash[25267]: cluster 2024-09-21T11:53:47.400532+0000 mgr.smithi078.aqnwdz (mgr.14203) 45 : cluster [DBG] pgmap v16: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:49.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:48 smithi195 bash[25267]: audit 2024-09-21T11:53:48.237526+0000 mon.smithi078 (mon.0) 305 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:49.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:48 smithi195 bash[25267]: audit 2024-09-21T11:53:48.237526+0000 mon.smithi078 (mon.0) 305 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:49.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:48 smithi195 bash[25267]: audit 2024-09-21T11:53:48.246727+0000 mon.smithi078 (mon.0) 306 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:49.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:48 smithi195 bash[25267]: audit 2024-09-21T11:53:48.246727+0000 mon.smithi078 (mon.0) 306 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:50.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:49 smithi195 bash[25267]: cephadm 2024-09-21T11:53:48.248300+0000 mgr.smithi078.aqnwdz (mgr.14203) 46 : cephadm [INF] Reconfiguring alertmanager.smithi078 (dependencies changed)... 2024-09-21T11:53:50.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:49 smithi195 bash[25267]: cephadm 2024-09-21T11:53:48.248300+0000 mgr.smithi078.aqnwdz (mgr.14203) 46 : cephadm [INF] Reconfiguring alertmanager.smithi078 (dependencies changed)... 2024-09-21T11:53:50.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:49 smithi195 bash[25267]: cephadm 2024-09-21T11:53:48.258946+0000 mgr.smithi078.aqnwdz (mgr.14203) 47 : cephadm [INF] Reconfiguring daemon alertmanager.smithi078 on smithi078 2024-09-21T11:53:50.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:49 smithi195 bash[25267]: cephadm 2024-09-21T11:53:48.258946+0000 mgr.smithi078.aqnwdz (mgr.14203) 47 : cephadm [INF] Reconfiguring daemon alertmanager.smithi078 on smithi078 2024-09-21T11:53:50.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:49 smithi078 bash[20010]: cephadm 2024-09-21T11:53:48.248300+0000 mgr.smithi078.aqnwdz (mgr.14203) 46 : cephadm [INF] Reconfiguring alertmanager.smithi078 (dependencies changed)... 2024-09-21T11:53:50.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:49 smithi078 bash[20010]: cephadm 2024-09-21T11:53:48.248300+0000 mgr.smithi078.aqnwdz (mgr.14203) 46 : cephadm [INF] Reconfiguring alertmanager.smithi078 (dependencies changed)... 2024-09-21T11:53:50.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:49 smithi078 bash[20010]: cephadm 2024-09-21T11:53:48.258946+0000 mgr.smithi078.aqnwdz (mgr.14203) 47 : cephadm [INF] Reconfiguring daemon alertmanager.smithi078 on smithi078 2024-09-21T11:53:50.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:49 smithi078 bash[20010]: cephadm 2024-09-21T11:53:48.258946+0000 mgr.smithi078.aqnwdz (mgr.14203) 47 : cephadm [INF] Reconfiguring daemon alertmanager.smithi078 on smithi078 2024-09-21T11:53:51.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:50 smithi078 bash[20010]: cluster 2024-09-21T11:53:49.400911+0000 mgr.smithi078.aqnwdz (mgr.14203) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:51.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:50 smithi078 bash[20010]: cluster 2024-09-21T11:53:49.400911+0000 mgr.smithi078.aqnwdz (mgr.14203) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:51.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:50 smithi195 bash[25267]: cluster 2024-09-21T11:53:49.400911+0000 mgr.smithi078.aqnwdz (mgr.14203) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:51.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:50 smithi195 bash[25267]: cluster 2024-09-21T11:53:49.400911+0000 mgr.smithi078.aqnwdz (mgr.14203) 48 : cluster [DBG] pgmap v17: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:52.264 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi195/config 2024-09-21T11:53:53.077 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:52 smithi078 bash[20010]: cluster 2024-09-21T11:53:51.401294+0000 mgr.smithi078.aqnwdz (mgr.14203) 49 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:53.160 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:52 smithi078 bash[20010]: cluster 2024-09-21T11:53:51.401294+0000 mgr.smithi078.aqnwdz (mgr.14203) 49 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:53.246 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:52 smithi195 bash[25267]: cluster 2024-09-21T11:53:51.401294+0000 mgr.smithi078.aqnwdz (mgr.14203) 49 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:53.247 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:52 smithi195 bash[25267]: cluster 2024-09-21T11:53:51.401294+0000 mgr.smithi078.aqnwdz (mgr.14203) 49 : cluster [DBG] pgmap v18: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:53.603 INFO:teuthology.orchestra.run.smithi195.stdout:Scheduled osd.all-available-devices update... 2024-09-21T11:53:54.140 INFO:tasks.cephadm:Waiting for 8 OSDs to come up... 2024-09-21T11:53:54.140 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:53:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:54 smithi195 bash[25267]: audit 2024-09-21T11:53:53.004894+0000 mon.smithi078 (mon.0) 307 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:54 smithi195 bash[25267]: audit 2024-09-21T11:53:53.004894+0000 mon.smithi078 (mon.0) 307 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:54 smithi195 bash[25267]: audit 2024-09-21T11:53:53.008959+0000 mon.smithi078 (mon.0) 308 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:54 smithi195 bash[25267]: audit 2024-09-21T11:53:53.008959+0000 mon.smithi078 (mon.0) 308 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:54 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.009962+0000 mgr.smithi078.aqnwdz (mgr.14203) 50 : cephadm [INF] Reconfiguring grafana.smithi078 (dependencies changed)... 2024-09-21T11:53:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:54 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.009962+0000 mgr.smithi078.aqnwdz (mgr.14203) 50 : cephadm [INF] Reconfiguring grafana.smithi078 (dependencies changed)... 2024-09-21T11:53:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:54 smithi195 bash[25267]: audit 2024-09-21T11:53:53.595840+0000 mon.smithi078 (mon.0) 309 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:54 smithi195 bash[25267]: audit 2024-09-21T11:53:53.595840+0000 mon.smithi078 (mon.0) 309 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:54 smithi078 bash[20010]: audit 2024-09-21T11:53:53.004894+0000 mon.smithi078 (mon.0) 307 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:54 smithi078 bash[20010]: audit 2024-09-21T11:53:53.004894+0000 mon.smithi078 (mon.0) 307 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:54 smithi078 bash[20010]: audit 2024-09-21T11:53:53.008959+0000 mon.smithi078 (mon.0) 308 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:54 smithi078 bash[20010]: audit 2024-09-21T11:53:53.008959+0000 mon.smithi078 (mon.0) 308 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:54 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.009962+0000 mgr.smithi078.aqnwdz (mgr.14203) 50 : cephadm [INF] Reconfiguring grafana.smithi078 (dependencies changed)... 2024-09-21T11:53:54.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:54 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.009962+0000 mgr.smithi078.aqnwdz (mgr.14203) 50 : cephadm [INF] Reconfiguring grafana.smithi078 (dependencies changed)... 2024-09-21T11:53:54.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:54 smithi078 bash[20010]: audit 2024-09-21T11:53:53.595840+0000 mon.smithi078 (mon.0) 309 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:54.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:54 smithi078 bash[20010]: audit 2024-09-21T11:53:53.595840+0000 mon.smithi078 (mon.0) 309 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:55.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.271584+0000 mgr.smithi078.aqnwdz (mgr.14203) 51 : cephadm [INF] Reconfiguring daemon grafana.smithi078 on smithi078 2024-09-21T11:53:55.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.271584+0000 mgr.smithi078.aqnwdz (mgr.14203) 51 : cephadm [INF] Reconfiguring daemon grafana.smithi078 on smithi078 2024-09-21T11:53:55.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cluster 2024-09-21T11:53:53.401679+0000 mgr.smithi078.aqnwdz (mgr.14203) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:55.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cluster 2024-09-21T11:53:53.401679+0000 mgr.smithi078.aqnwdz (mgr.14203) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:55.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: audit 2024-09-21T11:53:53.579676+0000 mgr.smithi078.aqnwdz (mgr.14203) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:53:55.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: audit 2024-09-21T11:53:53.579676+0000 mgr.smithi078.aqnwdz (mgr.14203) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:53:55.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.588882+0000 mgr.smithi078.aqnwdz (mgr.14203) 54 : cephadm [INF] Marking host: smithi078 for OSDSpec preview refresh. 2024-09-21T11:53:55.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.588882+0000 mgr.smithi078.aqnwdz (mgr.14203) 54 : cephadm [INF] Marking host: smithi078 for OSDSpec preview refresh. 2024-09-21T11:53:55.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.589024+0000 mgr.smithi078.aqnwdz (mgr.14203) 55 : cephadm [INF] Marking host: smithi195 for OSDSpec preview refresh. 2024-09-21T11:53:55.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.589024+0000 mgr.smithi078.aqnwdz (mgr.14203) 55 : cephadm [INF] Marking host: smithi195 for OSDSpec preview refresh. 2024-09-21T11:53:55.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.589884+0000 mgr.smithi078.aqnwdz (mgr.14203) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-21T11:53:55.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:55 smithi195 bash[25267]: cephadm 2024-09-21T11:53:53.589884+0000 mgr.smithi078.aqnwdz (mgr.14203) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-21T11:53:55.385 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.271584+0000 mgr.smithi078.aqnwdz (mgr.14203) 51 : cephadm [INF] Reconfiguring daemon grafana.smithi078 on smithi078 2024-09-21T11:53:55.385 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.271584+0000 mgr.smithi078.aqnwdz (mgr.14203) 51 : cephadm [INF] Reconfiguring daemon grafana.smithi078 on smithi078 2024-09-21T11:53:55.385 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cluster 2024-09-21T11:53:53.401679+0000 mgr.smithi078.aqnwdz (mgr.14203) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:55.385 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cluster 2024-09-21T11:53:53.401679+0000 mgr.smithi078.aqnwdz (mgr.14203) 52 : cluster [DBG] pgmap v19: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:55.385 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: audit 2024-09-21T11:53:53.579676+0000 mgr.smithi078.aqnwdz (mgr.14203) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:53:55.386 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: audit 2024-09-21T11:53:53.579676+0000 mgr.smithi078.aqnwdz (mgr.14203) 53 : audit [DBG] from='client.24099 -' entity='client.admin' cmd=[{"prefix": "orch apply osd", "all_available_devices": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:53:55.386 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.588882+0000 mgr.smithi078.aqnwdz (mgr.14203) 54 : cephadm [INF] Marking host: smithi078 for OSDSpec preview refresh. 2024-09-21T11:53:55.386 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.588882+0000 mgr.smithi078.aqnwdz (mgr.14203) 54 : cephadm [INF] Marking host: smithi078 for OSDSpec preview refresh. 2024-09-21T11:53:55.386 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.589024+0000 mgr.smithi078.aqnwdz (mgr.14203) 55 : cephadm [INF] Marking host: smithi195 for OSDSpec preview refresh. 2024-09-21T11:53:55.386 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.589024+0000 mgr.smithi078.aqnwdz (mgr.14203) 55 : cephadm [INF] Marking host: smithi195 for OSDSpec preview refresh. 2024-09-21T11:53:55.386 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.589884+0000 mgr.smithi078.aqnwdz (mgr.14203) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-21T11:53:55.386 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:55 smithi078 bash[20010]: cephadm 2024-09-21T11:53:53.589884+0000 mgr.smithi078.aqnwdz (mgr.14203) 56 : cephadm [INF] Saving service osd.all-available-devices spec with placement * 2024-09-21T11:53:57.295 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:57 smithi078 bash[20010]: cluster 2024-09-21T11:53:55.402076+0000 mgr.smithi078.aqnwdz (mgr.14203) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:57.296 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:57 smithi078 bash[20010]: cluster 2024-09-21T11:53:55.402076+0000 mgr.smithi078.aqnwdz (mgr.14203) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:57.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:57 smithi195 bash[25267]: cluster 2024-09-21T11:53:55.402076+0000 mgr.smithi078.aqnwdz (mgr.14203) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:57.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:57 smithi195 bash[25267]: cluster 2024-09-21T11:53:55.402076+0000 mgr.smithi078.aqnwdz (mgr.14203) 57 : cluster [DBG] pgmap v20: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:58.946 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:53:59.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:59 smithi195 bash[25267]: cluster 2024-09-21T11:53:57.402367+0000 mgr.smithi078.aqnwdz (mgr.14203) 58 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:59.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:59 smithi195 bash[25267]: cluster 2024-09-21T11:53:57.402367+0000 mgr.smithi078.aqnwdz (mgr.14203) 58 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:59.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:59 smithi195 bash[25267]: audit 2024-09-21T11:53:58.168416+0000 mon.smithi078 (mon.0) 310 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:59.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:59 smithi195 bash[25267]: audit 2024-09-21T11:53:58.168416+0000 mon.smithi078 (mon.0) 310 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:59.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:59 smithi195 bash[25267]: audit 2024-09-21T11:53:58.174646+0000 mon.smithi078 (mon.0) 311 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:59.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:53:59 smithi195 bash[25267]: audit 2024-09-21T11:53:58.174646+0000 mon.smithi078 (mon.0) 311 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:59.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:59 smithi078 bash[20010]: cluster 2024-09-21T11:53:57.402367+0000 mgr.smithi078.aqnwdz (mgr.14203) 58 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:59.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:59 smithi078 bash[20010]: cluster 2024-09-21T11:53:57.402367+0000 mgr.smithi078.aqnwdz (mgr.14203) 58 : cluster [DBG] pgmap v21: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:53:59.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:59 smithi078 bash[20010]: audit 2024-09-21T11:53:58.168416+0000 mon.smithi078 (mon.0) 310 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:59.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:59 smithi078 bash[20010]: audit 2024-09-21T11:53:58.168416+0000 mon.smithi078 (mon.0) 310 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:59.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:59 smithi078 bash[20010]: audit 2024-09-21T11:53:58.174646+0000 mon.smithi078 (mon.0) 311 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:53:59.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:53:59 smithi078 bash[20010]: audit 2024-09-21T11:53:58.174646+0000 mon.smithi078 (mon.0) 311 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:00.242 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:00 smithi078 bash[20010]: cephadm 2024-09-21T11:53:58.175651+0000 mgr.smithi078.aqnwdz (mgr.14203) 59 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T11:54:00.242 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:00 smithi078 bash[20010]: cephadm 2024-09-21T11:53:58.175651+0000 mgr.smithi078.aqnwdz (mgr.14203) 59 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T11:54:00.242 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:00 smithi078 bash[20010]: cephadm 2024-09-21T11:53:58.418927+0000 mgr.smithi078.aqnwdz (mgr.14203) 60 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T11:54:00.242 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:00 smithi078 bash[20010]: cephadm 2024-09-21T11:53:58.418927+0000 mgr.smithi078.aqnwdz (mgr.14203) 60 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T11:54:00.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:00 smithi195 bash[25267]: cephadm 2024-09-21T11:53:58.175651+0000 mgr.smithi078.aqnwdz (mgr.14203) 59 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T11:54:00.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:00 smithi195 bash[25267]: cephadm 2024-09-21T11:53:58.175651+0000 mgr.smithi078.aqnwdz (mgr.14203) 59 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T11:54:00.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:00 smithi195 bash[25267]: cephadm 2024-09-21T11:53:58.418927+0000 mgr.smithi078.aqnwdz (mgr.14203) 60 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T11:54:00.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:00 smithi195 bash[25267]: cephadm 2024-09-21T11:53:58.418927+0000 mgr.smithi078.aqnwdz (mgr.14203) 60 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T11:54:01.232 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:59.402754+0000 mgr.smithi078.aqnwdz (mgr.14203) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:01.232 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:01 smithi078 bash[20010]: cluster 2024-09-21T11:53:59.402754+0000 mgr.smithi078.aqnwdz (mgr.14203) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:01.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:01 smithi195 bash[25267]: cluster 2024-09-21T11:53:59.402754+0000 mgr.smithi078.aqnwdz (mgr.14203) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:01.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:01 smithi195 bash[25267]: cluster 2024-09-21T11:53:59.402754+0000 mgr.smithi078.aqnwdz (mgr.14203) 61 : cluster [DBG] pgmap v22: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:01.611 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:54:02.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:02 smithi195 bash[25267]: audit 2024-09-21T11:54:01.610022+0000 mon.smithi078 (mon.0) 312 : audit [DBG] from='client.? 172.21.15.78:0/2315093815' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:02.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:02 smithi195 bash[25267]: audit 2024-09-21T11:54:01.610022+0000 mon.smithi078 (mon.0) 312 : audit [DBG] from='client.? 172.21.15.78:0/2315093815' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:02.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:02 smithi195 bash[25267]: audit 2024-09-21T11:54:01.724491+0000 mon.smithi078 (mon.0) 313 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:02.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:02 smithi195 bash[25267]: audit 2024-09-21T11:54:01.724491+0000 mon.smithi078 (mon.0) 313 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:02.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:02 smithi078 bash[20010]: audit 2024-09-21T11:54:01.610022+0000 mon.smithi078 (mon.0) 312 : audit [DBG] from='client.? 172.21.15.78:0/2315093815' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:02.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:02 smithi078 bash[20010]: audit 2024-09-21T11:54:01.610022+0000 mon.smithi078 (mon.0) 312 : audit [DBG] from='client.? 172.21.15.78:0/2315093815' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:02.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:02 smithi078 bash[20010]: audit 2024-09-21T11:54:01.724491+0000 mon.smithi078 (mon.0) 313 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:02.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:02 smithi078 bash[20010]: audit 2024-09-21T11:54:01.724491+0000 mon.smithi078 (mon.0) 313 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:02.747 INFO:teuthology.orchestra.run.smithi078.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-09-21T11:54:03.337 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:03 smithi078 bash[20010]: cluster 2024-09-21T11:54:01.403061+0000 mgr.smithi078.aqnwdz (mgr.14203) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:03.338 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:03 smithi078 bash[20010]: cluster 2024-09-21T11:54:01.403061+0000 mgr.smithi078.aqnwdz (mgr.14203) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:03 smithi195 bash[25267]: cluster 2024-09-21T11:54:01.403061+0000 mgr.smithi078.aqnwdz (mgr.14203) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:03 smithi195 bash[25267]: cluster 2024-09-21T11:54:01.403061+0000 mgr.smithi078.aqnwdz (mgr.14203) 62 : cluster [DBG] pgmap v23: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:03.748 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:54:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: cluster 2024-09-21T11:54:03.403373+0000 mgr.smithi078.aqnwdz (mgr.14203) 63 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: cluster 2024-09-21T11:54:03.403373+0000 mgr.smithi078.aqnwdz (mgr.14203) 63 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: audit 2024-09-21T11:54:04.870738+0000 mon.smithi078 (mon.0) 314 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: audit 2024-09-21T11:54:04.870738+0000 mon.smithi078 (mon.0) 314 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: audit 2024-09-21T11:54:04.876242+0000 mon.smithi078 (mon.0) 315 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: audit 2024-09-21T11:54:04.876242+0000 mon.smithi078 (mon.0) 315 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: audit 2024-09-21T11:54:04.877358+0000 mon.smithi078 (mon.0) 316 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:54:05.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: audit 2024-09-21T11:54:04.877358+0000 mon.smithi078 (mon.0) 316 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:54:05.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: audit 2024-09-21T11:54:04.878093+0000 mon.smithi078 (mon.0) 317 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:05.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:05 smithi195 bash[25267]: audit 2024-09-21T11:54:04.878093+0000 mon.smithi078 (mon.0) 317 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:05.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: cluster 2024-09-21T11:54:03.403373+0000 mgr.smithi078.aqnwdz (mgr.14203) 63 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:05.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: cluster 2024-09-21T11:54:03.403373+0000 mgr.smithi078.aqnwdz (mgr.14203) 63 : cluster [DBG] pgmap v24: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:05.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: audit 2024-09-21T11:54:04.870738+0000 mon.smithi078 (mon.0) 314 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:05.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: audit 2024-09-21T11:54:04.870738+0000 mon.smithi078 (mon.0) 314 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:05.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: audit 2024-09-21T11:54:04.876242+0000 mon.smithi078 (mon.0) 315 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:05.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: audit 2024-09-21T11:54:04.876242+0000 mon.smithi078 (mon.0) 315 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:05.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: audit 2024-09-21T11:54:04.877358+0000 mon.smithi078 (mon.0) 316 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:54:05.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: audit 2024-09-21T11:54:04.877358+0000 mon.smithi078 (mon.0) 316 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.ceph-exporter.smithi195", "caps": ["mon", "profile ceph-exporter", "mon", "allow r", "mgr", "allow r", "osd", "allow r"]} : dispatch 2024-09-21T11:54:05.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: audit 2024-09-21T11:54:04.878093+0000 mon.smithi078 (mon.0) 317 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:05.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:05 smithi078 bash[20010]: audit 2024-09-21T11:54:04.878093+0000 mon.smithi078 (mon.0) 317 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:06.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:06 smithi078 bash[20010]: cephadm 2024-09-21T11:54:04.877066+0000 mgr.smithi078.aqnwdz (mgr.14203) 64 : cephadm [INF] Reconfiguring ceph-exporter.smithi195 (monmap changed)... 2024-09-21T11:54:06.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:06 smithi078 bash[20010]: cephadm 2024-09-21T11:54:04.877066+0000 mgr.smithi078.aqnwdz (mgr.14203) 64 : cephadm [INF] Reconfiguring ceph-exporter.smithi195 (monmap changed)... 2024-09-21T11:54:06.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:06 smithi078 bash[20010]: cephadm 2024-09-21T11:54:04.878806+0000 mgr.smithi078.aqnwdz (mgr.14203) 65 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi195 on smithi195 2024-09-21T11:54:06.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:06 smithi078 bash[20010]: cephadm 2024-09-21T11:54:04.878806+0000 mgr.smithi078.aqnwdz (mgr.14203) 65 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi195 on smithi195 2024-09-21T11:54:06.342 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:06 smithi195 bash[25267]: cephadm 2024-09-21T11:54:04.877066+0000 mgr.smithi078.aqnwdz (mgr.14203) 64 : cephadm [INF] Reconfiguring ceph-exporter.smithi195 (monmap changed)... 2024-09-21T11:54:06.342 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:06 smithi195 bash[25267]: cephadm 2024-09-21T11:54:04.877066+0000 mgr.smithi078.aqnwdz (mgr.14203) 64 : cephadm [INF] Reconfiguring ceph-exporter.smithi195 (monmap changed)... 2024-09-21T11:54:06.342 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:06 smithi195 bash[25267]: cephadm 2024-09-21T11:54:04.878806+0000 mgr.smithi078.aqnwdz (mgr.14203) 65 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi195 on smithi195 2024-09-21T11:54:06.342 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:06 smithi195 bash[25267]: cephadm 2024-09-21T11:54:04.878806+0000 mgr.smithi078.aqnwdz (mgr.14203) 65 : cephadm [INF] Reconfiguring daemon ceph-exporter.smithi195 on smithi195 2024-09-21T11:54:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: cluster 2024-09-21T11:54:05.403768+0000 mgr.smithi078.aqnwdz (mgr.14203) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: cluster 2024-09-21T11:54:05.403768+0000 mgr.smithi078.aqnwdz (mgr.14203) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: audit 2024-09-21T11:54:06.952471+0000 mon.smithi078 (mon.0) 318 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: audit 2024-09-21T11:54:06.952471+0000 mon.smithi078 (mon.0) 318 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: audit 2024-09-21T11:54:06.962465+0000 mon.smithi078 (mon.0) 319 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:07.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: audit 2024-09-21T11:54:06.962465+0000 mon.smithi078 (mon.0) 319 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:07.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: audit 2024-09-21T11:54:06.964724+0000 mon.smithi078 (mon.0) 320 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:54:07.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: audit 2024-09-21T11:54:06.964724+0000 mon.smithi078 (mon.0) 320 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:54:07.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: audit 2024-09-21T11:54:06.966732+0000 mon.smithi078 (mon.0) 321 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:07.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:07 smithi195 bash[25267]: audit 2024-09-21T11:54:06.966732+0000 mon.smithi078 (mon.0) 321 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:07.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: cluster 2024-09-21T11:54:05.403768+0000 mgr.smithi078.aqnwdz (mgr.14203) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:07.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: cluster 2024-09-21T11:54:05.403768+0000 mgr.smithi078.aqnwdz (mgr.14203) 66 : cluster [DBG] pgmap v25: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:07.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: audit 2024-09-21T11:54:06.952471+0000 mon.smithi078 (mon.0) 318 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:07.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: audit 2024-09-21T11:54:06.952471+0000 mon.smithi078 (mon.0) 318 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:07.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: audit 2024-09-21T11:54:06.962465+0000 mon.smithi078 (mon.0) 319 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:07.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: audit 2024-09-21T11:54:06.962465+0000 mon.smithi078 (mon.0) 319 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:07.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: audit 2024-09-21T11:54:06.964724+0000 mon.smithi078 (mon.0) 320 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:54:07.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: audit 2024-09-21T11:54:06.964724+0000 mon.smithi078 (mon.0) 320 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.crash.smithi195", "caps": ["mon", "profile crash", "mgr", "profile crash"]} : dispatch 2024-09-21T11:54:07.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: audit 2024-09-21T11:54:06.966732+0000 mon.smithi078 (mon.0) 321 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:07.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:07 smithi078 bash[20010]: audit 2024-09-21T11:54:06.966732+0000 mon.smithi078 (mon.0) 321 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:08.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:08 smithi195 bash[25267]: cephadm 2024-09-21T11:54:06.964155+0000 mgr.smithi078.aqnwdz (mgr.14203) 67 : cephadm [INF] Reconfiguring crash.smithi195 (monmap changed)... 2024-09-21T11:54:08.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:08 smithi195 bash[25267]: cephadm 2024-09-21T11:54:06.964155+0000 mgr.smithi078.aqnwdz (mgr.14203) 67 : cephadm [INF] Reconfiguring crash.smithi195 (monmap changed)... 2024-09-21T11:54:08.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:08 smithi195 bash[25267]: cephadm 2024-09-21T11:54:06.968584+0000 mgr.smithi078.aqnwdz (mgr.14203) 68 : cephadm [INF] Reconfiguring daemon crash.smithi195 on smithi195 2024-09-21T11:54:08.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:08 smithi195 bash[25267]: cephadm 2024-09-21T11:54:06.968584+0000 mgr.smithi078.aqnwdz (mgr.14203) 68 : cephadm [INF] Reconfiguring daemon crash.smithi195 on smithi195 2024-09-21T11:54:08.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:08 smithi078 bash[20010]: cephadm 2024-09-21T11:54:06.964155+0000 mgr.smithi078.aqnwdz (mgr.14203) 67 : cephadm [INF] Reconfiguring crash.smithi195 (monmap changed)... 2024-09-21T11:54:08.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:08 smithi078 bash[20010]: cephadm 2024-09-21T11:54:06.964155+0000 mgr.smithi078.aqnwdz (mgr.14203) 67 : cephadm [INF] Reconfiguring crash.smithi195 (monmap changed)... 2024-09-21T11:54:08.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:08 smithi078 bash[20010]: cephadm 2024-09-21T11:54:06.968584+0000 mgr.smithi078.aqnwdz (mgr.14203) 68 : cephadm [INF] Reconfiguring daemon crash.smithi195 on smithi195 2024-09-21T11:54:08.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:08 smithi078 bash[20010]: cephadm 2024-09-21T11:54:06.968584+0000 mgr.smithi078.aqnwdz (mgr.14203) 68 : cephadm [INF] Reconfiguring daemon crash.smithi195 on smithi195 2024-09-21T11:54:08.524 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:54:09.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:09 smithi195 bash[25267]: cluster 2024-09-21T11:54:07.404169+0000 mgr.smithi078.aqnwdz (mgr.14203) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:09.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:09 smithi195 bash[25267]: cluster 2024-09-21T11:54:07.404169+0000 mgr.smithi078.aqnwdz (mgr.14203) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:09.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:09 smithi078 bash[20010]: cluster 2024-09-21T11:54:07.404169+0000 mgr.smithi078.aqnwdz (mgr.14203) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:09.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:09 smithi078 bash[20010]: cluster 2024-09-21T11:54:07.404169+0000 mgr.smithi078.aqnwdz (mgr.14203) 69 : cluster [DBG] pgmap v26: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:09.897 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:54:10.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.087835+0000 mon.smithi078 (mon.0) 322 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:10.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.087835+0000 mon.smithi078 (mon.0) 322 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.096248+0000 mon.smithi078 (mon.0) 323 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.096248+0000 mon.smithi078 (mon.0) 323 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: cephadm 2024-09-21T11:54:09.098221+0000 mgr.smithi078.aqnwdz (mgr.14203) 70 : cephadm [INF] Reconfiguring mgr.smithi195.wpaqjn (monmap changed)... 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: cephadm 2024-09-21T11:54:09.098221+0000 mgr.smithi078.aqnwdz (mgr.14203) 70 : cephadm [INF] Reconfiguring mgr.smithi195.wpaqjn (monmap changed)... 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.098844+0000 mon.smithi078 (mon.0) 324 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.098844+0000 mon.smithi078 (mon.0) 324 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.100761+0000 mon.smithi078 (mon.0) 325 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.100761+0000 mon.smithi078 (mon.0) 325 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.102320+0000 mon.smithi078 (mon.0) 326 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.102320+0000 mon.smithi078 (mon.0) 326 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: cephadm 2024-09-21T11:54:09.104123+0000 mgr.smithi078.aqnwdz (mgr.14203) 71 : cephadm [INF] Reconfiguring daemon mgr.smithi195.wpaqjn on smithi195 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: cephadm 2024-09-21T11:54:09.104123+0000 mgr.smithi078.aqnwdz (mgr.14203) 71 : cephadm [INF] Reconfiguring daemon mgr.smithi195.wpaqjn on smithi195 2024-09-21T11:54:10.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.895808+0000 mon.smithi078 (mon.0) 327 : audit [DBG] from='client.? 172.21.15.78:0/2007628839' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:10.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:10 smithi195 bash[25267]: audit 2024-09-21T11:54:09.895808+0000 mon.smithi078 (mon.0) 327 : audit [DBG] from='client.? 172.21.15.78:0/2007628839' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:10.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.087835+0000 mon.smithi078 (mon.0) 322 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:10.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.087835+0000 mon.smithi078 (mon.0) 322 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:10.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.096248+0000 mon.smithi078 (mon.0) 323 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.096248+0000 mon.smithi078 (mon.0) 323 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: cephadm 2024-09-21T11:54:09.098221+0000 mgr.smithi078.aqnwdz (mgr.14203) 70 : cephadm [INF] Reconfiguring mgr.smithi195.wpaqjn (monmap changed)... 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: cephadm 2024-09-21T11:54:09.098221+0000 mgr.smithi078.aqnwdz (mgr.14203) 70 : cephadm [INF] Reconfiguring mgr.smithi195.wpaqjn (monmap changed)... 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.098844+0000 mon.smithi078 (mon.0) 324 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.098844+0000 mon.smithi078 (mon.0) 324 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "mgr.smithi195.wpaqjn", "caps": ["mon", "profile mgr", "osd", "allow *", "mds", "allow *"]} : dispatch 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.100761+0000 mon.smithi078 (mon.0) 325 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.100761+0000 mon.smithi078 (mon.0) 325 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mgr services"} : dispatch 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.102320+0000 mon.smithi078 (mon.0) 326 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.102320+0000 mon.smithi078 (mon.0) 326 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: cephadm 2024-09-21T11:54:09.104123+0000 mgr.smithi078.aqnwdz (mgr.14203) 71 : cephadm [INF] Reconfiguring daemon mgr.smithi195.wpaqjn on smithi195 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: cephadm 2024-09-21T11:54:09.104123+0000 mgr.smithi078.aqnwdz (mgr.14203) 71 : cephadm [INF] Reconfiguring daemon mgr.smithi195.wpaqjn on smithi195 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.895808+0000 mon.smithi078 (mon.0) 327 : audit [DBG] from='client.? 172.21.15.78:0/2007628839' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:10.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:10 smithi078 bash[20010]: audit 2024-09-21T11:54:09.895808+0000 mon.smithi078 (mon.0) 327 : audit [DBG] from='client.? 172.21.15.78:0/2007628839' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:10.549 INFO:teuthology.orchestra.run.smithi078.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-09-21T11:54:11.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:11 smithi195 bash[25267]: cluster 2024-09-21T11:54:09.404598+0000 mgr.smithi078.aqnwdz (mgr.14203) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:11.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:11 smithi195 bash[25267]: cluster 2024-09-21T11:54:09.404598+0000 mgr.smithi078.aqnwdz (mgr.14203) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:11.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:11 smithi078 bash[20010]: cluster 2024-09-21T11:54:09.404598+0000 mgr.smithi078.aqnwdz (mgr.14203) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:11.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:11 smithi078 bash[20010]: cluster 2024-09-21T11:54:09.404598+0000 mgr.smithi078.aqnwdz (mgr.14203) 72 : cluster [DBG] pgmap v27: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:11.550 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:54:12.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.194595+0000 mon.smithi078 (mon.0) 328 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:12.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.194595+0000 mon.smithi078 (mon.0) 328 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:12.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.203113+0000 mon.smithi078 (mon.0) 329 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:12.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.203113+0000 mon.smithi078 (mon.0) 329 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:12.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: cephadm 2024-09-21T11:54:11.204824+0000 mgr.smithi078.aqnwdz (mgr.14203) 73 : cephadm [INF] Reconfiguring mon.smithi195 (monmap changed)... 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: cephadm 2024-09-21T11:54:11.204824+0000 mgr.smithi078.aqnwdz (mgr.14203) 73 : cephadm [INF] Reconfiguring mon.smithi195 (monmap changed)... 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.205372+0000 mon.smithi078 (mon.0) 330 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.205372+0000 mon.smithi078 (mon.0) 330 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.207115+0000 mon.smithi078 (mon.0) 331 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.207115+0000 mon.smithi078 (mon.0) 331 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.208828+0000 mon.smithi078 (mon.0) 332 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: audit 2024-09-21T11:54:11.208828+0000 mon.smithi078 (mon.0) 332 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: cephadm 2024-09-21T11:54:11.210806+0000 mgr.smithi078.aqnwdz (mgr.14203) 74 : cephadm [INF] Reconfiguring daemon mon.smithi195 on smithi195 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: cephadm 2024-09-21T11:54:11.210806+0000 mgr.smithi078.aqnwdz (mgr.14203) 74 : cephadm [INF] Reconfiguring daemon mon.smithi195 on smithi195 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: cluster 2024-09-21T11:54:11.405003+0000 mgr.smithi078.aqnwdz (mgr.14203) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:12.570 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:12 smithi195 bash[25267]: cluster 2024-09-21T11:54:11.405003+0000 mgr.smithi078.aqnwdz (mgr.14203) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:12.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.194595+0000 mon.smithi078 (mon.0) 328 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:12.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.194595+0000 mon.smithi078 (mon.0) 328 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:12.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.203113+0000 mon.smithi078 (mon.0) 329 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.203113+0000 mon.smithi078 (mon.0) 329 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: cephadm 2024-09-21T11:54:11.204824+0000 mgr.smithi078.aqnwdz (mgr.14203) 73 : cephadm [INF] Reconfiguring mon.smithi195 (monmap changed)... 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: cephadm 2024-09-21T11:54:11.204824+0000 mgr.smithi078.aqnwdz (mgr.14203) 73 : cephadm [INF] Reconfiguring mon.smithi195 (monmap changed)... 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.205372+0000 mon.smithi078 (mon.0) 330 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.205372+0000 mon.smithi078 (mon.0) 330 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "mon."} : dispatch 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.207115+0000 mon.smithi078 (mon.0) 331 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.207115+0000 mon.smithi078 (mon.0) 331 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config get", "who": "mon", "key": "public_network"} : dispatch 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.208828+0000 mon.smithi078 (mon.0) 332 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: audit 2024-09-21T11:54:11.208828+0000 mon.smithi078 (mon.0) 332 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: cephadm 2024-09-21T11:54:11.210806+0000 mgr.smithi078.aqnwdz (mgr.14203) 74 : cephadm [INF] Reconfiguring daemon mon.smithi195 on smithi195 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: cephadm 2024-09-21T11:54:11.210806+0000 mgr.smithi078.aqnwdz (mgr.14203) 74 : cephadm [INF] Reconfiguring daemon mon.smithi195 on smithi195 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: cluster 2024-09-21T11:54:11.405003+0000 mgr.smithi078.aqnwdz (mgr.14203) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:12.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:12 smithi078 bash[20010]: cluster 2024-09-21T11:54:11.405003+0000 mgr.smithi078.aqnwdz (mgr.14203) 75 : cluster [DBG] pgmap v28: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:14.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.264697+0000 mon.smithi078 (mon.0) 333 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.264697+0000 mon.smithi078 (mon.0) 333 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.273384+0000 mon.smithi078 (mon.0) 334 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.273384+0000 mon.smithi078 (mon.0) 334 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.283240+0000 mon.smithi078 (mon.0) 335 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.283240+0000 mon.smithi078 (mon.0) 335 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.284271+0000 mgr.smithi078.aqnwdz (mgr.14203) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.284271+0000 mgr.smithi078.aqnwdz (mgr.14203) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.286703+0000 mon.smithi078 (mon.0) 336 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi078.front.sepia.ceph.com:9093"} : dispatch 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.286703+0000 mon.smithi078 (mon.0) 336 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi078.front.sepia.ceph.com:9093"} : dispatch 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.287637+0000 mgr.smithi078.aqnwdz (mgr.14203) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi078.front.sepia.ceph.com:9093"}]: dispatch 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.287637+0000 mgr.smithi078.aqnwdz (mgr.14203) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi078.front.sepia.ceph.com:9093"}]: dispatch 2024-09-21T11:54:14.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.294108+0000 mon.smithi078 (mon.0) 337 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.294108+0000 mon.smithi078 (mon.0) 337 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.311827+0000 mon.smithi078 (mon.0) 338 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-21T11:54:14.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.311827+0000 mon.smithi078 (mon.0) 338 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-21T11:54:14.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.312588+0000 mgr.smithi078.aqnwdz (mgr.14203) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-21T11:54:14.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.312588+0000 mgr.smithi078.aqnwdz (mgr.14203) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-21T11:54:14.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.320164+0000 mon.smithi078 (mon.0) 339 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi078.front.sepia.ceph.com:3000"} : dispatch 2024-09-21T11:54:14.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.320164+0000 mon.smithi078 (mon.0) 339 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi078.front.sepia.ceph.com:3000"} : dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.321003+0000 mgr.smithi078.aqnwdz (mgr.14203) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi078.front.sepia.ceph.com:3000"}]: dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.321003+0000 mgr.smithi078.aqnwdz (mgr.14203) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi078.front.sepia.ceph.com:3000"}]: dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.327341+0000 mon.smithi078 (mon.0) 340 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.327341+0000 mon.smithi078 (mon.0) 340 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.343468+0000 mon.smithi078 (mon.0) 341 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.343468+0000 mon.smithi078 (mon.0) 341 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.344620+0000 mgr.smithi078.aqnwdz (mgr.14203) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.344620+0000 mgr.smithi078.aqnwdz (mgr.14203) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.354652+0000 mon.smithi078 (mon.0) 342 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi078.front.sepia.ceph.com:9095"} : dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.354652+0000 mon.smithi078 (mon.0) 342 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi078.front.sepia.ceph.com:9095"} : dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.355726+0000 mgr.smithi078.aqnwdz (mgr.14203) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi078.front.sepia.ceph.com:9095"}]: dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.355726+0000 mgr.smithi078.aqnwdz (mgr.14203) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi078.front.sepia.ceph.com:9095"}]: dispatch 2024-09-21T11:54:14.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.362290+0000 mon.smithi078 (mon.0) 343 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.362290+0000 mon.smithi078 (mon.0) 343 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: cluster 2024-09-21T11:54:13.405456+0000 mgr.smithi078.aqnwdz (mgr.14203) 82 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: cluster 2024-09-21T11:54:13.405456+0000 mgr.smithi078.aqnwdz (mgr.14203) 82 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.620811+0000 mon.smithi078 (mon.0) 344 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.620811+0000 mon.smithi078 (mon.0) 344 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.622485+0000 mgr.smithi078.aqnwdz (mgr.14203) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.622485+0000 mgr.smithi078.aqnwdz (mgr.14203) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.679651+0000 mon.smithi078 (mon.0) 345 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:13.679651+0000 mon.smithi078 (mon.0) 345 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:14.234173+0000 mon.smithi078 (mon.0) 346 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:14.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:14 smithi195 bash[25267]: audit 2024-09-21T11:54:14.234173+0000 mon.smithi078 (mon.0) 346 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:14.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.264697+0000 mon.smithi078 (mon.0) 333 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.264697+0000 mon.smithi078 (mon.0) 333 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.273384+0000 mon.smithi078 (mon.0) 334 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.273384+0000 mon.smithi078 (mon.0) 334 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.283240+0000 mon.smithi078 (mon.0) 335 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.283240+0000 mon.smithi078 (mon.0) 335 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-alertmanager-api-host"} : dispatch 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.284271+0000 mgr.smithi078.aqnwdz (mgr.14203) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.284271+0000 mgr.smithi078.aqnwdz (mgr.14203) 76 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-alertmanager-api-host"}]: dispatch 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.286703+0000 mon.smithi078 (mon.0) 336 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi078.front.sepia.ceph.com:9093"} : dispatch 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.286703+0000 mon.smithi078 (mon.0) 336 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi078.front.sepia.ceph.com:9093"} : dispatch 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.287637+0000 mgr.smithi078.aqnwdz (mgr.14203) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi078.front.sepia.ceph.com:9093"}]: dispatch 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.287637+0000 mgr.smithi078.aqnwdz (mgr.14203) 77 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-alertmanager-api-host", "value": "http://smithi078.front.sepia.ceph.com:9093"}]: dispatch 2024-09-21T11:54:14.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.294108+0000 mon.smithi078 (mon.0) 337 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.294108+0000 mon.smithi078 (mon.0) 337 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.311827+0000 mon.smithi078 (mon.0) 338 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-21T11:54:14.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.311827+0000 mon.smithi078 (mon.0) 338 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-grafana-api-url"} : dispatch 2024-09-21T11:54:14.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.312588+0000 mgr.smithi078.aqnwdz (mgr.14203) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-21T11:54:14.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.312588+0000 mgr.smithi078.aqnwdz (mgr.14203) 78 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-grafana-api-url"}]: dispatch 2024-09-21T11:54:14.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.320164+0000 mon.smithi078 (mon.0) 339 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi078.front.sepia.ceph.com:3000"} : dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.320164+0000 mon.smithi078 (mon.0) 339 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-grafana-api-url", "value": "https://smithi078.front.sepia.ceph.com:3000"} : dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.321003+0000 mgr.smithi078.aqnwdz (mgr.14203) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi078.front.sepia.ceph.com:3000"}]: dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.321003+0000 mgr.smithi078.aqnwdz (mgr.14203) 79 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-grafana-api-url", "value": "https://smithi078.front.sepia.ceph.com:3000"}]: dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.327341+0000 mon.smithi078 (mon.0) 340 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.327341+0000 mon.smithi078 (mon.0) 340 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.343468+0000 mon.smithi078 (mon.0) 341 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.343468+0000 mon.smithi078 (mon.0) 341 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.344620+0000 mgr.smithi078.aqnwdz (mgr.14203) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.344620+0000 mgr.smithi078.aqnwdz (mgr.14203) 80 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.354652+0000 mon.smithi078 (mon.0) 342 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi078.front.sepia.ceph.com:9095"} : dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.354652+0000 mon.smithi078 (mon.0) 342 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi078.front.sepia.ceph.com:9095"} : dispatch 2024-09-21T11:54:14.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.355726+0000 mgr.smithi078.aqnwdz (mgr.14203) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi078.front.sepia.ceph.com:9095"}]: dispatch 2024-09-21T11:54:14.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.355726+0000 mgr.smithi078.aqnwdz (mgr.14203) 81 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard set-prometheus-api-host", "value": "http://smithi078.front.sepia.ceph.com:9095"}]: dispatch 2024-09-21T11:54:14.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.362290+0000 mon.smithi078 (mon.0) 343 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.362290+0000 mon.smithi078 (mon.0) 343 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:14.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: cluster 2024-09-21T11:54:13.405456+0000 mgr.smithi078.aqnwdz (mgr.14203) 82 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:14.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: cluster 2024-09-21T11:54:13.405456+0000 mgr.smithi078.aqnwdz (mgr.14203) 82 : cluster [DBG] pgmap v29: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:14.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.620811+0000 mon.smithi078 (mon.0) 344 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:14.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.620811+0000 mon.smithi078 (mon.0) 344 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:14.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.622485+0000 mgr.smithi078.aqnwdz (mgr.14203) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:14.661 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.622485+0000 mgr.smithi078.aqnwdz (mgr.14203) 83 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:14.661 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.679651+0000 mon.smithi078 (mon.0) 345 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:54:14.661 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:13.679651+0000 mon.smithi078 (mon.0) 345 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:54:14.661 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:14.234173+0000 mon.smithi078 (mon.0) 346 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:14.661 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:14 smithi078 bash[20010]: audit 2024-09-21T11:54:14.234173+0000 mon.smithi078 (mon.0) 346 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:15.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:15 smithi195 bash[25267]: audit 2024-09-21T11:54:14.235120+0000 mgr.smithi078.aqnwdz (mgr.14203) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:15.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:15 smithi195 bash[25267]: audit 2024-09-21T11:54:14.235120+0000 mgr.smithi078.aqnwdz (mgr.14203) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:15.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:15 smithi195 bash[25267]: audit 2024-09-21T11:54:14.848259+0000 mon.smithi078 (mon.0) 347 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:15.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:15 smithi195 bash[25267]: audit 2024-09-21T11:54:14.848259+0000 mon.smithi078 (mon.0) 347 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:15.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:15 smithi195 bash[25267]: audit 2024-09-21T11:54:14.849302+0000 mgr.smithi078.aqnwdz (mgr.14203) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:15.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:15 smithi195 bash[25267]: audit 2024-09-21T11:54:14.849302+0000 mgr.smithi078.aqnwdz (mgr.14203) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:15.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:15 smithi078 bash[20010]: audit 2024-09-21T11:54:14.235120+0000 mgr.smithi078.aqnwdz (mgr.14203) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:15.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:15 smithi078 bash[20010]: audit 2024-09-21T11:54:14.235120+0000 mgr.smithi078.aqnwdz (mgr.14203) 84 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:15.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:15 smithi078 bash[20010]: audit 2024-09-21T11:54:14.848259+0000 mon.smithi078 (mon.0) 347 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:15.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:15 smithi078 bash[20010]: audit 2024-09-21T11:54:14.848259+0000 mon.smithi078 (mon.0) 347 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:54:15.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:15 smithi078 bash[20010]: audit 2024-09-21T11:54:14.849302+0000 mgr.smithi078.aqnwdz (mgr.14203) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:15.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:15 smithi078 bash[20010]: audit 2024-09-21T11:54:14.849302+0000 mgr.smithi078.aqnwdz (mgr.14203) 85 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:54:16.332 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:54:16.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:16 smithi078 bash[20010]: cluster 2024-09-21T11:54:15.405981+0000 mgr.smithi078.aqnwdz (mgr.14203) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:16.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:16 smithi078 bash[20010]: cluster 2024-09-21T11:54:15.405981+0000 mgr.smithi078.aqnwdz (mgr.14203) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:16.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:16 smithi195 bash[25267]: cluster 2024-09-21T11:54:15.405981+0000 mgr.smithi078.aqnwdz (mgr.14203) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:16.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:16 smithi195 bash[25267]: cluster 2024-09-21T11:54:15.405981+0000 mgr.smithi078.aqnwdz (mgr.14203) 86 : cluster [DBG] pgmap v30: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:17.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:17 smithi078 bash[20010]: audit 2024-09-21T11:54:16.725361+0000 mon.smithi078 (mon.0) 348 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:17.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:17 smithi078 bash[20010]: audit 2024-09-21T11:54:16.725361+0000 mon.smithi078 (mon.0) 348 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:17.851 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:54:17.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:17 smithi195 bash[25267]: audit 2024-09-21T11:54:16.725361+0000 mon.smithi078 (mon.0) 348 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:17.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:17 smithi195 bash[25267]: audit 2024-09-21T11:54:16.725361+0000 mon.smithi078 (mon.0) 348 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:18.466 INFO:teuthology.orchestra.run.smithi078.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-09-21T11:54:18.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:18 smithi078 bash[20010]: cluster 2024-09-21T11:54:17.406411+0000 mgr.smithi078.aqnwdz (mgr.14203) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:18.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:18 smithi078 bash[20010]: cluster 2024-09-21T11:54:17.406411+0000 mgr.smithi078.aqnwdz (mgr.14203) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:18.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:18 smithi078 bash[20010]: audit 2024-09-21T11:54:17.849754+0000 mon.smithi078 (mon.0) 349 : audit [DBG] from='client.? 172.21.15.78:0/3883181566' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:18.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:18 smithi078 bash[20010]: audit 2024-09-21T11:54:17.849754+0000 mon.smithi078 (mon.0) 349 : audit [DBG] from='client.? 172.21.15.78:0/3883181566' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:18.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:18 smithi195 bash[25267]: cluster 2024-09-21T11:54:17.406411+0000 mgr.smithi078.aqnwdz (mgr.14203) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:18.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:18 smithi195 bash[25267]: cluster 2024-09-21T11:54:17.406411+0000 mgr.smithi078.aqnwdz (mgr.14203) 87 : cluster [DBG] pgmap v31: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:18.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:18 smithi195 bash[25267]: audit 2024-09-21T11:54:17.849754+0000 mon.smithi078 (mon.0) 349 : audit [DBG] from='client.? 172.21.15.78:0/3883181566' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:18.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:18 smithi195 bash[25267]: audit 2024-09-21T11:54:17.849754+0000 mon.smithi078 (mon.0) 349 : audit [DBG] from='client.? 172.21.15.78:0/3883181566' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:19.468 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:54:20.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.102244+0000 mon.smithi078 (mon.0) 350 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.102244+0000 mon.smithi078 (mon.0) 350 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.107114+0000 mon.smithi078 (mon.0) 351 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.107114+0000 mon.smithi078 (mon.0) 351 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.587837+0000 mon.smithi078 (mon.0) 352 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.587837+0000 mon.smithi078 (mon.0) 352 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.591914+0000 mon.smithi078 (mon.0) 353 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.591914+0000 mon.smithi078 (mon.0) 353 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.709364+0000 mon.smithi078 (mon.0) 354 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.709364+0000 mon.smithi078 (mon.0) 354 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.714684+0000 mon.smithi078 (mon.0) 355 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:20 smithi195 bash[25267]: audit 2024-09-21T11:54:19.714684+0000 mon.smithi078 (mon.0) 355 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.102244+0000 mon.smithi078 (mon.0) 350 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.102244+0000 mon.smithi078 (mon.0) 350 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.107114+0000 mon.smithi078 (mon.0) 351 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.107114+0000 mon.smithi078 (mon.0) 351 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.587837+0000 mon.smithi078 (mon.0) 352 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.587837+0000 mon.smithi078 (mon.0) 352 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.591914+0000 mon.smithi078 (mon.0) 353 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.591914+0000 mon.smithi078 (mon.0) 353 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.709364+0000 mon.smithi078 (mon.0) 354 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.709364+0000 mon.smithi078 (mon.0) 354 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.714684+0000 mon.smithi078 (mon.0) 355 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:20.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:20 smithi078 bash[20010]: audit 2024-09-21T11:54:19.714684+0000 mon.smithi078 (mon.0) 355 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: cluster 2024-09-21T11:54:19.406798+0000 mgr.smithi078.aqnwdz (mgr.14203) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: cluster 2024-09-21T11:54:19.406798+0000 mgr.smithi078.aqnwdz (mgr.14203) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.199752+0000 mon.smithi078 (mon.0) 356 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.199752+0000 mon.smithi078 (mon.0) 356 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.206959+0000 mon.smithi078 (mon.0) 357 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.206959+0000 mon.smithi078 (mon.0) 357 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.208739+0000 mon.smithi078 (mon.0) 358 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.208739+0000 mon.smithi078 (mon.0) 358 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.209571+0000 mon.smithi078 (mon.0) 359 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.209571+0000 mon.smithi078 (mon.0) 359 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.215820+0000 mon.smithi078 (mon.0) 360 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.215820+0000 mon.smithi078 (mon.0) 360 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.221635+0000 mon.smithi078 (mon.0) 361 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.221635+0000 mon.smithi078 (mon.0) 361 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.226275+0000 mon.smithi078 (mon.0) 362 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.226275+0000 mon.smithi078 (mon.0) 362 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.227351+0000 mon.smithi078 (mon.0) 363 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.227351+0000 mon.smithi078 (mon.0) 363 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.230881+0000 mon.smithi078 (mon.0) 364 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.230881+0000 mon.smithi078 (mon.0) 364 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.232058+0000 mon.smithi078 (mon.0) 365 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:21 smithi195 bash[25267]: audit 2024-09-21T11:54:20.232058+0000 mon.smithi078 (mon.0) 365 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: cluster 2024-09-21T11:54:19.406798+0000 mgr.smithi078.aqnwdz (mgr.14203) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:21.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: cluster 2024-09-21T11:54:19.406798+0000 mgr.smithi078.aqnwdz (mgr.14203) 88 : cluster [DBG] pgmap v32: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.199752+0000 mon.smithi078 (mon.0) 356 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.199752+0000 mon.smithi078 (mon.0) 356 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.206959+0000 mon.smithi078 (mon.0) 357 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.206959+0000 mon.smithi078 (mon.0) 357 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.208739+0000 mon.smithi078 (mon.0) 358 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.208739+0000 mon.smithi078 (mon.0) 358 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.209571+0000 mon.smithi078 (mon.0) 359 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.209571+0000 mon.smithi078 (mon.0) 359 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.215820+0000 mon.smithi078 (mon.0) 360 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.215820+0000 mon.smithi078 (mon.0) 360 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.221635+0000 mon.smithi078 (mon.0) 361 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.221635+0000 mon.smithi078 (mon.0) 361 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.226275+0000 mon.smithi078 (mon.0) 362 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:54:21.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.226275+0000 mon.smithi078 (mon.0) 362 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:54:21.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.227351+0000 mon.smithi078 (mon.0) 363 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.227351+0000 mon.smithi078 (mon.0) 363 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.230881+0000 mon.smithi078 (mon.0) 364 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:54:21.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.230881+0000 mon.smithi078 (mon.0) 364 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:54:21.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.232058+0000 mon.smithi078 (mon.0) 365 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:21.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:21 smithi078 bash[20010]: audit 2024-09-21T11:54:20.232058+0000 mon.smithi078 (mon.0) 365 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:23.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:23 smithi195 bash[25267]: cluster 2024-09-21T11:54:21.407236+0000 mgr.smithi078.aqnwdz (mgr.14203) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:23.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:23 smithi195 bash[25267]: cluster 2024-09-21T11:54:21.407236+0000 mgr.smithi078.aqnwdz (mgr.14203) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:23.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:23 smithi078 bash[20010]: cluster 2024-09-21T11:54:21.407236+0000 mgr.smithi078.aqnwdz (mgr.14203) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:23.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:23 smithi078 bash[20010]: cluster 2024-09-21T11:54:21.407236+0000 mgr.smithi078.aqnwdz (mgr.14203) 89 : cluster [DBG] pgmap v33: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:24.241 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:54:25.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:25 smithi078 bash[20010]: cluster 2024-09-21T11:54:23.407704+0000 mgr.smithi078.aqnwdz (mgr.14203) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:25.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:25 smithi078 bash[20010]: cluster 2024-09-21T11:54:23.407704+0000 mgr.smithi078.aqnwdz (mgr.14203) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:25.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:25 smithi195 bash[25267]: cluster 2024-09-21T11:54:23.407704+0000 mgr.smithi078.aqnwdz (mgr.14203) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:25.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:25 smithi195 bash[25267]: cluster 2024-09-21T11:54:23.407704+0000 mgr.smithi078.aqnwdz (mgr.14203) 90 : cluster [DBG] pgmap v34: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:25.621 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:54:26.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:26 smithi078 bash[20010]: audit 2024-09-21T11:54:25.620800+0000 mon.smithi078 (mon.0) 366 : audit [DBG] from='client.? 172.21.15.78:0/4038570618' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:26.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:26 smithi078 bash[20010]: audit 2024-09-21T11:54:25.620800+0000 mon.smithi078 (mon.0) 366 : audit [DBG] from='client.? 172.21.15.78:0/4038570618' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:26.470 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:26 smithi195 bash[25267]: audit 2024-09-21T11:54:25.620800+0000 mon.smithi078 (mon.0) 366 : audit [DBG] from='client.? 172.21.15.78:0/4038570618' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:26.470 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:26 smithi195 bash[25267]: audit 2024-09-21T11:54:25.620800+0000 mon.smithi078 (mon.0) 366 : audit [DBG] from='client.? 172.21.15.78:0/4038570618' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:26.775 INFO:teuthology.orchestra.run.smithi078.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-09-21T11:54:27.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:27 smithi195 bash[25267]: cluster 2024-09-21T11:54:25.407984+0000 mgr.smithi078.aqnwdz (mgr.14203) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:27.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:27 smithi195 bash[25267]: cluster 2024-09-21T11:54:25.407984+0000 mgr.smithi078.aqnwdz (mgr.14203) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:27.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:27 smithi078 bash[20010]: cluster 2024-09-21T11:54:25.407984+0000 mgr.smithi078.aqnwdz (mgr.14203) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:27.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:27 smithi078 bash[20010]: cluster 2024-09-21T11:54:25.407984+0000 mgr.smithi078.aqnwdz (mgr.14203) 91 : cluster [DBG] pgmap v35: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:27.776 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:54:29.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:29 smithi078 bash[20010]: cluster 2024-09-21T11:54:27.408362+0000 mgr.smithi078.aqnwdz (mgr.14203) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:29.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:29 smithi078 bash[20010]: cluster 2024-09-21T11:54:27.408362+0000 mgr.smithi078.aqnwdz (mgr.14203) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:29.406 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:29 smithi195 bash[25267]: cluster 2024-09-21T11:54:27.408362+0000 mgr.smithi078.aqnwdz (mgr.14203) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:29.406 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:29 smithi195 bash[25267]: cluster 2024-09-21T11:54:27.408362+0000 mgr.smithi078.aqnwdz (mgr.14203) 92 : cluster [DBG] pgmap v36: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:30.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: audit 2024-09-21T11:54:29.156046+0000 mon.smithi195 (mon.1) 2 : audit [INF] from='client.? 172.21.15.195:0/2509460037' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"} : dispatch 2024-09-21T11:54:30.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: audit 2024-09-21T11:54:29.156046+0000 mon.smithi195 (mon.1) 2 : audit [INF] from='client.? 172.21.15.195:0/2509460037' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"} : dispatch 2024-09-21T11:54:30.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: audit 2024-09-21T11:54:29.156792+0000 mon.smithi078 (mon.0) 367 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"} : dispatch 2024-09-21T11:54:30.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: audit 2024-09-21T11:54:29.156792+0000 mon.smithi078 (mon.0) 367 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"} : dispatch 2024-09-21T11:54:30.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: audit 2024-09-21T11:54:29.161133+0000 mon.smithi078 (mon.0) 368 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"}]': finished 2024-09-21T11:54:30.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: audit 2024-09-21T11:54:29.161133+0000 mon.smithi078 (mon.0) 368 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"}]': finished 2024-09-21T11:54:30.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: cluster 2024-09-21T11:54:29.166355+0000 mon.smithi078 (mon.0) 369 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-21T11:54:30.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: cluster 2024-09-21T11:54:29.166355+0000 mon.smithi078 (mon.0) 369 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-21T11:54:30.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: audit 2024-09-21T11:54:29.166848+0000 mon.smithi078 (mon.0) 370 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:30.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:30 smithi078 bash[20010]: audit 2024-09-21T11:54:29.166848+0000 mon.smithi078 (mon.0) 370 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:30.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: audit 2024-09-21T11:54:29.156046+0000 mon.smithi195 (mon.1) 2 : audit [INF] from='client.? 172.21.15.195:0/2509460037' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"} : dispatch 2024-09-21T11:54:30.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: audit 2024-09-21T11:54:29.156046+0000 mon.smithi195 (mon.1) 2 : audit [INF] from='client.? 172.21.15.195:0/2509460037' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"} : dispatch 2024-09-21T11:54:30.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: audit 2024-09-21T11:54:29.156792+0000 mon.smithi078 (mon.0) 367 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"} : dispatch 2024-09-21T11:54:30.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: audit 2024-09-21T11:54:29.156792+0000 mon.smithi078 (mon.0) 367 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"} : dispatch 2024-09-21T11:54:30.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: audit 2024-09-21T11:54:29.161133+0000 mon.smithi078 (mon.0) 368 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"}]': finished 2024-09-21T11:54:30.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: audit 2024-09-21T11:54:29.161133+0000 mon.smithi078 (mon.0) 368 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "101e5d22-0753-49b4-b862-2f23bd9e5bdb"}]': finished 2024-09-21T11:54:30.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: cluster 2024-09-21T11:54:29.166355+0000 mon.smithi078 (mon.0) 369 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-21T11:54:30.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: cluster 2024-09-21T11:54:29.166355+0000 mon.smithi078 (mon.0) 369 : cluster [DBG] osdmap e6: 1 total, 0 up, 1 in 2024-09-21T11:54:30.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: audit 2024-09-21T11:54:29.166848+0000 mon.smithi078 (mon.0) 370 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:30.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:30 smithi195 bash[25267]: audit 2024-09-21T11:54:29.166848+0000 mon.smithi078 (mon.0) 370 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:31.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: cluster 2024-09-21T11:54:29.408805+0000 mgr.smithi078.aqnwdz (mgr.14203) 93 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:31.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: cluster 2024-09-21T11:54:29.408805+0000 mgr.smithi078.aqnwdz (mgr.14203) 93 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:31.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.141453+0000 mon.smithi078 (mon.0) 371 : audit [INF] from='client.? 172.21.15.78:0/3981428463' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "26924429-e962-4cbc-8fd8-57e5c6bbfe7b"} : dispatch 2024-09-21T11:54:31.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.141453+0000 mon.smithi078 (mon.0) 371 : audit [INF] from='client.? 172.21.15.78:0/3981428463' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "26924429-e962-4cbc-8fd8-57e5c6bbfe7b"} : dispatch 2024-09-21T11:54:31.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.145782+0000 mon.smithi078 (mon.0) 372 : audit [INF] from='client.? 172.21.15.78:0/3981428463' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "26924429-e962-4cbc-8fd8-57e5c6bbfe7b"}]': finished 2024-09-21T11:54:31.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.145782+0000 mon.smithi078 (mon.0) 372 : audit [INF] from='client.? 172.21.15.78:0/3981428463' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "26924429-e962-4cbc-8fd8-57e5c6bbfe7b"}]': finished 2024-09-21T11:54:31.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: cluster 2024-09-21T11:54:30.151291+0000 mon.smithi078 (mon.0) 373 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-21T11:54:31.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: cluster 2024-09-21T11:54:30.151291+0000 mon.smithi078 (mon.0) 373 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-21T11:54:31.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.151521+0000 mon.smithi078 (mon.0) 374 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:31.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.151521+0000 mon.smithi078 (mon.0) 374 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:31.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.151819+0000 mon.smithi078 (mon.0) 375 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:31.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.151819+0000 mon.smithi078 (mon.0) 375 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:31.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.611429+0000 mon.smithi195 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.195:0/4087077585' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:31.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:31 smithi078 bash[20010]: audit 2024-09-21T11:54:30.611429+0000 mon.smithi195 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.195:0/4087077585' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: cluster 2024-09-21T11:54:29.408805+0000 mgr.smithi078.aqnwdz (mgr.14203) 93 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: cluster 2024-09-21T11:54:29.408805+0000 mgr.smithi078.aqnwdz (mgr.14203) 93 : cluster [DBG] pgmap v38: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.141453+0000 mon.smithi078 (mon.0) 371 : audit [INF] from='client.? 172.21.15.78:0/3981428463' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "26924429-e962-4cbc-8fd8-57e5c6bbfe7b"} : dispatch 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.141453+0000 mon.smithi078 (mon.0) 371 : audit [INF] from='client.? 172.21.15.78:0/3981428463' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "26924429-e962-4cbc-8fd8-57e5c6bbfe7b"} : dispatch 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.145782+0000 mon.smithi078 (mon.0) 372 : audit [INF] from='client.? 172.21.15.78:0/3981428463' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "26924429-e962-4cbc-8fd8-57e5c6bbfe7b"}]': finished 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.145782+0000 mon.smithi078 (mon.0) 372 : audit [INF] from='client.? 172.21.15.78:0/3981428463' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "26924429-e962-4cbc-8fd8-57e5c6bbfe7b"}]': finished 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: cluster 2024-09-21T11:54:30.151291+0000 mon.smithi078 (mon.0) 373 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: cluster 2024-09-21T11:54:30.151291+0000 mon.smithi078 (mon.0) 373 : cluster [DBG] osdmap e7: 2 total, 0 up, 2 in 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.151521+0000 mon.smithi078 (mon.0) 374 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.151521+0000 mon.smithi078 (mon.0) 374 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.151819+0000 mon.smithi078 (mon.0) 375 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.151819+0000 mon.smithi078 (mon.0) 375 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.611429+0000 mon.smithi195 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.195:0/4087077585' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:31 smithi195 bash[25267]: audit 2024-09-21T11:54:30.611429+0000 mon.smithi195 (mon.1) 3 : audit [DBG] from='client.? 172.21.15.195:0/4087077585' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:32.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:32 smithi078 bash[20010]: audit 2024-09-21T11:54:31.665457+0000 mon.smithi078 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.78:0/62146962' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:32.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:32 smithi078 bash[20010]: audit 2024-09-21T11:54:31.665457+0000 mon.smithi078 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.78:0/62146962' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:32.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:32 smithi078 bash[20010]: audit 2024-09-21T11:54:31.725073+0000 mon.smithi078 (mon.0) 377 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:32.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:32 smithi078 bash[20010]: audit 2024-09-21T11:54:31.725073+0000 mon.smithi078 (mon.0) 377 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:32.538 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:54:32.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:32 smithi195 bash[25267]: audit 2024-09-21T11:54:31.665457+0000 mon.smithi078 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.78:0/62146962' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:32.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:32 smithi195 bash[25267]: audit 2024-09-21T11:54:31.665457+0000 mon.smithi078 (mon.0) 376 : audit [DBG] from='client.? 172.21.15.78:0/62146962' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:32.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:32 smithi195 bash[25267]: audit 2024-09-21T11:54:31.725073+0000 mon.smithi078 (mon.0) 377 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:32.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:32 smithi195 bash[25267]: audit 2024-09-21T11:54:31.725073+0000 mon.smithi078 (mon.0) 377 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:33.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:33 smithi078 bash[20010]: cluster 2024-09-21T11:54:31.409103+0000 mgr.smithi078.aqnwdz (mgr.14203) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:33.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:33 smithi078 bash[20010]: cluster 2024-09-21T11:54:31.409103+0000 mgr.smithi078.aqnwdz (mgr.14203) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:33.571 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:33 smithi195 bash[25267]: cluster 2024-09-21T11:54:31.409103+0000 mgr.smithi078.aqnwdz (mgr.14203) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:33.571 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:33 smithi195 bash[25267]: cluster 2024-09-21T11:54:31.409103+0000 mgr.smithi078.aqnwdz (mgr.14203) 94 : cluster [DBG] pgmap v40: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:33.936 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:54:34.511 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:34 smithi195 bash[25267]: audit 2024-09-21T11:54:33.935847+0000 mon.smithi078 (mon.0) 378 : audit [DBG] from='client.? 172.21.15.78:0/3025788038' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:34.511 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:34 smithi195 bash[25267]: audit 2024-09-21T11:54:33.935847+0000 mon.smithi078 (mon.0) 378 : audit [DBG] from='client.? 172.21.15.78:0/3025788038' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:34.556 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:34 smithi078 bash[20010]: audit 2024-09-21T11:54:33.935847+0000 mon.smithi078 (mon.0) 378 : audit [DBG] from='client.? 172.21.15.78:0/3025788038' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:34.556 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:34 smithi078 bash[20010]: audit 2024-09-21T11:54:33.935847+0000 mon.smithi078 (mon.0) 378 : audit [DBG] from='client.? 172.21.15.78:0/3025788038' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:34.557 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":7,"num_osds":2,"num_up_osds":0,"osd_up_since":0,"num_in_osds":2,"osd_in_since":1726919670,"num_remapped_pgs":0} 2024-09-21T11:54:35.558 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:54:35.569 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: cluster 2024-09-21T11:54:33.409550+0000 mgr.smithi078.aqnwdz (mgr.14203) 95 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:35.569 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: cluster 2024-09-21T11:54:33.409550+0000 mgr.smithi078.aqnwdz (mgr.14203) 95 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:35.569 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.346282+0000 mon.smithi195 (mon.1) 4 : audit [INF] from='client.? 172.21.15.195:0/1128035802' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"} : dispatch 2024-09-21T11:54:35.569 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.346282+0000 mon.smithi195 (mon.1) 4 : audit [INF] from='client.? 172.21.15.195:0/1128035802' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"} : dispatch 2024-09-21T11:54:35.569 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.347140+0000 mon.smithi078 (mon.0) 379 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"} : dispatch 2024-09-21T11:54:35.569 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.347140+0000 mon.smithi078 (mon.0) 379 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"} : dispatch 2024-09-21T11:54:35.569 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.350543+0000 mon.smithi078 (mon.0) 380 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"}]': finished 2024-09-21T11:54:35.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.350543+0000 mon.smithi078 (mon.0) 380 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"}]': finished 2024-09-21T11:54:35.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: cluster 2024-09-21T11:54:34.355608+0000 mon.smithi078 (mon.0) 381 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-21T11:54:35.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: cluster 2024-09-21T11:54:34.355608+0000 mon.smithi078 (mon.0) 381 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-21T11:54:35.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.356095+0000 mon.smithi078 (mon.0) 382 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:35.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.356095+0000 mon.smithi078 (mon.0) 382 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:35.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.356616+0000 mon.smithi078 (mon.0) 383 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:35.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.356616+0000 mon.smithi078 (mon.0) 383 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:35.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.357132+0000 mon.smithi078 (mon.0) 384 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:35.570 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:35 smithi078 bash[20010]: audit 2024-09-21T11:54:34.357132+0000 mon.smithi078 (mon.0) 384 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:35.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: cluster 2024-09-21T11:54:33.409550+0000 mgr.smithi078.aqnwdz (mgr.14203) 95 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:35.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: cluster 2024-09-21T11:54:33.409550+0000 mgr.smithi078.aqnwdz (mgr.14203) 95 : cluster [DBG] pgmap v41: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:35.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.346282+0000 mon.smithi195 (mon.1) 4 : audit [INF] from='client.? 172.21.15.195:0/1128035802' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"} : dispatch 2024-09-21T11:54:35.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.346282+0000 mon.smithi195 (mon.1) 4 : audit [INF] from='client.? 172.21.15.195:0/1128035802' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"} : dispatch 2024-09-21T11:54:35.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.347140+0000 mon.smithi078 (mon.0) 379 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"} : dispatch 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.347140+0000 mon.smithi078 (mon.0) 379 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"} : dispatch 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.350543+0000 mon.smithi078 (mon.0) 380 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"}]': finished 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.350543+0000 mon.smithi078 (mon.0) 380 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "76b3e31f-2dba-453f-834f-b949fd6fd6cd"}]': finished 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: cluster 2024-09-21T11:54:34.355608+0000 mon.smithi078 (mon.0) 381 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: cluster 2024-09-21T11:54:34.355608+0000 mon.smithi078 (mon.0) 381 : cluster [DBG] osdmap e8: 3 total, 0 up, 3 in 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.356095+0000 mon.smithi078 (mon.0) 382 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.356095+0000 mon.smithi078 (mon.0) 382 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.356616+0000 mon.smithi078 (mon.0) 383 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.356616+0000 mon.smithi078 (mon.0) 383 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.357132+0000 mon.smithi078 (mon.0) 384 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:35 smithi195 bash[25267]: audit 2024-09-21T11:54:34.357132+0000 mon.smithi078 (mon.0) 384 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:36.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.736145+0000 mon.smithi195 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.195:0/464898633' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:36.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.736145+0000 mon.smithi195 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.195:0/464898633' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:36.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.926493+0000 mon.smithi078 (mon.0) 385 : audit [INF] from='client.? 172.21.15.78:0/3314231450' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7aaa842d-af2a-4229-96b8-37aa67cc1e10"} : dispatch 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.926493+0000 mon.smithi078 (mon.0) 385 : audit [INF] from='client.? 172.21.15.78:0/3314231450' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7aaa842d-af2a-4229-96b8-37aa67cc1e10"} : dispatch 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.929690+0000 mon.smithi078 (mon.0) 386 : audit [INF] from='client.? 172.21.15.78:0/3314231450' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7aaa842d-af2a-4229-96b8-37aa67cc1e10"}]': finished 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.929690+0000 mon.smithi078 (mon.0) 386 : audit [INF] from='client.? 172.21.15.78:0/3314231450' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7aaa842d-af2a-4229-96b8-37aa67cc1e10"}]': finished 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: cluster 2024-09-21T11:54:35.934481+0000 mon.smithi078 (mon.0) 387 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: cluster 2024-09-21T11:54:35.934481+0000 mon.smithi078 (mon.0) 387 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.934713+0000 mon.smithi078 (mon.0) 388 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.934713+0000 mon.smithi078 (mon.0) 388 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.934910+0000 mon.smithi078 (mon.0) 389 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.934910+0000 mon.smithi078 (mon.0) 389 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.935166+0000 mon.smithi078 (mon.0) 390 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.935166+0000 mon.smithi078 (mon.0) 390 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.935361+0000 mon.smithi078 (mon.0) 391 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:36 smithi078 bash[20010]: audit 2024-09-21T11:54:35.935361+0000 mon.smithi078 (mon.0) 391 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.736145+0000 mon.smithi195 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.195:0/464898633' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.736145+0000 mon.smithi195 (mon.1) 5 : audit [DBG] from='client.? 172.21.15.195:0/464898633' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.926493+0000 mon.smithi078 (mon.0) 385 : audit [INF] from='client.? 172.21.15.78:0/3314231450' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7aaa842d-af2a-4229-96b8-37aa67cc1e10"} : dispatch 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.926493+0000 mon.smithi078 (mon.0) 385 : audit [INF] from='client.? 172.21.15.78:0/3314231450' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "7aaa842d-af2a-4229-96b8-37aa67cc1e10"} : dispatch 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.929690+0000 mon.smithi078 (mon.0) 386 : audit [INF] from='client.? 172.21.15.78:0/3314231450' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7aaa842d-af2a-4229-96b8-37aa67cc1e10"}]': finished 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.929690+0000 mon.smithi078 (mon.0) 386 : audit [INF] from='client.? 172.21.15.78:0/3314231450' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "7aaa842d-af2a-4229-96b8-37aa67cc1e10"}]': finished 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: cluster 2024-09-21T11:54:35.934481+0000 mon.smithi078 (mon.0) 387 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: cluster 2024-09-21T11:54:35.934481+0000 mon.smithi078 (mon.0) 387 : cluster [DBG] osdmap e9: 4 total, 0 up, 4 in 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.934713+0000 mon.smithi078 (mon.0) 388 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.934713+0000 mon.smithi078 (mon.0) 388 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.934910+0000 mon.smithi078 (mon.0) 389 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.934910+0000 mon.smithi078 (mon.0) 389 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.935166+0000 mon.smithi078 (mon.0) 390 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:36.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.935166+0000 mon.smithi078 (mon.0) 390 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:36.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.935361+0000 mon.smithi078 (mon.0) 391 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:36.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:36 smithi195 bash[25267]: audit 2024-09-21T11:54:35.935361+0000 mon.smithi078 (mon.0) 391 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:37.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:37 smithi195 bash[25267]: cluster 2024-09-21T11:54:35.410032+0000 mgr.smithi078.aqnwdz (mgr.14203) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:37.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:37 smithi195 bash[25267]: cluster 2024-09-21T11:54:35.410032+0000 mgr.smithi078.aqnwdz (mgr.14203) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:37.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:37 smithi078 bash[20010]: cluster 2024-09-21T11:54:35.410032+0000 mgr.smithi078.aqnwdz (mgr.14203) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:37.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:37 smithi078 bash[20010]: cluster 2024-09-21T11:54:35.410032+0000 mgr.smithi078.aqnwdz (mgr.14203) 96 : cluster [DBG] pgmap v43: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:38.571 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:38 smithi195 bash[25267]: audit 2024-09-21T11:54:37.431878+0000 mon.smithi078 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.78:0/539827895' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:38.571 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:38 smithi195 bash[25267]: audit 2024-09-21T11:54:37.431878+0000 mon.smithi078 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.78:0/539827895' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:38.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:38 smithi078 bash[20010]: audit 2024-09-21T11:54:37.431878+0000 mon.smithi078 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.78:0/539827895' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:38.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:38 smithi078 bash[20010]: audit 2024-09-21T11:54:37.431878+0000 mon.smithi078 (mon.0) 392 : audit [DBG] from='client.? 172.21.15.78:0/539827895' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:39.426 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:39 smithi195 bash[25267]: cluster 2024-09-21T11:54:37.410421+0000 mgr.smithi078.aqnwdz (mgr.14203) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:39.426 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:39 smithi195 bash[25267]: cluster 2024-09-21T11:54:37.410421+0000 mgr.smithi078.aqnwdz (mgr.14203) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:39.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:39 smithi078 bash[20010]: cluster 2024-09-21T11:54:37.410421+0000 mgr.smithi078.aqnwdz (mgr.14203) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:39.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:39 smithi078 bash[20010]: cluster 2024-09-21T11:54:37.410421+0000 mgr.smithi078.aqnwdz (mgr.14203) 97 : cluster [DBG] pgmap v45: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:40.348 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:54:40.442 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.256555+0000 mon.smithi195 (mon.1) 6 : audit [INF] from='client.? 172.21.15.195:0/1530185761' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"} : dispatch 2024-09-21T11:54:40.442 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.256555+0000 mon.smithi195 (mon.1) 6 : audit [INF] from='client.? 172.21.15.195:0/1530185761' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"} : dispatch 2024-09-21T11:54:40.442 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.257746+0000 mon.smithi078 (mon.0) 393 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"} : dispatch 2024-09-21T11:54:40.442 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.257746+0000 mon.smithi078 (mon.0) 393 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"} : dispatch 2024-09-21T11:54:40.442 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.261485+0000 mon.smithi078 (mon.0) 394 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"}]': finished 2024-09-21T11:54:40.442 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.261485+0000 mon.smithi078 (mon.0) 394 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"}]': finished 2024-09-21T11:54:40.442 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: cluster 2024-09-21T11:54:39.266804+0000 mon.smithi078 (mon.0) 395 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-21T11:54:40.442 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: cluster 2024-09-21T11:54:39.266804+0000 mon.smithi078 (mon.0) 395 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.267437+0000 mon.smithi078 (mon.0) 396 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.267437+0000 mon.smithi078 (mon.0) 396 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.267998+0000 mon.smithi078 (mon.0) 397 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.267998+0000 mon.smithi078 (mon.0) 397 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.268527+0000 mon.smithi078 (mon.0) 398 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.268527+0000 mon.smithi078 (mon.0) 398 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.269088+0000 mon.smithi078 (mon.0) 399 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.269088+0000 mon.smithi078 (mon.0) 399 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.269648+0000 mon.smithi078 (mon.0) 400 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: audit 2024-09-21T11:54:39.269648+0000 mon.smithi078 (mon.0) 400 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: cluster 2024-09-21T11:54:39.410832+0000 mgr.smithi078.aqnwdz (mgr.14203) 98 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:40.443 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:40 smithi078 bash[20010]: cluster 2024-09-21T11:54:39.410832+0000 mgr.smithi078.aqnwdz (mgr.14203) 98 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.256555+0000 mon.smithi195 (mon.1) 6 : audit [INF] from='client.? 172.21.15.195:0/1530185761' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"} : dispatch 2024-09-21T11:54:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.256555+0000 mon.smithi195 (mon.1) 6 : audit [INF] from='client.? 172.21.15.195:0/1530185761' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"} : dispatch 2024-09-21T11:54:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.257746+0000 mon.smithi078 (mon.0) 393 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"} : dispatch 2024-09-21T11:54:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.257746+0000 mon.smithi078 (mon.0) 393 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.261485+0000 mon.smithi078 (mon.0) 394 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"}]': finished 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.261485+0000 mon.smithi078 (mon.0) 394 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "3329677b-2066-420a-abfc-66ed1b02c330"}]': finished 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: cluster 2024-09-21T11:54:39.266804+0000 mon.smithi078 (mon.0) 395 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: cluster 2024-09-21T11:54:39.266804+0000 mon.smithi078 (mon.0) 395 : cluster [DBG] osdmap e10: 5 total, 0 up, 5 in 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.267437+0000 mon.smithi078 (mon.0) 396 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.267437+0000 mon.smithi078 (mon.0) 396 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.267998+0000 mon.smithi078 (mon.0) 397 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.267998+0000 mon.smithi078 (mon.0) 397 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.268527+0000 mon.smithi078 (mon.0) 398 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.268527+0000 mon.smithi078 (mon.0) 398 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.269088+0000 mon.smithi078 (mon.0) 399 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.269088+0000 mon.smithi078 (mon.0) 399 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.269648+0000 mon.smithi078 (mon.0) 400 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: audit 2024-09-21T11:54:39.269648+0000 mon.smithi078 (mon.0) 400 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: cluster 2024-09-21T11:54:39.410832+0000 mgr.smithi078.aqnwdz (mgr.14203) 98 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:40 smithi195 bash[25267]: cluster 2024-09-21T11:54:39.410832+0000 mgr.smithi078.aqnwdz (mgr.14203) 98 : cluster [DBG] pgmap v47: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:41.556 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:41 smithi078 bash[20010]: audit 2024-09-21T11:54:40.790982+0000 mon.smithi195 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.195:0/3713002592' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:41.556 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:41 smithi078 bash[20010]: audit 2024-09-21T11:54:40.790982+0000 mon.smithi195 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.195:0/3713002592' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:41.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:41 smithi195 bash[25267]: audit 2024-09-21T11:54:40.790982+0000 mon.smithi195 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.195:0/3713002592' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:41.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:41 smithi195 bash[25267]: audit 2024-09-21T11:54:40.790982+0000 mon.smithi195 (mon.1) 7 : audit [DBG] from='client.? 172.21.15.195:0/3713002592' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:41.895 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:54:42.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: cluster 2024-09-21T11:54:41.411218+0000 mgr.smithi078.aqnwdz (mgr.14203) 99 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: cluster 2024-09-21T11:54:41.411218+0000 mgr.smithi078.aqnwdz (mgr.14203) 99 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.443843+0000 mon.smithi078 (mon.0) 401 : audit [INF] from='client.? 172.21.15.78:0/1117147438' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "701423e0-1207-4510-823c-1fb4fde3147d"} : dispatch 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.443843+0000 mon.smithi078 (mon.0) 401 : audit [INF] from='client.? 172.21.15.78:0/1117147438' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "701423e0-1207-4510-823c-1fb4fde3147d"} : dispatch 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.447065+0000 mon.smithi078 (mon.0) 402 : audit [INF] from='client.? 172.21.15.78:0/1117147438' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "701423e0-1207-4510-823c-1fb4fde3147d"}]': finished 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.447065+0000 mon.smithi078 (mon.0) 402 : audit [INF] from='client.? 172.21.15.78:0/1117147438' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "701423e0-1207-4510-823c-1fb4fde3147d"}]': finished 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: cluster 2024-09-21T11:54:41.451172+0000 mon.smithi078 (mon.0) 403 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: cluster 2024-09-21T11:54:41.451172+0000 mon.smithi078 (mon.0) 403 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.451468+0000 mon.smithi078 (mon.0) 404 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.451468+0000 mon.smithi078 (mon.0) 404 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.451858+0000 mon.smithi078 (mon.0) 405 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.451858+0000 mon.smithi078 (mon.0) 405 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:42.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.452199+0000 mon.smithi078 (mon.0) 406 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:42.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.452199+0000 mon.smithi078 (mon.0) 406 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:42.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.452528+0000 mon.smithi078 (mon.0) 407 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:42.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.452528+0000 mon.smithi078 (mon.0) 407 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:42.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.452854+0000 mon.smithi078 (mon.0) 408 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:42.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.452854+0000 mon.smithi078 (mon.0) 408 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:42.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.453187+0000 mon.smithi078 (mon.0) 409 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:42.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.453187+0000 mon.smithi078 (mon.0) 409 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:42.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.894695+0000 mon.smithi078 (mon.0) 410 : audit [DBG] from='client.? 172.21.15.78:0/1141716672' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:42.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:42 smithi195 bash[25267]: audit 2024-09-21T11:54:41.894695+0000 mon.smithi078 (mon.0) 410 : audit [DBG] from='client.? 172.21.15.78:0/1141716672' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: cluster 2024-09-21T11:54:41.411218+0000 mgr.smithi078.aqnwdz (mgr.14203) 99 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: cluster 2024-09-21T11:54:41.411218+0000 mgr.smithi078.aqnwdz (mgr.14203) 99 : cluster [DBG] pgmap v48: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.443843+0000 mon.smithi078 (mon.0) 401 : audit [INF] from='client.? 172.21.15.78:0/1117147438' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "701423e0-1207-4510-823c-1fb4fde3147d"} : dispatch 2024-09-21T11:54:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.443843+0000 mon.smithi078 (mon.0) 401 : audit [INF] from='client.? 172.21.15.78:0/1117147438' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "701423e0-1207-4510-823c-1fb4fde3147d"} : dispatch 2024-09-21T11:54:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.447065+0000 mon.smithi078 (mon.0) 402 : audit [INF] from='client.? 172.21.15.78:0/1117147438' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "701423e0-1207-4510-823c-1fb4fde3147d"}]': finished 2024-09-21T11:54:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.447065+0000 mon.smithi078 (mon.0) 402 : audit [INF] from='client.? 172.21.15.78:0/1117147438' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "701423e0-1207-4510-823c-1fb4fde3147d"}]': finished 2024-09-21T11:54:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: cluster 2024-09-21T11:54:41.451172+0000 mon.smithi078 (mon.0) 403 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: cluster 2024-09-21T11:54:41.451172+0000 mon.smithi078 (mon.0) 403 : cluster [DBG] osdmap e11: 6 total, 0 up, 6 in 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.451468+0000 mon.smithi078 (mon.0) 404 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.451468+0000 mon.smithi078 (mon.0) 404 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.451858+0000 mon.smithi078 (mon.0) 405 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.451858+0000 mon.smithi078 (mon.0) 405 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.452199+0000 mon.smithi078 (mon.0) 406 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.452199+0000 mon.smithi078 (mon.0) 406 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.452528+0000 mon.smithi078 (mon.0) 407 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.452528+0000 mon.smithi078 (mon.0) 407 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.452854+0000 mon.smithi078 (mon.0) 408 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.452854+0000 mon.smithi078 (mon.0) 408 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.453187+0000 mon.smithi078 (mon.0) 409 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.453187+0000 mon.smithi078 (mon.0) 409 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.894695+0000 mon.smithi078 (mon.0) 410 : audit [DBG] from='client.? 172.21.15.78:0/1141716672' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:42.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:42 smithi078 bash[20010]: audit 2024-09-21T11:54:41.894695+0000 mon.smithi078 (mon.0) 410 : audit [DBG] from='client.? 172.21.15.78:0/1141716672' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:42.929 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":11,"num_osds":6,"num_up_osds":0,"osd_up_since":0,"num_in_osds":6,"osd_in_since":1726919681,"num_remapped_pgs":0} 2024-09-21T11:54:43.930 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:54:44.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:44 smithi078 bash[20010]: cluster 2024-09-21T11:54:43.411634+0000 mgr.smithi078.aqnwdz (mgr.14203) 100 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:44.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:44 smithi078 bash[20010]: cluster 2024-09-21T11:54:43.411634+0000 mgr.smithi078.aqnwdz (mgr.14203) 100 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:44.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:44 smithi078 bash[20010]: audit 2024-09-21T11:54:43.552463+0000 mon.smithi078 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.78:0/4194186989' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:44.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:44 smithi078 bash[20010]: audit 2024-09-21T11:54:43.552463+0000 mon.smithi078 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.78:0/4194186989' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:44.735 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:44 smithi195 bash[25267]: cluster 2024-09-21T11:54:43.411634+0000 mgr.smithi078.aqnwdz (mgr.14203) 100 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:44.735 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:44 smithi195 bash[25267]: cluster 2024-09-21T11:54:43.411634+0000 mgr.smithi078.aqnwdz (mgr.14203) 100 : cluster [DBG] pgmap v50: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:44.735 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:44 smithi195 bash[25267]: audit 2024-09-21T11:54:43.552463+0000 mon.smithi078 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.78:0/4194186989' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:44.735 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:44 smithi195 bash[25267]: audit 2024-09-21T11:54:43.552463+0000 mon.smithi078 (mon.0) 411 : audit [DBG] from='client.? 172.21.15.78:0/4194186989' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:45.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.506446+0000 mon.smithi195 (mon.1) 8 : audit [INF] from='client.? 172.21.15.195:0/1461702486' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"} : dispatch 2024-09-21T11:54:45.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.506446+0000 mon.smithi195 (mon.1) 8 : audit [INF] from='client.? 172.21.15.195:0/1461702486' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"} : dispatch 2024-09-21T11:54:45.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.507441+0000 mon.smithi078 (mon.0) 412 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"} : dispatch 2024-09-21T11:54:45.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.507441+0000 mon.smithi078 (mon.0) 412 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"} : dispatch 2024-09-21T11:54:45.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.512461+0000 mon.smithi078 (mon.0) 413 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"}]': finished 2024-09-21T11:54:45.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.512461+0000 mon.smithi078 (mon.0) 413 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"}]': finished 2024-09-21T11:54:45.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: cluster 2024-09-21T11:54:44.516533+0000 mon.smithi078 (mon.0) 414 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-21T11:54:45.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: cluster 2024-09-21T11:54:44.516533+0000 mon.smithi078 (mon.0) 414 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-21T11:54:45.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.516970+0000 mon.smithi078 (mon.0) 415 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:45.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.516970+0000 mon.smithi078 (mon.0) 415 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.517442+0000 mon.smithi078 (mon.0) 416 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.517442+0000 mon.smithi078 (mon.0) 416 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.517861+0000 mon.smithi078 (mon.0) 417 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.517861+0000 mon.smithi078 (mon.0) 417 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.518258+0000 mon.smithi078 (mon.0) 418 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.518258+0000 mon.smithi078 (mon.0) 418 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.518666+0000 mon.smithi078 (mon.0) 419 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.518666+0000 mon.smithi078 (mon.0) 419 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.519050+0000 mon.smithi078 (mon.0) 420 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.519050+0000 mon.smithi078 (mon.0) 420 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.519447+0000 mon.smithi078 (mon.0) 421 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:54:45.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:45 smithi195 bash[25267]: audit 2024-09-21T11:54:44.519447+0000 mon.smithi078 (mon.0) 421 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:54:45.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.506446+0000 mon.smithi195 (mon.1) 8 : audit [INF] from='client.? 172.21.15.195:0/1461702486' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"} : dispatch 2024-09-21T11:54:45.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.506446+0000 mon.smithi195 (mon.1) 8 : audit [INF] from='client.? 172.21.15.195:0/1461702486' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"} : dispatch 2024-09-21T11:54:45.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.507441+0000 mon.smithi078 (mon.0) 412 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"} : dispatch 2024-09-21T11:54:45.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.507441+0000 mon.smithi078 (mon.0) 412 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.512461+0000 mon.smithi078 (mon.0) 413 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"}]': finished 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.512461+0000 mon.smithi078 (mon.0) 413 : audit [INF] from='client.? ' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "bbab3e6a-a252-468d-be07-8dd6b7267540"}]': finished 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: cluster 2024-09-21T11:54:44.516533+0000 mon.smithi078 (mon.0) 414 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: cluster 2024-09-21T11:54:44.516533+0000 mon.smithi078 (mon.0) 414 : cluster [DBG] osdmap e12: 7 total, 0 up, 7 in 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.516970+0000 mon.smithi078 (mon.0) 415 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.516970+0000 mon.smithi078 (mon.0) 415 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.517442+0000 mon.smithi078 (mon.0) 416 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.517442+0000 mon.smithi078 (mon.0) 416 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.517861+0000 mon.smithi078 (mon.0) 417 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.517861+0000 mon.smithi078 (mon.0) 417 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.518258+0000 mon.smithi078 (mon.0) 418 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.518258+0000 mon.smithi078 (mon.0) 418 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.518666+0000 mon.smithi078 (mon.0) 419 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:45.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.518666+0000 mon.smithi078 (mon.0) 419 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:45.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.519050+0000 mon.smithi078 (mon.0) 420 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:45.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.519050+0000 mon.smithi078 (mon.0) 420 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:45.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.519447+0000 mon.smithi078 (mon.0) 421 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:54:45.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:45 smithi078 bash[20010]: audit 2024-09-21T11:54:44.519447+0000 mon.smithi078 (mon.0) 421 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:54:46.808 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:46 smithi078 bash[20010]: cluster 2024-09-21T11:54:45.412042+0000 mgr.smithi078.aqnwdz (mgr.14203) 101 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:46.808 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:46 smithi078 bash[20010]: cluster 2024-09-21T11:54:45.412042+0000 mgr.smithi078.aqnwdz (mgr.14203) 101 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:46.808 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:46 smithi078 bash[20010]: audit 2024-09-21T11:54:45.999265+0000 mon.smithi195 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.195:0/860670495' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:46.808 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:46 smithi078 bash[20010]: audit 2024-09-21T11:54:45.999265+0000 mon.smithi195 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.195:0/860670495' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:46.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:46 smithi195 bash[25267]: cluster 2024-09-21T11:54:45.412042+0000 mgr.smithi078.aqnwdz (mgr.14203) 101 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:46.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:46 smithi195 bash[25267]: cluster 2024-09-21T11:54:45.412042+0000 mgr.smithi078.aqnwdz (mgr.14203) 101 : cluster [DBG] pgmap v52: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:46.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:46 smithi195 bash[25267]: audit 2024-09-21T11:54:45.999265+0000 mon.smithi195 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.195:0/860670495' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:46.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:46 smithi195 bash[25267]: audit 2024-09-21T11:54:45.999265+0000 mon.smithi195 (mon.1) 9 : audit [DBG] from='client.? 172.21.15.195:0/860670495' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:47.792 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:47 smithi078 bash[20010]: audit 2024-09-21T11:54:46.726122+0000 mon.smithi078 (mon.0) 422 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:47.792 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:47 smithi078 bash[20010]: audit 2024-09-21T11:54:46.726122+0000 mon.smithi078 (mon.0) 422 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:47.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:47 smithi195 bash[25267]: audit 2024-09-21T11:54:46.726122+0000 mon.smithi078 (mon.0) 422 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:47.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:47 smithi195 bash[25267]: audit 2024-09-21T11:54:46.726122+0000 mon.smithi078 (mon.0) 422 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:54:48.695 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:54:48.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: cluster 2024-09-21T11:54:47.412443+0000 mgr.smithi078.aqnwdz (mgr.14203) 102 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: cluster 2024-09-21T11:54:47.412443+0000 mgr.smithi078.aqnwdz (mgr.14203) 102 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.579208+0000 mon.smithi078 (mon.0) 423 : audit [INF] from='client.? 172.21.15.78:0/3470083242' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "86babd56-c65b-429f-aec4-e92f3dab799d"} : dispatch 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.579208+0000 mon.smithi078 (mon.0) 423 : audit [INF] from='client.? 172.21.15.78:0/3470083242' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "86babd56-c65b-429f-aec4-e92f3dab799d"} : dispatch 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.582205+0000 mon.smithi078 (mon.0) 424 : audit [INF] from='client.? 172.21.15.78:0/3470083242' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "86babd56-c65b-429f-aec4-e92f3dab799d"}]': finished 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.582205+0000 mon.smithi078 (mon.0) 424 : audit [INF] from='client.? 172.21.15.78:0/3470083242' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "86babd56-c65b-429f-aec4-e92f3dab799d"}]': finished 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: cluster 2024-09-21T11:54:47.586919+0000 mon.smithi078 (mon.0) 425 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: cluster 2024-09-21T11:54:47.586919+0000 mon.smithi078 (mon.0) 425 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.587241+0000 mon.smithi078 (mon.0) 426 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.587241+0000 mon.smithi078 (mon.0) 426 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.587595+0000 mon.smithi078 (mon.0) 427 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.587595+0000 mon.smithi078 (mon.0) 427 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.587892+0000 mon.smithi078 (mon.0) 428 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.587892+0000 mon.smithi078 (mon.0) 428 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.588200+0000 mon.smithi078 (mon.0) 429 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.588200+0000 mon.smithi078 (mon.0) 429 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.588481+0000 mon.smithi078 (mon.0) 430 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.588481+0000 mon.smithi078 (mon.0) 430 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.588751+0000 mon.smithi078 (mon.0) 431 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.588751+0000 mon.smithi078 (mon.0) 431 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.589030+0000 mon.smithi078 (mon.0) 432 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.589030+0000 mon.smithi078 (mon.0) 432 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:54:48.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.589297+0000 mon.smithi078 (mon.0) 433 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:54:48.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:48 smithi195 bash[25267]: audit 2024-09-21T11:54:47.589297+0000 mon.smithi078 (mon.0) 433 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: cluster 2024-09-21T11:54:47.412443+0000 mgr.smithi078.aqnwdz (mgr.14203) 102 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: cluster 2024-09-21T11:54:47.412443+0000 mgr.smithi078.aqnwdz (mgr.14203) 102 : cluster [DBG] pgmap v53: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.579208+0000 mon.smithi078 (mon.0) 423 : audit [INF] from='client.? 172.21.15.78:0/3470083242' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "86babd56-c65b-429f-aec4-e92f3dab799d"} : dispatch 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.579208+0000 mon.smithi078 (mon.0) 423 : audit [INF] from='client.? 172.21.15.78:0/3470083242' entity='client.bootstrap-osd' cmd={"prefix": "osd new", "uuid": "86babd56-c65b-429f-aec4-e92f3dab799d"} : dispatch 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.582205+0000 mon.smithi078 (mon.0) 424 : audit [INF] from='client.? 172.21.15.78:0/3470083242' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "86babd56-c65b-429f-aec4-e92f3dab799d"}]': finished 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.582205+0000 mon.smithi078 (mon.0) 424 : audit [INF] from='client.? 172.21.15.78:0/3470083242' entity='client.bootstrap-osd' cmd='[{"prefix": "osd new", "uuid": "86babd56-c65b-429f-aec4-e92f3dab799d"}]': finished 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: cluster 2024-09-21T11:54:47.586919+0000 mon.smithi078 (mon.0) 425 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: cluster 2024-09-21T11:54:47.586919+0000 mon.smithi078 (mon.0) 425 : cluster [DBG] osdmap e13: 8 total, 0 up, 8 in 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.587241+0000 mon.smithi078 (mon.0) 426 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.587241+0000 mon.smithi078 (mon.0) 426 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.587595+0000 mon.smithi078 (mon.0) 427 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.587595+0000 mon.smithi078 (mon.0) 427 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.587892+0000 mon.smithi078 (mon.0) 428 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.587892+0000 mon.smithi078 (mon.0) 428 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.588200+0000 mon.smithi078 (mon.0) 429 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.588200+0000 mon.smithi078 (mon.0) 429 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.588481+0000 mon.smithi078 (mon.0) 430 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.588481+0000 mon.smithi078 (mon.0) 430 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.588751+0000 mon.smithi078 (mon.0) 431 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.588751+0000 mon.smithi078 (mon.0) 431 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.589030+0000 mon.smithi078 (mon.0) 432 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.589030+0000 mon.smithi078 (mon.0) 432 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.589297+0000 mon.smithi078 (mon.0) 433 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:54:48.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:48 smithi078 bash[20010]: audit 2024-09-21T11:54:47.589297+0000 mon.smithi078 (mon.0) 433 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:54:49.817 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:49 smithi078 bash[20010]: audit 2024-09-21T11:54:49.160713+0000 mon.smithi078 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.78:0/470542752' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:49.817 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:49 smithi078 bash[20010]: audit 2024-09-21T11:54:49.160713+0000 mon.smithi078 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.78:0/470542752' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:49.856 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:49 smithi195 bash[25267]: audit 2024-09-21T11:54:49.160713+0000 mon.smithi078 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.78:0/470542752' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:49.856 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:49 smithi195 bash[25267]: audit 2024-09-21T11:54:49.160713+0000 mon.smithi078 (mon.0) 434 : audit [DBG] from='client.? 172.21.15.78:0/470542752' entity='client.bootstrap-osd' cmd={"prefix": "mon getmap"} : dispatch 2024-09-21T11:54:50.176 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:54:50.845 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:50 smithi078 bash[20010]: cluster 2024-09-21T11:54:49.412802+0000 mgr.smithi078.aqnwdz (mgr.14203) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:50.845 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:50 smithi078 bash[20010]: cluster 2024-09-21T11:54:49.412802+0000 mgr.smithi078.aqnwdz (mgr.14203) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:50.845 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:50 smithi078 bash[20010]: audit 2024-09-21T11:54:50.175166+0000 mon.smithi078 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.78:0/340550186' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:50.845 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:50 smithi078 bash[20010]: audit 2024-09-21T11:54:50.175166+0000 mon.smithi078 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.78:0/340550186' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:50.846 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726919687,"num_remapped_pgs":0} 2024-09-21T11:54:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:50 smithi195 bash[25267]: cluster 2024-09-21T11:54:49.412802+0000 mgr.smithi078.aqnwdz (mgr.14203) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:50 smithi195 bash[25267]: cluster 2024-09-21T11:54:49.412802+0000 mgr.smithi078.aqnwdz (mgr.14203) 103 : cluster [DBG] pgmap v55: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:50 smithi195 bash[25267]: audit 2024-09-21T11:54:50.175166+0000 mon.smithi078 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.78:0/340550186' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:50 smithi195 bash[25267]: audit 2024-09-21T11:54:50.175166+0000 mon.smithi078 (mon.0) 435 : audit [DBG] from='client.? 172.21.15.78:0/340550186' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:51.847 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:54:52.802 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:52 smithi078 bash[20010]: cluster 2024-09-21T11:54:51.413199+0000 mgr.smithi078.aqnwdz (mgr.14203) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:52.802 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:52 smithi078 bash[20010]: cluster 2024-09-21T11:54:51.413199+0000 mgr.smithi078.aqnwdz (mgr.14203) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:52.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:52 smithi195 bash[25267]: cluster 2024-09-21T11:54:51.413199+0000 mgr.smithi078.aqnwdz (mgr.14203) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:52.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:52 smithi195 bash[25267]: cluster 2024-09-21T11:54:51.413199+0000 mgr.smithi078.aqnwdz (mgr.14203) 104 : cluster [DBG] pgmap v56: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:54.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:54 smithi078 bash[20010]: cluster 2024-09-21T11:54:53.413540+0000 mgr.smithi078.aqnwdz (mgr.14203) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:54.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:54 smithi078 bash[20010]: cluster 2024-09-21T11:54:53.413540+0000 mgr.smithi078.aqnwdz (mgr.14203) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:54.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:54 smithi195 bash[25267]: cluster 2024-09-21T11:54:53.413540+0000 mgr.smithi078.aqnwdz (mgr.14203) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:54.920 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:54 smithi195 bash[25267]: cluster 2024-09-21T11:54:53.413540+0000 mgr.smithi078.aqnwdz (mgr.14203) 105 : cluster [DBG] pgmap v57: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:56.707 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:56 smithi195 bash[25267]: cluster 2024-09-21T11:54:55.413937+0000 mgr.smithi078.aqnwdz (mgr.14203) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:56.707 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:56 smithi195 bash[25267]: cluster 2024-09-21T11:54:55.413937+0000 mgr.smithi078.aqnwdz (mgr.14203) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:56.838 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:54:56.873 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:56 smithi078 bash[20010]: cluster 2024-09-21T11:54:55.413937+0000 mgr.smithi078.aqnwdz (mgr.14203) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:56.873 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:56 smithi078 bash[20010]: cluster 2024-09-21T11:54:55.413937+0000 mgr.smithi078.aqnwdz (mgr.14203) 106 : cluster [DBG] pgmap v58: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:58.163 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:54:58.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:58 smithi195 bash[25267]: cluster 2024-09-21T11:54:57.414308+0000 mgr.smithi078.aqnwdz (mgr.14203) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:58.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:58 smithi195 bash[25267]: cluster 2024-09-21T11:54:57.414308+0000 mgr.smithi078.aqnwdz (mgr.14203) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:58.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:58 smithi195 bash[25267]: audit 2024-09-21T11:54:58.162485+0000 mon.smithi078 (mon.0) 436 : audit [DBG] from='client.? 172.21.15.78:0/2927814496' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:58.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:58 smithi195 bash[25267]: audit 2024-09-21T11:54:58.162485+0000 mon.smithi078 (mon.0) 436 : audit [DBG] from='client.? 172.21.15.78:0/2927814496' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:58.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:58 smithi078 bash[20010]: cluster 2024-09-21T11:54:57.414308+0000 mgr.smithi078.aqnwdz (mgr.14203) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:58.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:58 smithi078 bash[20010]: cluster 2024-09-21T11:54:57.414308+0000 mgr.smithi078.aqnwdz (mgr.14203) 107 : cluster [DBG] pgmap v59: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:54:58.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:58 smithi078 bash[20010]: audit 2024-09-21T11:54:58.162485+0000 mon.smithi078 (mon.0) 436 : audit [DBG] from='client.? 172.21.15.78:0/2927814496' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:58.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:58 smithi078 bash[20010]: audit 2024-09-21T11:54:58.162485+0000 mon.smithi078 (mon.0) 436 : audit [DBG] from='client.? 172.21.15.78:0/2927814496' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:54:59.171 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726919687,"num_remapped_pgs":0} 2024-09-21T11:54:59.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:59 smithi078 bash[20010]: audit 2024-09-21T11:54:58.947568+0000 mon.smithi078 (mon.0) 437 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-21T11:54:59.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:59 smithi078 bash[20010]: audit 2024-09-21T11:54:58.947568+0000 mon.smithi078 (mon.0) 437 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-21T11:54:59.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:59 smithi078 bash[20010]: audit 2024-09-21T11:54:58.949207+0000 mon.smithi078 (mon.0) 438 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:59.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:59 smithi078 bash[20010]: audit 2024-09-21T11:54:58.949207+0000 mon.smithi078 (mon.0) 438 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:59.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:59 smithi078 bash[20010]: cephadm 2024-09-21T11:54:58.950646+0000 mgr.smithi078.aqnwdz (mgr.14203) 108 : cephadm [INF] Deploying daemon osd.0 on smithi195 2024-09-21T11:54:59.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:54:59 smithi078 bash[20010]: cephadm 2024-09-21T11:54:58.950646+0000 mgr.smithi078.aqnwdz (mgr.14203) 108 : cephadm [INF] Deploying daemon osd.0 on smithi195 2024-09-21T11:54:59.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:59 smithi195 bash[25267]: audit 2024-09-21T11:54:58.947568+0000 mon.smithi078 (mon.0) 437 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-21T11:54:59.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:59 smithi195 bash[25267]: audit 2024-09-21T11:54:58.947568+0000 mon.smithi078 (mon.0) 437 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.0"} : dispatch 2024-09-21T11:54:59.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:59 smithi195 bash[25267]: audit 2024-09-21T11:54:58.949207+0000 mon.smithi078 (mon.0) 438 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:59.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:59 smithi195 bash[25267]: audit 2024-09-21T11:54:58.949207+0000 mon.smithi078 (mon.0) 438 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:54:59.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:59 smithi195 bash[25267]: cephadm 2024-09-21T11:54:58.950646+0000 mgr.smithi078.aqnwdz (mgr.14203) 108 : cephadm [INF] Deploying daemon osd.0 on smithi195 2024-09-21T11:54:59.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:54:59 smithi195 bash[25267]: cephadm 2024-09-21T11:54:58.950646+0000 mgr.smithi078.aqnwdz (mgr.14203) 108 : cephadm [INF] Deploying daemon osd.0 on smithi195 2024-09-21T11:55:00.173 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:55:00.774 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:00 smithi195 bash[25267]: cluster 2024-09-21T11:54:59.414588+0000 mgr.smithi078.aqnwdz (mgr.14203) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:00.774 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:00 smithi195 bash[25267]: cluster 2024-09-21T11:54:59.414588+0000 mgr.smithi078.aqnwdz (mgr.14203) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:00.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:00 smithi078 bash[20010]: cluster 2024-09-21T11:54:59.414588+0000 mgr.smithi078.aqnwdz (mgr.14203) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:00.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:00 smithi078 bash[20010]: cluster 2024-09-21T11:54:59.414588+0000 mgr.smithi078.aqnwdz (mgr.14203) 109 : cluster [DBG] pgmap v60: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:02.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:02 smithi195 bash[25267]: cluster 2024-09-21T11:55:01.414844+0000 mgr.smithi078.aqnwdz (mgr.14203) 110 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:02.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:02 smithi195 bash[25267]: cluster 2024-09-21T11:55:01.414844+0000 mgr.smithi078.aqnwdz (mgr.14203) 110 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:02.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:02 smithi195 bash[25267]: audit 2024-09-21T11:55:01.725930+0000 mon.smithi078 (mon.0) 439 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:02.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:02 smithi195 bash[25267]: audit 2024-09-21T11:55:01.725930+0000 mon.smithi078 (mon.0) 439 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:02.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:02 smithi195 bash[25267]: audit 2024-09-21T11:55:02.315917+0000 mon.smithi078 (mon.0) 440 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-21T11:55:02.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:02 smithi195 bash[25267]: audit 2024-09-21T11:55:02.315917+0000 mon.smithi078 (mon.0) 440 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-21T11:55:02.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:02 smithi195 bash[25267]: audit 2024-09-21T11:55:02.317397+0000 mon.smithi078 (mon.0) 441 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:02.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:02 smithi195 bash[25267]: audit 2024-09-21T11:55:02.317397+0000 mon.smithi078 (mon.0) 441 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:02.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:02 smithi078 bash[20010]: cluster 2024-09-21T11:55:01.414844+0000 mgr.smithi078.aqnwdz (mgr.14203) 110 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:02 smithi078 bash[20010]: cluster 2024-09-21T11:55:01.414844+0000 mgr.smithi078.aqnwdz (mgr.14203) 110 : cluster [DBG] pgmap v61: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:02 smithi078 bash[20010]: audit 2024-09-21T11:55:01.725930+0000 mon.smithi078 (mon.0) 439 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:02 smithi078 bash[20010]: audit 2024-09-21T11:55:01.725930+0000 mon.smithi078 (mon.0) 439 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:02 smithi078 bash[20010]: audit 2024-09-21T11:55:02.315917+0000 mon.smithi078 (mon.0) 440 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-21T11:55:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:02 smithi078 bash[20010]: audit 2024-09-21T11:55:02.315917+0000 mon.smithi078 (mon.0) 440 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.1"} : dispatch 2024-09-21T11:55:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:02 smithi078 bash[20010]: audit 2024-09-21T11:55:02.317397+0000 mon.smithi078 (mon.0) 441 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:02 smithi078 bash[20010]: audit 2024-09-21T11:55:02.317397+0000 mon.smithi078 (mon.0) 441 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:03 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:03.735 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:03 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:03.735 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:03 smithi195 bash[25267]: cephadm 2024-09-21T11:55:02.318640+0000 mgr.smithi078.aqnwdz (mgr.14203) 111 : cephadm [INF] Deploying daemon osd.1 on smithi078 2024-09-21T11:55:03.735 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:03 smithi195 bash[25267]: cephadm 2024-09-21T11:55:02.318640+0000 mgr.smithi078.aqnwdz (mgr.14203) 111 : cephadm [INF] Deploying daemon osd.1 on smithi078 2024-09-21T11:55:03.848 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:03 smithi078 bash[20010]: cephadm 2024-09-21T11:55:02.318640+0000 mgr.smithi078.aqnwdz (mgr.14203) 111 : cephadm [INF] Deploying daemon osd.1 on smithi078 2024-09-21T11:55:03.848 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:03 smithi078 bash[20010]: cephadm 2024-09-21T11:55:02.318640+0000 mgr.smithi078.aqnwdz (mgr.14203) 111 : cephadm [INF] Deploying daemon osd.1 on smithi078 2024-09-21T11:55:04.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: cluster 2024-09-21T11:55:03.415220+0000 mgr.smithi078.aqnwdz (mgr.14203) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:04.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: cluster 2024-09-21T11:55:03.415220+0000 mgr.smithi078.aqnwdz (mgr.14203) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:04.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: audit 2024-09-21T11:55:03.664467+0000 mon.smithi078 (mon.0) 442 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:04.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: audit 2024-09-21T11:55:03.664467+0000 mon.smithi078 (mon.0) 442 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:04.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: audit 2024-09-21T11:55:03.672992+0000 mon.smithi078 (mon.0) 443 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:04.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: audit 2024-09-21T11:55:03.672992+0000 mon.smithi078 (mon.0) 443 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:04.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: audit 2024-09-21T11:55:03.674607+0000 mon.smithi078 (mon.0) 444 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-21T11:55:04.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: audit 2024-09-21T11:55:03.674607+0000 mon.smithi078 (mon.0) 444 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-21T11:55:04.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: audit 2024-09-21T11:55:03.676158+0000 mon.smithi078 (mon.0) 445 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:04.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: audit 2024-09-21T11:55:03.676158+0000 mon.smithi078 (mon.0) 445 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:04.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: cephadm 2024-09-21T11:55:03.677615+0000 mgr.smithi078.aqnwdz (mgr.14203) 113 : cephadm [INF] Deploying daemon osd.2 on smithi195 2024-09-21T11:55:04.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:04 smithi195 bash[25267]: cephadm 2024-09-21T11:55:03.677615+0000 mgr.smithi078.aqnwdz (mgr.14203) 113 : cephadm [INF] Deploying daemon osd.2 on smithi195 2024-09-21T11:55:04.981 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:55:05.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: cluster 2024-09-21T11:55:03.415220+0000 mgr.smithi078.aqnwdz (mgr.14203) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:05.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: cluster 2024-09-21T11:55:03.415220+0000 mgr.smithi078.aqnwdz (mgr.14203) 112 : cluster [DBG] pgmap v62: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:05.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: audit 2024-09-21T11:55:03.664467+0000 mon.smithi078 (mon.0) 442 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:05.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: audit 2024-09-21T11:55:03.664467+0000 mon.smithi078 (mon.0) 442 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:05.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: audit 2024-09-21T11:55:03.672992+0000 mon.smithi078 (mon.0) 443 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:05.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: audit 2024-09-21T11:55:03.672992+0000 mon.smithi078 (mon.0) 443 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:05.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: audit 2024-09-21T11:55:03.674607+0000 mon.smithi078 (mon.0) 444 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-21T11:55:05.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: audit 2024-09-21T11:55:03.674607+0000 mon.smithi078 (mon.0) 444 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.2"} : dispatch 2024-09-21T11:55:05.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: audit 2024-09-21T11:55:03.676158+0000 mon.smithi078 (mon.0) 445 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:05.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: audit 2024-09-21T11:55:03.676158+0000 mon.smithi078 (mon.0) 445 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:05.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: cephadm 2024-09-21T11:55:03.677615+0000 mgr.smithi078.aqnwdz (mgr.14203) 113 : cephadm [INF] Deploying daemon osd.2 on smithi195 2024-09-21T11:55:05.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:04 smithi078 bash[20010]: cephadm 2024-09-21T11:55:03.677615+0000 mgr.smithi078.aqnwdz (mgr.14203) 113 : cephadm [INF] Deploying daemon osd.2 on smithi195 2024-09-21T11:55:06.719 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:55:06.731 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:06 smithi078 bash[20010]: cluster 2024-09-21T11:55:05.415730+0000 mgr.smithi078.aqnwdz (mgr.14203) 114 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:06.731 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:06 smithi078 bash[20010]: cluster 2024-09-21T11:55:05.415730+0000 mgr.smithi078.aqnwdz (mgr.14203) 114 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:06.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:06 smithi195 bash[25267]: cluster 2024-09-21T11:55:05.415730+0000 mgr.smithi078.aqnwdz (mgr.14203) 114 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:06.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:06 smithi195 bash[25267]: cluster 2024-09-21T11:55:05.415730+0000 mgr.smithi078.aqnwdz (mgr.14203) 114 : cluster [DBG] pgmap v63: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:07.767 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726919687,"num_remapped_pgs":0} 2024-09-21T11:55:07.975 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:07 smithi078 bash[20010]: audit 2024-09-21T11:55:06.719032+0000 mon.smithi078 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.78:0/2892996943' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:07.975 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:07 smithi078 bash[20010]: audit 2024-09-21T11:55:06.719032+0000 mon.smithi078 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.78:0/2892996943' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:07.975 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:07 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:08.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:07 smithi195 bash[25267]: audit 2024-09-21T11:55:06.719032+0000 mon.smithi078 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.78:0/2892996943' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:08.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:07 smithi195 bash[25267]: audit 2024-09-21T11:55:06.719032+0000 mon.smithi078 (mon.0) 446 : audit [DBG] from='client.? 172.21.15.78:0/2892996943' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:08.238 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:08.424 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:08.682 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:08.769 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: cluster 2024-09-21T11:55:07.416164+0000 mgr.smithi078.aqnwdz (mgr.14203) 115 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: cluster 2024-09-21T11:55:07.416164+0000 mgr.smithi078.aqnwdz (mgr.14203) 115 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: audit 2024-09-21T11:55:08.284891+0000 mon.smithi078 (mon.0) 447 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: audit 2024-09-21T11:55:08.284891+0000 mon.smithi078 (mon.0) 447 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: audit 2024-09-21T11:55:08.288691+0000 mon.smithi078 (mon.0) 448 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: audit 2024-09-21T11:55:08.288691+0000 mon.smithi078 (mon.0) 448 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: audit 2024-09-21T11:55:08.289355+0000 mon.smithi078 (mon.0) 449 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: audit 2024-09-21T11:55:08.289355+0000 mon.smithi078 (mon.0) 449 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: audit 2024-09-21T11:55:08.289990+0000 mon.smithi078 (mon.0) 450 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:09.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:08 smithi195 bash[25267]: audit 2024-09-21T11:55:08.289990+0000 mon.smithi078 (mon.0) 450 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: cluster 2024-09-21T11:55:07.416164+0000 mgr.smithi078.aqnwdz (mgr.14203) 115 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: cluster 2024-09-21T11:55:07.416164+0000 mgr.smithi078.aqnwdz (mgr.14203) 115 : cluster [DBG] pgmap v64: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: audit 2024-09-21T11:55:08.284891+0000 mon.smithi078 (mon.0) 447 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: audit 2024-09-21T11:55:08.284891+0000 mon.smithi078 (mon.0) 447 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: audit 2024-09-21T11:55:08.288691+0000 mon.smithi078 (mon.0) 448 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: audit 2024-09-21T11:55:08.288691+0000 mon.smithi078 (mon.0) 448 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: audit 2024-09-21T11:55:08.289355+0000 mon.smithi078 (mon.0) 449 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: audit 2024-09-21T11:55:08.289355+0000 mon.smithi078 (mon.0) 449 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.3"} : dispatch 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: audit 2024-09-21T11:55:08.289990+0000 mon.smithi078 (mon.0) 450 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:09.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:08 smithi078 bash[20010]: audit 2024-09-21T11:55:08.289990+0000 mon.smithi078 (mon.0) 450 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:10.080 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: cephadm 2024-09-21T11:55:08.290543+0000 mgr.smithi078.aqnwdz (mgr.14203) 116 : cephadm [INF] Deploying daemon osd.3 on smithi078 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: cephadm 2024-09-21T11:55:08.290543+0000 mgr.smithi078.aqnwdz (mgr.14203) 116 : cephadm [INF] Deploying daemon osd.3 on smithi078 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: audit 2024-09-21T11:55:08.746771+0000 mon.smithi078 (mon.0) 451 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: audit 2024-09-21T11:55:08.746771+0000 mon.smithi078 (mon.0) 451 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: audit 2024-09-21T11:55:08.752243+0000 mon.smithi078 (mon.0) 452 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: audit 2024-09-21T11:55:08.752243+0000 mon.smithi078 (mon.0) 452 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: audit 2024-09-21T11:55:08.753188+0000 mon.smithi078 (mon.0) 453 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: audit 2024-09-21T11:55:08.753188+0000 mon.smithi078 (mon.0) 453 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: audit 2024-09-21T11:55:08.753961+0000 mon.smithi078 (mon.0) 454 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: audit 2024-09-21T11:55:08.753961+0000 mon.smithi078 (mon.0) 454 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: cephadm 2024-09-21T11:55:08.754602+0000 mgr.smithi078.aqnwdz (mgr.14203) 117 : cephadm [INF] Deploying daemon osd.4 on smithi195 2024-09-21T11:55:10.081 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:09 smithi078 bash[20010]: cephadm 2024-09-21T11:55:08.754602+0000 mgr.smithi078.aqnwdz (mgr.14203) 117 : cephadm [INF] Deploying daemon osd.4 on smithi195 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: cephadm 2024-09-21T11:55:08.290543+0000 mgr.smithi078.aqnwdz (mgr.14203) 116 : cephadm [INF] Deploying daemon osd.3 on smithi078 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: cephadm 2024-09-21T11:55:08.290543+0000 mgr.smithi078.aqnwdz (mgr.14203) 116 : cephadm [INF] Deploying daemon osd.3 on smithi078 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: audit 2024-09-21T11:55:08.746771+0000 mon.smithi078 (mon.0) 451 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: audit 2024-09-21T11:55:08.746771+0000 mon.smithi078 (mon.0) 451 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: audit 2024-09-21T11:55:08.752243+0000 mon.smithi078 (mon.0) 452 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: audit 2024-09-21T11:55:08.752243+0000 mon.smithi078 (mon.0) 452 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: audit 2024-09-21T11:55:08.753188+0000 mon.smithi078 (mon.0) 453 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: audit 2024-09-21T11:55:08.753188+0000 mon.smithi078 (mon.0) 453 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.4"} : dispatch 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: audit 2024-09-21T11:55:08.753961+0000 mon.smithi078 (mon.0) 454 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: audit 2024-09-21T11:55:08.753961+0000 mon.smithi078 (mon.0) 454 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: cephadm 2024-09-21T11:55:08.754602+0000 mgr.smithi078.aqnwdz (mgr.14203) 117 : cephadm [INF] Deploying daemon osd.4 on smithi195 2024-09-21T11:55:10.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:09 smithi195 bash[25267]: cephadm 2024-09-21T11:55:08.754602+0000 mgr.smithi078.aqnwdz (mgr.14203) 117 : cephadm [INF] Deploying daemon osd.4 on smithi195 2024-09-21T11:55:10.988 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:10 smithi195 bash[25267]: cluster 2024-09-21T11:55:09.416554+0000 mgr.smithi078.aqnwdz (mgr.14203) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:10.988 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:10 smithi195 bash[25267]: cluster 2024-09-21T11:55:09.416554+0000 mgr.smithi078.aqnwdz (mgr.14203) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:11.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:10 smithi078 bash[20010]: cluster 2024-09-21T11:55:09.416554+0000 mgr.smithi078.aqnwdz (mgr.14203) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:11.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:10 smithi078 bash[20010]: cluster 2024-09-21T11:55:09.416554+0000 mgr.smithi078.aqnwdz (mgr.14203) 118 : cluster [DBG] pgmap v65: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:13.054 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:12 smithi078 bash[20010]: cluster 2024-09-21T11:55:11.416955+0000 mgr.smithi078.aqnwdz (mgr.14203) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:13.054 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:12 smithi078 bash[20010]: cluster 2024-09-21T11:55:11.416955+0000 mgr.smithi078.aqnwdz (mgr.14203) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:12 smithi195 bash[25267]: cluster 2024-09-21T11:55:11.416955+0000 mgr.smithi078.aqnwdz (mgr.14203) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:12 smithi195 bash[25267]: cluster 2024-09-21T11:55:11.416955+0000 mgr.smithi078.aqnwdz (mgr.14203) 119 : cluster [DBG] pgmap v66: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:13.316 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:13 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:13.599 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:13 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:14.419 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:14.524 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:55:14.681 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:14.681 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: cluster 2024-09-21T11:55:13.417308+0000 mgr.smithi078.aqnwdz (mgr.14203) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:14.681 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: cluster 2024-09-21T11:55:13.417308+0000 mgr.smithi078.aqnwdz (mgr.14203) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:14.681 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: audit 2024-09-21T11:55:13.642374+0000 mon.smithi078 (mon.0) 455 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:14.681 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: audit 2024-09-21T11:55:13.642374+0000 mon.smithi078 (mon.0) 455 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:14.681 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: audit 2024-09-21T11:55:13.647429+0000 mon.smithi078 (mon.0) 456 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:14.681 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: audit 2024-09-21T11:55:13.647429+0000 mon.smithi078 (mon.0) 456 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:14.681 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: audit 2024-09-21T11:55:13.648426+0000 mon.smithi078 (mon.0) 457 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-21T11:55:14.682 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: audit 2024-09-21T11:55:13.648426+0000 mon.smithi078 (mon.0) 457 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-21T11:55:14.682 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: audit 2024-09-21T11:55:13.649155+0000 mon.smithi078 (mon.0) 458 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:14.682 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: audit 2024-09-21T11:55:13.649155+0000 mon.smithi078 (mon.0) 458 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:14.682 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: cephadm 2024-09-21T11:55:13.649871+0000 mgr.smithi078.aqnwdz (mgr.14203) 121 : cephadm [INF] Deploying daemon osd.5 on smithi078 2024-09-21T11:55:14.682 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:14 smithi195 bash[25267]: cephadm 2024-09-21T11:55:13.649871+0000 mgr.smithi078.aqnwdz (mgr.14203) 121 : cephadm [INF] Deploying daemon osd.5 on smithi078 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: cluster 2024-09-21T11:55:13.417308+0000 mgr.smithi078.aqnwdz (mgr.14203) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: cluster 2024-09-21T11:55:13.417308+0000 mgr.smithi078.aqnwdz (mgr.14203) 120 : cluster [DBG] pgmap v67: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: audit 2024-09-21T11:55:13.642374+0000 mon.smithi078 (mon.0) 455 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: audit 2024-09-21T11:55:13.642374+0000 mon.smithi078 (mon.0) 455 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: audit 2024-09-21T11:55:13.647429+0000 mon.smithi078 (mon.0) 456 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: audit 2024-09-21T11:55:13.647429+0000 mon.smithi078 (mon.0) 456 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: audit 2024-09-21T11:55:13.648426+0000 mon.smithi078 (mon.0) 457 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: audit 2024-09-21T11:55:13.648426+0000 mon.smithi078 (mon.0) 457 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.5"} : dispatch 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: audit 2024-09-21T11:55:13.649155+0000 mon.smithi078 (mon.0) 458 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: audit 2024-09-21T11:55:13.649155+0000 mon.smithi078 (mon.0) 458 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:14.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: cephadm 2024-09-21T11:55:13.649871+0000 mgr.smithi078.aqnwdz (mgr.14203) 121 : cephadm [INF] Deploying daemon osd.5 on smithi078 2024-09-21T11:55:14.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:14 smithi078 bash[20010]: cephadm 2024-09-21T11:55:13.649871+0000 mgr.smithi078.aqnwdz (mgr.14203) 121 : cephadm [INF] Deploying daemon osd.5 on smithi078 2024-09-21T11:55:16.008 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: audit 2024-09-21T11:55:14.729341+0000 mon.smithi078 (mon.0) 459 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:16.008 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: audit 2024-09-21T11:55:14.729341+0000 mon.smithi078 (mon.0) 459 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:16.008 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: audit 2024-09-21T11:55:14.737029+0000 mon.smithi078 (mon.0) 460 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:16.009 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: audit 2024-09-21T11:55:14.737029+0000 mon.smithi078 (mon.0) 460 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:16.009 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: audit 2024-09-21T11:55:14.738597+0000 mon.smithi078 (mon.0) 461 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-21T11:55:16.009 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: audit 2024-09-21T11:55:14.738597+0000 mon.smithi078 (mon.0) 461 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-21T11:55:16.009 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: audit 2024-09-21T11:55:14.739983+0000 mon.smithi078 (mon.0) 462 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:16.009 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: audit 2024-09-21T11:55:14.739983+0000 mon.smithi078 (mon.0) 462 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:16.009 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: cephadm 2024-09-21T11:55:14.741204+0000 mgr.smithi078.aqnwdz (mgr.14203) 122 : cephadm [INF] Deploying daemon osd.6 on smithi195 2024-09-21T11:55:16.009 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:15 smithi078 bash[20010]: cephadm 2024-09-21T11:55:14.741204+0000 mgr.smithi078.aqnwdz (mgr.14203) 122 : cephadm [INF] Deploying daemon osd.6 on smithi195 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: audit 2024-09-21T11:55:14.729341+0000 mon.smithi078 (mon.0) 459 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: audit 2024-09-21T11:55:14.729341+0000 mon.smithi078 (mon.0) 459 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: audit 2024-09-21T11:55:14.737029+0000 mon.smithi078 (mon.0) 460 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: audit 2024-09-21T11:55:14.737029+0000 mon.smithi078 (mon.0) 460 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: audit 2024-09-21T11:55:14.738597+0000 mon.smithi078 (mon.0) 461 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: audit 2024-09-21T11:55:14.738597+0000 mon.smithi078 (mon.0) 461 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.6"} : dispatch 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: audit 2024-09-21T11:55:14.739983+0000 mon.smithi078 (mon.0) 462 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: audit 2024-09-21T11:55:14.739983+0000 mon.smithi078 (mon.0) 462 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: cephadm 2024-09-21T11:55:14.741204+0000 mgr.smithi078.aqnwdz (mgr.14203) 122 : cephadm [INF] Deploying daemon osd.6 on smithi195 2024-09-21T11:55:16.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:15 smithi195 bash[25267]: cephadm 2024-09-21T11:55:14.741204+0000 mgr.smithi078.aqnwdz (mgr.14203) 122 : cephadm [INF] Deploying daemon osd.6 on smithi195 2024-09-21T11:55:16.949 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:55:17.034 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:16 smithi195 bash[25267]: cluster 2024-09-21T11:55:15.417676+0000 mgr.smithi078.aqnwdz (mgr.14203) 123 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:17.034 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:16 smithi195 bash[25267]: cluster 2024-09-21T11:55:15.417676+0000 mgr.smithi078.aqnwdz (mgr.14203) 123 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:17.034 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:16 smithi195 bash[25267]: audit 2024-09-21T11:55:16.725939+0000 mon.smithi078 (mon.0) 463 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:17.034 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:16 smithi195 bash[25267]: audit 2024-09-21T11:55:16.725939+0000 mon.smithi078 (mon.0) 463 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:16 smithi078 bash[20010]: cluster 2024-09-21T11:55:15.417676+0000 mgr.smithi078.aqnwdz (mgr.14203) 123 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:17.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:16 smithi078 bash[20010]: cluster 2024-09-21T11:55:15.417676+0000 mgr.smithi078.aqnwdz (mgr.14203) 123 : cluster [DBG] pgmap v68: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:17.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:16 smithi078 bash[20010]: audit 2024-09-21T11:55:16.725939+0000 mon.smithi078 (mon.0) 463 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:17.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:16 smithi078 bash[20010]: audit 2024-09-21T11:55:16.725939+0000 mon.smithi078 (mon.0) 463 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:18.016 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:17 smithi195 bash[25267]: audit 2024-09-21T11:55:16.948545+0000 mon.smithi078 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.78:0/3600171454' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:18.016 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:17 smithi195 bash[25267]: audit 2024-09-21T11:55:16.948545+0000 mon.smithi078 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.78:0/3600171454' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:18.164 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:17 smithi078 bash[20010]: audit 2024-09-21T11:55:16.948545+0000 mon.smithi078 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.78:0/3600171454' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:18.164 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:17 smithi078 bash[20010]: audit 2024-09-21T11:55:16.948545+0000 mon.smithi078 (mon.0) 464 : audit [DBG] from='client.? 172.21.15.78:0/3600171454' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:18.392 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":13,"num_osds":8,"num_up_osds":0,"osd_up_since":0,"num_in_osds":8,"osd_in_since":1726919687,"num_remapped_pgs":0} 2024-09-21T11:55:19.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:18 smithi195 bash[25267]: cluster 2024-09-21T11:55:17.418067+0000 mgr.smithi078.aqnwdz (mgr.14203) 124 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:19.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:18 smithi195 bash[25267]: cluster 2024-09-21T11:55:17.418067+0000 mgr.smithi078.aqnwdz (mgr.14203) 124 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:18 smithi078 bash[20010]: cluster 2024-09-21T11:55:17.418067+0000 mgr.smithi078.aqnwdz (mgr.14203) 124 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:18 smithi078 bash[20010]: cluster 2024-09-21T11:55:17.418067+0000 mgr.smithi078.aqnwdz (mgr.14203) 124 : cluster [DBG] pgmap v69: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:19.393 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:55:20.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:19 smithi195 bash[25267]: audit 2024-09-21T11:55:19.641498+0000 mon.smithi195 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T11:55:20.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:19 smithi195 bash[25267]: audit 2024-09-21T11:55:19.641498+0000 mon.smithi195 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T11:55:20.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:19 smithi195 bash[25267]: audit 2024-09-21T11:55:19.642146+0000 mon.smithi078 (mon.0) 465 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T11:55:20.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:19 smithi195 bash[25267]: audit 2024-09-21T11:55:19.642146+0000 mon.smithi078 (mon.0) 465 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T11:55:20.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:19 smithi078 bash[20010]: audit 2024-09-21T11:55:19.641498+0000 mon.smithi195 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T11:55:20.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:19 smithi078 bash[20010]: audit 2024-09-21T11:55:19.641498+0000 mon.smithi195 (mon.1) 10 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593]' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T11:55:20.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:19 smithi078 bash[20010]: audit 2024-09-21T11:55:19.642146+0000 mon.smithi078 (mon.0) 465 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T11:55:20.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:19 smithi078 bash[20010]: audit 2024-09-21T11:55:19.642146+0000 mon.smithi078 (mon.0) 465 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]} : dispatch 2024-09-21T11:55:20.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: cluster 2024-09-21T11:55:19.418470+0000 mgr.smithi078.aqnwdz (mgr.14203) 125 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:20.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: cluster 2024-09-21T11:55:19.418470+0000 mgr.smithi078.aqnwdz (mgr.14203) 125 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:20.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.745907+0000 mon.smithi078 (mon.0) 466 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-21T11:55:20.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.745907+0000 mon.smithi078 (mon.0) 466 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-21T11:55:20.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: cluster 2024-09-21T11:55:19.751453+0000 mon.smithi078 (mon.0) 467 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-21T11:55:20.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: cluster 2024-09-21T11:55:19.751453+0000 mon.smithi078 (mon.0) 467 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-21T11:55:20.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.751645+0000 mon.smithi195 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.751645+0000 mon.smithi195 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.751913+0000 mon.smithi078 (mon.0) 468 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.751913+0000 mon.smithi078 (mon.0) 468 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752106+0000 mon.smithi078 (mon.0) 469 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752106+0000 mon.smithi078 (mon.0) 469 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752290+0000 mon.smithi078 (mon.0) 470 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752290+0000 mon.smithi078 (mon.0) 470 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752542+0000 mon.smithi078 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752542+0000 mon.smithi078 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:20.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752732+0000 mon.smithi078 (mon.0) 472 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752732+0000 mon.smithi078 (mon.0) 472 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752892+0000 mon.smithi078 (mon.0) 473 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.752892+0000 mon.smithi078 (mon.0) 473 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.753061+0000 mon.smithi078 (mon.0) 474 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.753061+0000 mon.smithi078 (mon.0) 474 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.753216+0000 mon.smithi078 (mon.0) 475 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.753216+0000 mon.smithi078 (mon.0) 475 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.753383+0000 mon.smithi078 (mon.0) 476 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:19.753383+0000 mon.smithi078 (mon.0) 476 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:20.747882+0000 mon.smithi078 (mon.0) 477 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:20.747882+0000 mon.smithi078 (mon.0) 477 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: cluster 2024-09-21T11:55:20.753870+0000 mon.smithi078 (mon.0) 478 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: cluster 2024-09-21T11:55:20.753870+0000 mon.smithi078 (mon.0) 478 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-21T11:55:20.908 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:20.754123+0000 mon.smithi078 (mon.0) 479 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:20.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:20.754123+0000 mon.smithi078 (mon.0) 479 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:20.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:20.754386+0000 mon.smithi078 (mon.0) 480 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:20.909 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:20 smithi078 bash[20010]: audit 2024-09-21T11:55:20.754386+0000 mon.smithi078 (mon.0) 480 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:21.079 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: cluster 2024-09-21T11:55:19.418470+0000 mgr.smithi078.aqnwdz (mgr.14203) 125 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: cluster 2024-09-21T11:55:19.418470+0000 mgr.smithi078.aqnwdz (mgr.14203) 125 : cluster [DBG] pgmap v70: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.745907+0000 mon.smithi078 (mon.0) 466 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.745907+0000 mon.smithi078 (mon.0) 466 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["0"]}]': finished 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: cluster 2024-09-21T11:55:19.751453+0000 mon.smithi078 (mon.0) 467 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: cluster 2024-09-21T11:55:19.751453+0000 mon.smithi078 (mon.0) 467 : cluster [DBG] osdmap e14: 8 total, 0 up, 8 in 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.751645+0000 mon.smithi195 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.751645+0000 mon.smithi195 (mon.1) 11 : audit [INF] from='osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593]' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.751913+0000 mon.smithi078 (mon.0) 468 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.751913+0000 mon.smithi078 (mon.0) 468 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752106+0000 mon.smithi078 (mon.0) 469 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:21.087 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752106+0000 mon.smithi078 (mon.0) 469 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:21.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752290+0000 mon.smithi078 (mon.0) 470 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:21.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752290+0000 mon.smithi078 (mon.0) 470 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:21.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752542+0000 mon.smithi078 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:21.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752542+0000 mon.smithi078 (mon.0) 471 : audit [INF] from='osd.0 ' entity='osd.0' cmd={"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:21.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752732+0000 mon.smithi078 (mon.0) 472 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:21.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752732+0000 mon.smithi078 (mon.0) 472 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:21.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752892+0000 mon.smithi078 (mon.0) 473 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:21.088 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.752892+0000 mon.smithi078 (mon.0) 473 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.753061+0000 mon.smithi078 (mon.0) 474 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.753061+0000 mon.smithi078 (mon.0) 474 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.753216+0000 mon.smithi078 (mon.0) 475 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.753216+0000 mon.smithi078 (mon.0) 475 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.753383+0000 mon.smithi078 (mon.0) 476 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:19.753383+0000 mon.smithi078 (mon.0) 476 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:20.747882+0000 mon.smithi078 (mon.0) 477 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:20.747882+0000 mon.smithi078 (mon.0) 477 : audit [INF] from='osd.0 ' entity='osd.0' cmd='[{"prefix": "osd crush create-or-move", "id": 0, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: cluster 2024-09-21T11:55:20.753870+0000 mon.smithi078 (mon.0) 478 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: cluster 2024-09-21T11:55:20.753870+0000 mon.smithi078 (mon.0) 478 : cluster [DBG] osdmap e15: 8 total, 0 up, 8 in 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:20.754123+0000 mon.smithi078 (mon.0) 479 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:20.754123+0000 mon.smithi078 (mon.0) 479 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:20.754386+0000 mon.smithi078 (mon.0) 480 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:21.089 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:20 smithi195 bash[25267]: audit 2024-09-21T11:55:20.754386+0000 mon.smithi078 (mon.0) 480 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:21.600 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:21.722 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:21.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:21.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.754590+0000 mon.smithi078 (mon.0) 481 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:21.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.754590+0000 mon.smithi078 (mon.0) 481 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:21.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.755438+0000 mon.smithi078 (mon.0) 482 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.755438+0000 mon.smithi078 (mon.0) 482 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.756047+0000 mon.smithi078 (mon.0) 483 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.756047+0000 mon.smithi078 (mon.0) 483 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.756532+0000 mon.smithi078 (mon.0) 484 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.756532+0000 mon.smithi078 (mon.0) 484 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.757006+0000 mon.smithi078 (mon.0) 485 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.757006+0000 mon.smithi078 (mon.0) 485 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.757487+0000 mon.smithi078 (mon.0) 486 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.757487+0000 mon.smithi078 (mon.0) 486 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.758041+0000 mon.smithi078 (mon.0) 487 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:20.758041+0000 mon.smithi078 (mon.0) 487 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:21.084808+0000 mon.smithi078 (mon.0) 488 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-21T11:55:21.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:21.084808+0000 mon.smithi078 (mon.0) 488 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-21T11:55:21.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:21.756297+0000 mon.smithi078 (mon.0) 489 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:21.907 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:21 smithi078 bash[20010]: audit 2024-09-21T11:55:21.756297+0000 mon.smithi078 (mon.0) 489 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:22.001 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.754590+0000 mon.smithi078 (mon.0) 481 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:22.001 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.754590+0000 mon.smithi078 (mon.0) 481 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:22.001 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.755438+0000 mon.smithi078 (mon.0) 482 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.755438+0000 mon.smithi078 (mon.0) 482 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.756047+0000 mon.smithi078 (mon.0) 483 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.756047+0000 mon.smithi078 (mon.0) 483 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.756532+0000 mon.smithi078 (mon.0) 484 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.756532+0000 mon.smithi078 (mon.0) 484 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.757006+0000 mon.smithi078 (mon.0) 485 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.757006+0000 mon.smithi078 (mon.0) 485 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.757487+0000 mon.smithi078 (mon.0) 486 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.757487+0000 mon.smithi078 (mon.0) 486 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.758041+0000 mon.smithi078 (mon.0) 487 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:20.758041+0000 mon.smithi078 (mon.0) 487 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:21.084808+0000 mon.smithi078 (mon.0) 488 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-21T11:55:22.002 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:21.084808+0000 mon.smithi078 (mon.0) 488 : audit [INF] from='osd.0 ' entity='osd.0' 2024-09-21T11:55:22.003 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:21.756297+0000 mon.smithi078 (mon.0) 489 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:22.003 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 bash[25267]: audit 2024-09-21T11:55:21.756297+0000 mon.smithi078 (mon.0) 489 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:22.003 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:21 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:23.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:20.609791+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:23.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:20.609791+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:23.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:20.609919+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:23.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:20.609919+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:23.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:21.418867+0000 mgr.smithi078.aqnwdz (mgr.14203) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:23.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:21.418867+0000 mgr.smithi078.aqnwdz (mgr.14203) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:21.882747+0000 mon.smithi078 (mon.0) 490 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:21.882747+0000 mon.smithi078 (mon.0) 490 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:21.888338+0000 mon.smithi078 (mon.0) 491 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:21.888338+0000 mon.smithi078 (mon.0) 491 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:21.889207+0000 mon.smithi078 (mon.0) 492 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:21.889207+0000 mon.smithi078 (mon.0) 492 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:21.889921+0000 mon.smithi078 (mon.0) 493 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:21.889921+0000 mon.smithi078 (mon.0) 493 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cephadm 2024-09-21T11:55:21.890520+0000 mgr.smithi078.aqnwdz (mgr.14203) 127 : cephadm [INF] Deploying daemon osd.7 on smithi078 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cephadm 2024-09-21T11:55:21.890520+0000 mgr.smithi078.aqnwdz (mgr.14203) 127 : cephadm [INF] Deploying daemon osd.7 on smithi078 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.051409+0000 mon.smithi078 (mon.0) 494 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.051409+0000 mon.smithi078 (mon.0) 494 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.058726+0000 mon.smithi078 (mon.0) 495 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.058726+0000 mon.smithi078 (mon.0) 495 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:22.092683+0000 mon.smithi078 (mon.0) 496 : cluster [INF] osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593] boot 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:22.092683+0000 mon.smithi078 (mon.0) 496 : cluster [INF] osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593] boot 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:22.092756+0000 mon.smithi078 (mon.0) 497 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: cluster 2024-09-21T11:55:22.092756+0000 mon.smithi078 (mon.0) 497 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.093207+0000 mon.smithi078 (mon.0) 498 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.093207+0000 mon.smithi078 (mon.0) 498 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.093664+0000 mon.smithi078 (mon.0) 499 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.093664+0000 mon.smithi078 (mon.0) 499 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.093871+0000 mon.smithi078 (mon.0) 500 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.093871+0000 mon.smithi078 (mon.0) 500 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094111+0000 mon.smithi078 (mon.0) 501 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094111+0000 mon.smithi078 (mon.0) 501 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094302+0000 mon.smithi078 (mon.0) 502 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094302+0000 mon.smithi078 (mon.0) 502 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:23.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094519+0000 mon.smithi078 (mon.0) 503 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:23.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094519+0000 mon.smithi078 (mon.0) 503 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:23.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094698+0000 mon.smithi078 (mon.0) 504 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:23.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094698+0000 mon.smithi078 (mon.0) 504 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:23.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094910+0000 mon.smithi078 (mon.0) 505 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:23.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:22 smithi195 bash[25267]: audit 2024-09-21T11:55:22.094910+0000 mon.smithi078 (mon.0) 505 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:20.609791+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:20.609791+0000 osd.0 (osd.0) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:20.609919+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:20.609919+0000 osd.0 (osd.0) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:21.418867+0000 mgr.smithi078.aqnwdz (mgr.14203) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:21.418867+0000 mgr.smithi078.aqnwdz (mgr.14203) 126 : cluster [DBG] pgmap v73: 0 pgs: ; 0 B data, 0 B used, 0 B / 0 B avail 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:21.882747+0000 mon.smithi078 (mon.0) 490 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:21.882747+0000 mon.smithi078 (mon.0) 490 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:21.888338+0000 mon.smithi078 (mon.0) 491 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:21.888338+0000 mon.smithi078 (mon.0) 491 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:21.889207+0000 mon.smithi078 (mon.0) 492 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:21.889207+0000 mon.smithi078 (mon.0) 492 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "osd.7"} : dispatch 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:21.889921+0000 mon.smithi078 (mon.0) 493 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:21.889921+0000 mon.smithi078 (mon.0) 493 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cephadm 2024-09-21T11:55:21.890520+0000 mgr.smithi078.aqnwdz (mgr.14203) 127 : cephadm [INF] Deploying daemon osd.7 on smithi078 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cephadm 2024-09-21T11:55:21.890520+0000 mgr.smithi078.aqnwdz (mgr.14203) 127 : cephadm [INF] Deploying daemon osd.7 on smithi078 2024-09-21T11:55:23.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.051409+0000 mon.smithi078 (mon.0) 494 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.051409+0000 mon.smithi078 (mon.0) 494 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.058726+0000 mon.smithi078 (mon.0) 495 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.058726+0000 mon.smithi078 (mon.0) 495 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:22.092683+0000 mon.smithi078 (mon.0) 496 : cluster [INF] osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593] boot 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:22.092683+0000 mon.smithi078 (mon.0) 496 : cluster [INF] osd.0 [v2:172.21.15.195:6800/91010593,v1:172.21.15.195:6801/91010593] boot 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:22.092756+0000 mon.smithi078 (mon.0) 497 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: cluster 2024-09-21T11:55:22.092756+0000 mon.smithi078 (mon.0) 497 : cluster [DBG] osdmap e16: 8 total, 1 up, 8 in 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.093207+0000 mon.smithi078 (mon.0) 498 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.093207+0000 mon.smithi078 (mon.0) 498 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 0} : dispatch 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.093664+0000 mon.smithi078 (mon.0) 499 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.093664+0000 mon.smithi078 (mon.0) 499 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.093871+0000 mon.smithi078 (mon.0) 500 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.093871+0000 mon.smithi078 (mon.0) 500 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:23.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094111+0000 mon.smithi078 (mon.0) 501 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094111+0000 mon.smithi078 (mon.0) 501 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094302+0000 mon.smithi078 (mon.0) 502 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094302+0000 mon.smithi078 (mon.0) 502 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094519+0000 mon.smithi078 (mon.0) 503 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094519+0000 mon.smithi078 (mon.0) 503 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094698+0000 mon.smithi078 (mon.0) 504 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094698+0000 mon.smithi078 (mon.0) 504 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094910+0000 mon.smithi078 (mon.0) 505 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:23.158 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:22 smithi078 bash[20010]: audit 2024-09-21T11:55:22.094910+0000 mon.smithi078 (mon.0) 505 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: cluster 2024-09-21T11:55:23.104689+0000 mon.smithi078 (mon.0) 506 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: cluster 2024-09-21T11:55:23.104689+0000 mon.smithi078 (mon.0) 506 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.104823+0000 mon.smithi078 (mon.0) 507 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.104823+0000 mon.smithi078 (mon.0) 507 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.105169+0000 mon.smithi078 (mon.0) 508 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.105169+0000 mon.smithi078 (mon.0) 508 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.105396+0000 mon.smithi078 (mon.0) 509 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.105396+0000 mon.smithi078 (mon.0) 509 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.105627+0000 mon.smithi078 (mon.0) 510 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:24.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.105627+0000 mon.smithi078 (mon.0) 510 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:24.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.105851+0000 mon.smithi078 (mon.0) 511 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:24.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.105851+0000 mon.smithi078 (mon.0) 511 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:24.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.106072+0000 mon.smithi078 (mon.0) 512 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:24.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.106072+0000 mon.smithi078 (mon.0) 512 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:24.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.106285+0000 mon.smithi078 (mon.0) 513 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:24.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:24 smithi195 bash[25267]: audit 2024-09-21T11:55:23.106285+0000 mon.smithi078 (mon.0) 513 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:24.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: cluster 2024-09-21T11:55:23.104689+0000 mon.smithi078 (mon.0) 506 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-21T11:55:24.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: cluster 2024-09-21T11:55:23.104689+0000 mon.smithi078 (mon.0) 506 : cluster [DBG] osdmap e17: 8 total, 1 up, 8 in 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.104823+0000 mon.smithi078 (mon.0) 507 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.104823+0000 mon.smithi078 (mon.0) 507 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.105169+0000 mon.smithi078 (mon.0) 508 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.105169+0000 mon.smithi078 (mon.0) 508 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.105396+0000 mon.smithi078 (mon.0) 509 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.105396+0000 mon.smithi078 (mon.0) 509 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.105627+0000 mon.smithi078 (mon.0) 510 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.105627+0000 mon.smithi078 (mon.0) 510 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.105851+0000 mon.smithi078 (mon.0) 511 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.105851+0000 mon.smithi078 (mon.0) 511 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.106072+0000 mon.smithi078 (mon.0) 512 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:24.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.106072+0000 mon.smithi078 (mon.0) 512 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:24.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.106285+0000 mon.smithi078 (mon.0) 513 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:24.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:24 smithi078 bash[20010]: audit 2024-09-21T11:55:23.106285+0000 mon.smithi078 (mon.0) 513 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:25.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:25 smithi195 bash[25267]: cluster 2024-09-21T11:55:23.419294+0000 mgr.smithi078.aqnwdz (mgr.14203) 128 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:25.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:25 smithi195 bash[25267]: cluster 2024-09-21T11:55:23.419294+0000 mgr.smithi078.aqnwdz (mgr.14203) 128 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:25.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:25 smithi078 bash[20010]: cluster 2024-09-21T11:55:23.419294+0000 mgr.smithi078.aqnwdz (mgr.14203) 128 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:25.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:25 smithi078 bash[20010]: cluster 2024-09-21T11:55:23.419294+0000 mgr.smithi078.aqnwdz (mgr.14203) 128 : cluster [DBG] pgmap v76: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:27.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:27 smithi078 bash[20010]: cluster 2024-09-21T11:55:25.419810+0000 mgr.smithi078.aqnwdz (mgr.14203) 129 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:27.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:27 smithi078 bash[20010]: cluster 2024-09-21T11:55:25.419810+0000 mgr.smithi078.aqnwdz (mgr.14203) 129 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:27.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:27 smithi078 bash[20010]: audit 2024-09-21T11:55:26.233674+0000 mon.smithi078 (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-21T11:55:27.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:27 smithi078 bash[20010]: audit 2024-09-21T11:55:26.233674+0000 mon.smithi078 (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-21T11:55:27.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:27 smithi078 bash[20010]: audit 2024-09-21T11:55:26.533761+0000 mon.smithi195 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T11:55:27.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:27 smithi078 bash[20010]: audit 2024-09-21T11:55:26.533761+0000 mon.smithi195 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T11:55:27.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:27 smithi078 bash[20010]: audit 2024-09-21T11:55:26.534555+0000 mon.smithi078 (mon.0) 515 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T11:55:27.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:27 smithi078 bash[20010]: audit 2024-09-21T11:55:26.534555+0000 mon.smithi078 (mon.0) 515 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T11:55:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:27 smithi195 bash[25267]: cluster 2024-09-21T11:55:25.419810+0000 mgr.smithi078.aqnwdz (mgr.14203) 129 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:27 smithi195 bash[25267]: cluster 2024-09-21T11:55:25.419810+0000 mgr.smithi078.aqnwdz (mgr.14203) 129 : cluster [DBG] pgmap v77: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:27 smithi195 bash[25267]: audit 2024-09-21T11:55:26.233674+0000 mon.smithi078 (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-21T11:55:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:27 smithi195 bash[25267]: audit 2024-09-21T11:55:26.233674+0000 mon.smithi078 (mon.0) 514 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]} : dispatch 2024-09-21T11:55:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:27 smithi195 bash[25267]: audit 2024-09-21T11:55:26.533761+0000 mon.smithi195 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T11:55:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:27 smithi195 bash[25267]: audit 2024-09-21T11:55:26.533761+0000 mon.smithi195 (mon.1) 12 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266]' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T11:55:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:27 smithi195 bash[25267]: audit 2024-09-21T11:55:26.534555+0000 mon.smithi078 (mon.0) 515 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T11:55:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:27 smithi195 bash[25267]: audit 2024-09-21T11:55:26.534555+0000 mon.smithi078 (mon.0) 515 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]} : dispatch 2024-09-21T11:55:28.525 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.116883+0000 mon.smithi078 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-21T11:55:28.525 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.116883+0000 mon.smithi078 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-21T11:55:28.525 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.116962+0000 mon.smithi078 (mon.0) 517 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-21T11:55:28.525 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.116962+0000 mon.smithi078 (mon.0) 517 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-21T11:55:28.525 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.121497+0000 mon.smithi195 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:28.525 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.121497+0000 mon.smithi195 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:28.525 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.122249+0000 mon.smithi078 (mon.0) 518 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-21T11:55:28.525 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.122249+0000 mon.smithi078 (mon.0) 518 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.122749+0000 mon.smithi078 (mon.0) 519 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.122749+0000 mon.smithi078 (mon.0) 519 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123064+0000 mon.smithi078 (mon.0) 520 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123064+0000 mon.smithi078 (mon.0) 520 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123361+0000 mon.smithi078 (mon.0) 521 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123361+0000 mon.smithi078 (mon.0) 521 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123624+0000 mon.smithi078 (mon.0) 522 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123624+0000 mon.smithi078 (mon.0) 522 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123810+0000 mon.smithi078 (mon.0) 523 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123810+0000 mon.smithi078 (mon.0) 523 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123975+0000 mon.smithi078 (mon.0) 524 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.123975+0000 mon.smithi078 (mon.0) 524 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:28.526 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.124151+0000 mon.smithi078 (mon.0) 525 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:28.527 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.124151+0000 mon.smithi078 (mon.0) 525 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:28.527 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.124322+0000 mon.smithi078 (mon.0) 526 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:28.527 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.124322+0000 mon.smithi078 (mon.0) 526 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:28.527 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.124490+0000 mon.smithi078 (mon.0) 527 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:28.527 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:27.124490+0000 mon.smithi078 (mon.0) 527 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:28.527 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:28.119263+0000 mon.smithi078 (mon.0) 528 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:28.527 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 bash[20010]: audit 2024-09-21T11:55:28.119263+0000 mon.smithi078 (mon.0) 528 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:28.574 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.116883+0000 mon.smithi078 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-21T11:55:28.574 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.116883+0000 mon.smithi078 (mon.0) 516 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["1"]}]': finished 2024-09-21T11:55:28.574 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.116962+0000 mon.smithi078 (mon.0) 517 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-21T11:55:28.574 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.116962+0000 mon.smithi078 (mon.0) 517 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["2"]}]': finished 2024-09-21T11:55:28.574 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.121497+0000 mon.smithi195 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:28.574 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.121497+0000 mon.smithi195 (mon.1) 13 : audit [INF] from='osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266]' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.122249+0000 mon.smithi078 (mon.0) 518 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.122249+0000 mon.smithi078 (mon.0) 518 : cluster [DBG] osdmap e18: 8 total, 1 up, 8 in 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.122749+0000 mon.smithi078 (mon.0) 519 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.122749+0000 mon.smithi078 (mon.0) 519 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd={"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123064+0000 mon.smithi078 (mon.0) 520 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123064+0000 mon.smithi078 (mon.0) 520 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123361+0000 mon.smithi078 (mon.0) 521 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123361+0000 mon.smithi078 (mon.0) 521 : audit [INF] from='osd.2 ' entity='osd.2' cmd={"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123624+0000 mon.smithi078 (mon.0) 522 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123624+0000 mon.smithi078 (mon.0) 522 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123810+0000 mon.smithi078 (mon.0) 523 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123810+0000 mon.smithi078 (mon.0) 523 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123975+0000 mon.smithi078 (mon.0) 524 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:28.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.123975+0000 mon.smithi078 (mon.0) 524 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:28.576 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.124151+0000 mon.smithi078 (mon.0) 525 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:28.576 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.124151+0000 mon.smithi078 (mon.0) 525 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:28.576 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.124322+0000 mon.smithi078 (mon.0) 526 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:28.576 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.124322+0000 mon.smithi078 (mon.0) 526 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:28.576 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.124490+0000 mon.smithi078 (mon.0) 527 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:28.576 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:27.124490+0000 mon.smithi078 (mon.0) 527 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:28.576 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:28.119263+0000 mon.smithi078 (mon.0) 528 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:28.576 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:28 smithi195 bash[25267]: audit 2024-09-21T11:55:28.119263+0000 mon.smithi078 (mon.0) 528 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' cmd='[{"prefix": "osd crush create-or-move", "id": 1, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:28.686 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:55:28.833 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:29.114 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:28 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:55:29.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.262224+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:29.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.262224+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:29.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.262290+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:29.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.262290+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:29.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.420118+0000 mgr.smithi078.aqnwdz (mgr.14203) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:29.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.420118+0000 mgr.smithi078.aqnwdz (mgr.14203) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:29.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.119416+0000 mon.smithi078 (mon.0) 529 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.119416+0000 mon.smithi078 (mon.0) 529 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:28.125294+0000 mon.smithi078 (mon.0) 530 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:28.125294+0000 mon.smithi078 (mon.0) 530 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.151865+0000 mon.smithi078 (mon.0) 531 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.151865+0000 mon.smithi078 (mon.0) 531 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.152174+0000 mon.smithi078 (mon.0) 532 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.152174+0000 mon.smithi078 (mon.0) 532 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.152434+0000 mon.smithi078 (mon.0) 533 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.152434+0000 mon.smithi078 (mon.0) 533 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.152636+0000 mon.smithi078 (mon.0) 534 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.152636+0000 mon.smithi078 (mon.0) 534 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:29.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.152854+0000 mon.smithi078 (mon.0) 535 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:29.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.152854+0000 mon.smithi078 (mon.0) 535 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:29.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.153070+0000 mon.smithi078 (mon.0) 536 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:29.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.153070+0000 mon.smithi078 (mon.0) 536 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:29.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.153236+0000 mon.smithi078 (mon.0) 537 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:29.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.153236+0000 mon.smithi078 (mon.0) 537 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:29.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.156113+0000 mon.smithi078 (mon.0) 538 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.156113+0000 mon.smithi078 (mon.0) 538 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.616720+0000 mon.smithi078 (mon.0) 539 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:28.616720+0000 mon.smithi078 (mon.0) 539 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.132281+0000 mon.smithi078 (mon.0) 540 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.132281+0000 mon.smithi078 (mon.0) 540 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.155724+0000 mon.smithi078 (mon.0) 541 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.155724+0000 mon.smithi078 (mon.0) 541 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.156066+0000 mon.smithi078 (mon.0) 542 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.156066+0000 mon.smithi078 (mon.0) 542 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.159983+0000 mon.smithi078 (mon.0) 543 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.159983+0000 mon.smithi078 (mon.0) 543 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:29.193086+0000 mon.smithi078 (mon.0) 544 : cluster [INF] osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266] boot 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:29.193086+0000 mon.smithi078 (mon.0) 544 : cluster [INF] osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266] boot 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:29.193127+0000 mon.smithi078 (mon.0) 545 : cluster [INF] osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971] boot 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:29.193127+0000 mon.smithi078 (mon.0) 545 : cluster [INF] osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971] boot 2024-09-21T11:55:29.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:29.193165+0000 mon.smithi078 (mon.0) 546 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: cluster 2024-09-21T11:55:29.193165+0000 mon.smithi078 (mon.0) 546 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.193309+0000 mon.smithi078 (mon.0) 547 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.193309+0000 mon.smithi078 (mon.0) 547 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.193704+0000 mon.smithi078 (mon.0) 548 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.193704+0000 mon.smithi078 (mon.0) 548 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.193988+0000 mon.smithi078 (mon.0) 549 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.193988+0000 mon.smithi078 (mon.0) 549 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.194880+0000 mon.smithi078 (mon.0) 550 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.194880+0000 mon.smithi078 (mon.0) 550 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.195108+0000 mon.smithi078 (mon.0) 551 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.195108+0000 mon.smithi078 (mon.0) 551 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:29.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.195291+0000 mon.smithi078 (mon.0) 552 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:29.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.195291+0000 mon.smithi078 (mon.0) 552 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:29.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.195476+0000 mon.smithi078 (mon.0) 553 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:29.411 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:29 smithi078 bash[20010]: audit 2024-09-21T11:55:29.195476+0000 mon.smithi078 (mon.0) 553 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.262224+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.262224+0000 osd.1 (osd.1) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.262290+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.262290+0000 osd.1 (osd.1) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.420118+0000 mgr.smithi078.aqnwdz (mgr.14203) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.420118+0000 mgr.smithi078.aqnwdz (mgr.14203) 130 : cluster [DBG] pgmap v79: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.119416+0000 mon.smithi078 (mon.0) 529 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.119416+0000 mon.smithi078 (mon.0) 529 : audit [INF] from='osd.2 ' entity='osd.2' cmd='[{"prefix": "osd crush create-or-move", "id": 2, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:28.125294+0000 mon.smithi078 (mon.0) 530 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:28.125294+0000 mon.smithi078 (mon.0) 530 : cluster [DBG] osdmap e19: 8 total, 1 up, 8 in 2024-09-21T11:55:29.564 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.151865+0000 mon.smithi078 (mon.0) 531 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.151865+0000 mon.smithi078 (mon.0) 531 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.152174+0000 mon.smithi078 (mon.0) 532 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.152174+0000 mon.smithi078 (mon.0) 532 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.152434+0000 mon.smithi078 (mon.0) 533 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.152434+0000 mon.smithi078 (mon.0) 533 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.152636+0000 mon.smithi078 (mon.0) 534 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.152636+0000 mon.smithi078 (mon.0) 534 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.152854+0000 mon.smithi078 (mon.0) 535 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.152854+0000 mon.smithi078 (mon.0) 535 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.153070+0000 mon.smithi078 (mon.0) 536 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.153070+0000 mon.smithi078 (mon.0) 536 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.153236+0000 mon.smithi078 (mon.0) 537 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.153236+0000 mon.smithi078 (mon.0) 537 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:29.565 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.156113+0000 mon.smithi078 (mon.0) 538 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.156113+0000 mon.smithi078 (mon.0) 538 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.616720+0000 mon.smithi078 (mon.0) 539 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:28.616720+0000 mon.smithi078 (mon.0) 539 : audit [INF] from='osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971]' entity='osd.1' 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.132281+0000 mon.smithi078 (mon.0) 540 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.132281+0000 mon.smithi078 (mon.0) 540 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.155724+0000 mon.smithi078 (mon.0) 541 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.155724+0000 mon.smithi078 (mon.0) 541 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.156066+0000 mon.smithi078 (mon.0) 542 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.156066+0000 mon.smithi078 (mon.0) 542 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.159983+0000 mon.smithi078 (mon.0) 543 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.159983+0000 mon.smithi078 (mon.0) 543 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:29.193086+0000 mon.smithi078 (mon.0) 544 : cluster [INF] osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266] boot 2024-09-21T11:55:29.566 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:29.193086+0000 mon.smithi078 (mon.0) 544 : cluster [INF] osd.2 [v2:172.21.15.195:6808/485008266,v1:172.21.15.195:6809/485008266] boot 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:29.193127+0000 mon.smithi078 (mon.0) 545 : cluster [INF] osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971] boot 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:29.193127+0000 mon.smithi078 (mon.0) 545 : cluster [INF] osd.1 [v2:172.21.15.78:6802/1249600971,v1:172.21.15.78:6803/1249600971] boot 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:29.193165+0000 mon.smithi078 (mon.0) 546 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: cluster 2024-09-21T11:55:29.193165+0000 mon.smithi078 (mon.0) 546 : cluster [DBG] osdmap e20: 8 total, 3 up, 8 in 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.193309+0000 mon.smithi078 (mon.0) 547 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.193309+0000 mon.smithi078 (mon.0) 547 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 1} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.193704+0000 mon.smithi078 (mon.0) 548 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.193704+0000 mon.smithi078 (mon.0) 548 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 2} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.193988+0000 mon.smithi078 (mon.0) 549 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.193988+0000 mon.smithi078 (mon.0) 549 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.194880+0000 mon.smithi078 (mon.0) 550 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.194880+0000 mon.smithi078 (mon.0) 550 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.195108+0000 mon.smithi078 (mon.0) 551 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.195108+0000 mon.smithi078 (mon.0) 551 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:29.567 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.195291+0000 mon.smithi078 (mon.0) 552 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:29.568 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.195291+0000 mon.smithi078 (mon.0) 552 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:29.568 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.195476+0000 mon.smithi078 (mon.0) 553 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:29.568 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:29 smithi195 bash[25267]: audit 2024-09-21T11:55:29.195476+0000 mon.smithi078 (mon.0) 553 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:30.608 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.548418+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.548418+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.548566+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: cluster 2024-09-21T11:55:27.548566+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: cluster 2024-09-21T11:55:29.420511+0000 mgr.smithi078.aqnwdz (mgr.14203) 131 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: cluster 2024-09-21T11:55:29.420511+0000 mgr.smithi078.aqnwdz (mgr.14203) 131 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:29.805296+0000 mon.smithi078 (mon.0) 554 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:29.805296+0000 mon.smithi078 (mon.0) 554 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.192469+0000 mon.smithi078 (mon.0) 555 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.192469+0000 mon.smithi078 (mon.0) 555 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: cluster 2024-09-21T11:55:30.196762+0000 mon.smithi078 (mon.0) 556 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-21T11:55:30.609 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: cluster 2024-09-21T11:55:30.196762+0000 mon.smithi078 (mon.0) 556 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.197080+0000 mon.smithi078 (mon.0) 557 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.197080+0000 mon.smithi078 (mon.0) 557 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.197398+0000 mon.smithi078 (mon.0) 558 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.197398+0000 mon.smithi078 (mon.0) 558 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.197710+0000 mon.smithi078 (mon.0) 559 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.197710+0000 mon.smithi078 (mon.0) 559 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.198053+0000 mon.smithi078 (mon.0) 560 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.198053+0000 mon.smithi078 (mon.0) 560 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.198237+0000 mon.smithi078 (mon.0) 561 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.198237+0000 mon.smithi078 (mon.0) 561 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.198668+0000 mon.smithi078 (mon.0) 562 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:55:30.610 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:30 smithi195 bash[25267]: audit 2024-09-21T11:55:30.198668+0000 mon.smithi078 (mon.0) 562 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:55:30.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.548418+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:30.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.548418+0000 osd.2 (osd.2) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:30.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.548566+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:30.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: cluster 2024-09-21T11:55:27.548566+0000 osd.2 (osd.2) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:30.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: cluster 2024-09-21T11:55:29.420511+0000 mgr.smithi078.aqnwdz (mgr.14203) 131 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:30.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: cluster 2024-09-21T11:55:29.420511+0000 mgr.smithi078.aqnwdz (mgr.14203) 131 : cluster [DBG] pgmap v82: 0 pgs: ; 0 B data, 31 MiB used, 89 GiB / 89 GiB avail 2024-09-21T11:55:30.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:29.805296+0000 mon.smithi078 (mon.0) 554 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:29.805296+0000 mon.smithi078 (mon.0) 554 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.192469+0000 mon.smithi078 (mon.0) 555 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.192469+0000 mon.smithi078 (mon.0) 555 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool create", "format": "json", "pool": ".mgr", "pg_num": 1, "pg_num_min": 1, "pg_num_max": 32, "yes_i_really_mean_it": true}]': finished 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: cluster 2024-09-21T11:55:30.196762+0000 mon.smithi078 (mon.0) 556 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: cluster 2024-09-21T11:55:30.196762+0000 mon.smithi078 (mon.0) 556 : cluster [DBG] osdmap e21: 8 total, 3 up, 8 in 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.197080+0000 mon.smithi078 (mon.0) 557 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.197080+0000 mon.smithi078 (mon.0) 557 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.197398+0000 mon.smithi078 (mon.0) 558 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.197398+0000 mon.smithi078 (mon.0) 558 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.197710+0000 mon.smithi078 (mon.0) 559 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.197710+0000 mon.smithi078 (mon.0) 559 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.198053+0000 mon.smithi078 (mon.0) 560 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.198053+0000 mon.smithi078 (mon.0) 560 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:30.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.198237+0000 mon.smithi078 (mon.0) 561 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:30.673 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.198237+0000 mon.smithi078 (mon.0) 561 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:30.673 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.198668+0000 mon.smithi078 (mon.0) 562 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:55:30.673 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:30 smithi078 bash[20010]: audit 2024-09-21T11:55:30.198668+0000 mon.smithi078 (mon.0) 562 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:55:31.096 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.095666+0000 mon.smithi078 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.78:0/1700187195' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.095666+0000 mon.smithi078 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.78:0/1700187195' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.194044+0000 mon.smithi078 (mon.0) 564 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.194044+0000 mon.smithi078 (mon.0) 564 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: cluster 2024-09-21T11:55:31.197168+0000 mon.smithi078 (mon.0) 565 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: cluster 2024-09-21T11:55:31.197168+0000 mon.smithi078 (mon.0) 565 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.197452+0000 mon.smithi078 (mon.0) 566 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.197452+0000 mon.smithi078 (mon.0) 566 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.197651+0000 mon.smithi078 (mon.0) 567 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.197651+0000 mon.smithi078 (mon.0) 567 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.197843+0000 mon.smithi078 (mon.0) 568 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.197843+0000 mon.smithi078 (mon.0) 568 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.198043+0000 mon.smithi078 (mon.0) 569 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.198043+0000 mon.smithi078 (mon.0) 569 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.198230+0000 mon.smithi078 (mon.0) 570 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.198230+0000 mon.smithi078 (mon.0) 570 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.213969+0000 mon.smithi078 (mon.0) 571 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-21T11:55:31.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:31 smithi195 bash[25267]: audit 2024-09-21T11:55:31.213969+0000 mon.smithi078 (mon.0) 571 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-21T11:55:31.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.095666+0000 mon.smithi078 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.78:0/1700187195' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:31.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.095666+0000 mon.smithi078 (mon.0) 563 : audit [DBG] from='client.? 172.21.15.78:0/1700187195' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:31.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.194044+0000 mon.smithi078 (mon.0) 564 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.194044+0000 mon.smithi078 (mon.0) 564 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool application enable", "format": "json", "pool": ".mgr", "app": "mgr", "yes_i_really_mean_it": true}]': finished 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: cluster 2024-09-21T11:55:31.197168+0000 mon.smithi078 (mon.0) 565 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: cluster 2024-09-21T11:55:31.197168+0000 mon.smithi078 (mon.0) 565 : cluster [DBG] osdmap e22: 8 total, 3 up, 8 in 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.197452+0000 mon.smithi078 (mon.0) 566 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.197452+0000 mon.smithi078 (mon.0) 566 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.197651+0000 mon.smithi078 (mon.0) 567 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.197651+0000 mon.smithi078 (mon.0) 567 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.197843+0000 mon.smithi078 (mon.0) 568 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.197843+0000 mon.smithi078 (mon.0) 568 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.198043+0000 mon.smithi078 (mon.0) 569 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.198043+0000 mon.smithi078 (mon.0) 569 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.198230+0000 mon.smithi078 (mon.0) 570 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.198230+0000 mon.smithi078 (mon.0) 570 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:31.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.213969+0000 mon.smithi078 (mon.0) 571 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-21T11:55:31.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:31 smithi078 bash[20010]: audit 2024-09-21T11:55:31.213969+0000 mon.smithi078 (mon.0) 571 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]} : dispatch 2024-09-21T11:55:32.300 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":21,"num_osds":8,"num_up_osds":3,"osd_up_since":1726919729,"num_in_osds":8,"osd_in_since":1726919687,"num_remapped_pgs":0} 2024-09-21T11:55:32.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.356076+0000 mon.smithi078 (mon.0) 572 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.356076+0000 mon.smithi078 (mon.0) 572 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.415868+0000 mon.smithi078 (mon.0) 573 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.415868+0000 mon.smithi078 (mon.0) 573 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: cluster 2024-09-21T11:55:31.420814+0000 mgr.smithi078.aqnwdz (mgr.14203) 132 : cluster [DBG] pgmap v85: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-21T11:55:32.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: cluster 2024-09-21T11:55:31.420814+0000 mgr.smithi078.aqnwdz (mgr.14203) 132 : cluster [DBG] pgmap v85: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-21T11:55:32.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.486245+0000 mon.smithi078 (mon.0) 574 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.486245+0000 mon.smithi078 (mon.0) 574 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.489611+0000 mon.smithi078 (mon.0) 575 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.489611+0000 mon.smithi078 (mon.0) 575 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.531122+0000 mon.smithi078 (mon.0) 576 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.531122+0000 mon.smithi078 (mon.0) 576 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.531408+0000 mon.smithi078 (mon.0) 577 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.531408+0000 mon.smithi078 (mon.0) 577 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.531653+0000 mon.smithi078 (mon.0) 578 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.531653+0000 mon.smithi078 (mon.0) 578 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.553791+0000 mon.smithi078 (mon.0) 579 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.553791+0000 mon.smithi078 (mon.0) 579 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.555650+0000 mon.smithi195 (mon.1) 14 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.555650+0000 mon.smithi195 (mon.1) 14 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T11:55:32.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.555993+0000 mon.smithi078 (mon.0) 580 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.555993+0000 mon.smithi078 (mon.0) 580 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.556117+0000 mon.smithi078 (mon.0) 581 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.556117+0000 mon.smithi078 (mon.0) 581 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.608053+0000 mon.smithi195 (mon.1) 15 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.608053+0000 mon.smithi195 (mon.1) 15 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.641224+0000 mon.smithi078 (mon.0) 582 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.641224+0000 mon.smithi078 (mon.0) 582 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.698428+0000 mon.smithi195 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.698428+0000 mon.smithi195 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.699215+0000 mon.smithi078 (mon.0) 583 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.699215+0000 mon.smithi078 (mon.0) 583 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.726926+0000 mon.smithi078 (mon.0) 584 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:31.726926+0000 mon.smithi078 (mon.0) 584 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:32.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.196928+0000 mon.smithi078 (mon.0) 585 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-21T11:55:32.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.196928+0000 mon.smithi078 (mon.0) 585 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-21T11:55:32.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.197063+0000 mon.smithi078 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-21T11:55:32.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.197063+0000 mon.smithi078 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-21T11:55:32.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.203092+0000 mon.smithi078 (mon.0) 587 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-21T11:55:32.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.203092+0000 mon.smithi078 (mon.0) 587 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-21T11:55:32.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.203452+0000 mon.smithi195 (mon.1) 17 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:32.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.203452+0000 mon.smithi195 (mon.1) 17 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.203474+0000 mon.smithi078 (mon.0) 588 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.203474+0000 mon.smithi078 (mon.0) 588 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.203829+0000 mon.smithi078 (mon.0) 589 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.203829+0000 mon.smithi078 (mon.0) 589 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.204046+0000 mon.smithi078 (mon.0) 590 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.204046+0000 mon.smithi078 (mon.0) 590 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.204283+0000 mon.smithi078 (mon.0) 591 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.204283+0000 mon.smithi078 (mon.0) 591 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.204809+0000 mon.smithi078 (mon.0) 592 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.204809+0000 mon.smithi078 (mon.0) 592 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.205266+0000 mon.smithi078 (mon.0) 593 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.205266+0000 mon.smithi078 (mon.0) 593 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.205606+0000 mon.smithi078 (mon.0) 594 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:32.624 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:32 smithi195 bash[25267]: audit 2024-09-21T11:55:32.205606+0000 mon.smithi078 (mon.0) 594 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:32.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.356076+0000 mon.smithi078 (mon.0) 572 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.356076+0000 mon.smithi078 (mon.0) 572 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.415868+0000 mon.smithi078 (mon.0) 573 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.415868+0000 mon.smithi078 (mon.0) 573 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: cluster 2024-09-21T11:55:31.420814+0000 mgr.smithi078.aqnwdz (mgr.14203) 132 : cluster [DBG] pgmap v85: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-21T11:55:32.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: cluster 2024-09-21T11:55:31.420814+0000 mgr.smithi078.aqnwdz (mgr.14203) 132 : cluster [DBG] pgmap v85: 1 pgs: 1 unknown; 0 B data, 84 MiB used, 268 GiB / 268 GiB avail 2024-09-21T11:55:32.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.486245+0000 mon.smithi078 (mon.0) 574 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.486245+0000 mon.smithi078 (mon.0) 574 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.489611+0000 mon.smithi078 (mon.0) 575 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.489611+0000 mon.smithi078 (mon.0) 575 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.531122+0000 mon.smithi078 (mon.0) 576 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.531122+0000 mon.smithi078 (mon.0) 576 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.531408+0000 mon.smithi078 (mon.0) 577 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.531408+0000 mon.smithi078 (mon.0) 577 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.531653+0000 mon.smithi078 (mon.0) 578 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.531653+0000 mon.smithi078 (mon.0) 578 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.553791+0000 mon.smithi078 (mon.0) 579 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.553791+0000 mon.smithi078 (mon.0) 579 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.555650+0000 mon.smithi195 (mon.1) 14 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T11:55:32.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.555650+0000 mon.smithi195 (mon.1) 14 : audit [INF] from='admin socket' entity='admin socket' cmd='smart' args=[json]: dispatch 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.555993+0000 mon.smithi078 (mon.0) 580 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.555993+0000 mon.smithi078 (mon.0) 580 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi078"} : dispatch 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.556117+0000 mon.smithi078 (mon.0) 581 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.556117+0000 mon.smithi078 (mon.0) 581 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "mon metadata", "id": "smithi195"} : dispatch 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.608053+0000 mon.smithi195 (mon.1) 15 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.608053+0000 mon.smithi195 (mon.1) 15 : audit [INF] from='admin socket' entity='admin socket' cmd=smart args=[json]: finished 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.641224+0000 mon.smithi078 (mon.0) 582 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.641224+0000 mon.smithi078 (mon.0) 582 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.698428+0000 mon.smithi195 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T11:55:32.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.698428+0000 mon.smithi195 (mon.1) 16 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164]' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.699215+0000 mon.smithi078 (mon.0) 583 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.699215+0000 mon.smithi078 (mon.0) 583 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]} : dispatch 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.726926+0000 mon.smithi078 (mon.0) 584 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:31.726926+0000 mon.smithi078 (mon.0) 584 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.196928+0000 mon.smithi078 (mon.0) 585 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.196928+0000 mon.smithi078 (mon.0) 585 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["3"]}]': finished 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.197063+0000 mon.smithi078 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.197063+0000 mon.smithi078 (mon.0) 586 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["4"]}]': finished 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.203092+0000 mon.smithi078 (mon.0) 587 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.203092+0000 mon.smithi078 (mon.0) 587 : cluster [DBG] osdmap e23: 8 total, 3 up, 8 in 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.203452+0000 mon.smithi195 (mon.1) 17 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.203452+0000 mon.smithi195 (mon.1) 17 : audit [INF] from='osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164]' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.203474+0000 mon.smithi078 (mon.0) 588 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:32.659 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.203474+0000 mon.smithi078 (mon.0) 588 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd={"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.203829+0000 mon.smithi078 (mon.0) 589 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.203829+0000 mon.smithi078 (mon.0) 589 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.204046+0000 mon.smithi078 (mon.0) 590 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.204046+0000 mon.smithi078 (mon.0) 590 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.204283+0000 mon.smithi078 (mon.0) 591 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.204283+0000 mon.smithi078 (mon.0) 591 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.204809+0000 mon.smithi078 (mon.0) 592 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.204809+0000 mon.smithi078 (mon.0) 592 : audit [INF] from='osd.4 ' entity='osd.4' cmd={"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.205266+0000 mon.smithi078 (mon.0) 593 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.205266+0000 mon.smithi078 (mon.0) 593 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.205606+0000 mon.smithi078 (mon.0) 594 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:32.660 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:32 smithi078 bash[20010]: audit 2024-09-21T11:55:32.205606+0000 mon.smithi078 (mon.0) 594 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:33.302 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:55:34.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.199724+0000 mon.smithi078 (mon.0) 595 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.199724+0000 mon.smithi078 (mon.0) 595 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.199941+0000 mon.smithi078 (mon.0) 596 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.199941+0000 mon.smithi078 (mon.0) 596 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: cluster 2024-09-21T11:55:33.205749+0000 mon.smithi078 (mon.0) 597 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: cluster 2024-09-21T11:55:33.205749+0000 mon.smithi078 (mon.0) 597 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.207121+0000 mon.smithi078 (mon.0) 598 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.207121+0000 mon.smithi078 (mon.0) 598 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.207625+0000 mon.smithi078 (mon.0) 599 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.207625+0000 mon.smithi078 (mon.0) 599 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.207962+0000 mon.smithi078 (mon.0) 600 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.207962+0000 mon.smithi078 (mon.0) 600 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.208263+0000 mon.smithi078 (mon.0) 601 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:34.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.208263+0000 mon.smithi078 (mon.0) 601 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.208531+0000 mon.smithi078 (mon.0) 602 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.208531+0000 mon.smithi078 (mon.0) 602 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.212806+0000 mon.smithi078 (mon.0) 603 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.212806+0000 mon.smithi078 (mon.0) 603 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.213085+0000 mon.smithi078 (mon.0) 604 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.213085+0000 mon.smithi078 (mon.0) 604 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: cluster 2024-09-21T11:55:33.421109+0000 mgr.smithi078.aqnwdz (mgr.14203) 133 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: cluster 2024-09-21T11:55:33.421109+0000 mgr.smithi078.aqnwdz (mgr.14203) 133 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: cluster 2024-09-21T11:55:33.427193+0000 mon.smithi078 (mon.0) 605 : cluster [DBG] mgrmap e20: smithi078.aqnwdz(active, since 2m), standbys: smithi195.wpaqjn 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: cluster 2024-09-21T11:55:33.427193+0000 mon.smithi078 (mon.0) 605 : cluster [DBG] mgrmap e20: smithi078.aqnwdz(active, since 2m), standbys: smithi195.wpaqjn 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.518118+0000 mon.smithi078 (mon.0) 606 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-21T11:55:34.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:34 smithi195 bash[25267]: audit 2024-09-21T11:55:33.518118+0000 mon.smithi078 (mon.0) 606 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-21T11:55:34.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.199724+0000 mon.smithi078 (mon.0) 595 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:34.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.199724+0000 mon.smithi078 (mon.0) 595 : audit [INF] from='osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949]' entity='osd.3' cmd='[{"prefix": "osd crush create-or-move", "id": 3, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:34.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.199941+0000 mon.smithi078 (mon.0) 596 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:34.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.199941+0000 mon.smithi078 (mon.0) 596 : audit [INF] from='osd.4 ' entity='osd.4' cmd='[{"prefix": "osd crush create-or-move", "id": 4, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:34.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: cluster 2024-09-21T11:55:33.205749+0000 mon.smithi078 (mon.0) 597 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: cluster 2024-09-21T11:55:33.205749+0000 mon.smithi078 (mon.0) 597 : cluster [DBG] osdmap e24: 8 total, 3 up, 8 in 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.207121+0000 mon.smithi078 (mon.0) 598 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.207121+0000 mon.smithi078 (mon.0) 598 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.207625+0000 mon.smithi078 (mon.0) 599 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.207625+0000 mon.smithi078 (mon.0) 599 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.207962+0000 mon.smithi078 (mon.0) 600 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.207962+0000 mon.smithi078 (mon.0) 600 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.208263+0000 mon.smithi078 (mon.0) 601 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.208263+0000 mon.smithi078 (mon.0) 601 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.208531+0000 mon.smithi078 (mon.0) 602 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.208531+0000 mon.smithi078 (mon.0) 602 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.212806+0000 mon.smithi078 (mon.0) 603 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:34.657 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.212806+0000 mon.smithi078 (mon.0) 603 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:34.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.213085+0000 mon.smithi078 (mon.0) 604 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:34.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.213085+0000 mon.smithi078 (mon.0) 604 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:34.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: cluster 2024-09-21T11:55:33.421109+0000 mgr.smithi078.aqnwdz (mgr.14203) 133 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-21T11:55:34.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: cluster 2024-09-21T11:55:33.421109+0000 mgr.smithi078.aqnwdz (mgr.14203) 133 : cluster [DBG] pgmap v88: 1 pgs: 1 unknown; 0 B data, 85 MiB used, 268 GiB / 268 GiB avail 2024-09-21T11:55:34.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: cluster 2024-09-21T11:55:33.427193+0000 mon.smithi078 (mon.0) 605 : cluster [DBG] mgrmap e20: smithi078.aqnwdz(active, since 2m), standbys: smithi195.wpaqjn 2024-09-21T11:55:34.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: cluster 2024-09-21T11:55:33.427193+0000 mon.smithi078 (mon.0) 605 : cluster [DBG] mgrmap e20: smithi078.aqnwdz(active, since 2m), standbys: smithi195.wpaqjn 2024-09-21T11:55:34.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.518118+0000 mon.smithi078 (mon.0) 606 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-21T11:55:34.658 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:34 smithi078 bash[20010]: audit 2024-09-21T11:55:33.518118+0000 mon.smithi078 (mon.0) 606 : audit [INF] from='osd.4 ' entity='osd.4' 2024-09-21T11:55:35.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.232538+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:35.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.232538+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:35.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.232651+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:35.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.232651+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:35.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.647613+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:35.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.647613+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:35.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.647753+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:35.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:32.647753+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:34.206766+0000 mon.smithi078 (mon.0) 607 : cluster [INF] osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949] boot 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:34.206766+0000 mon.smithi078 (mon.0) 607 : cluster [INF] osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949] boot 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:34.206817+0000 mon.smithi078 (mon.0) 608 : cluster [INF] osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164] boot 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:34.206817+0000 mon.smithi078 (mon.0) 608 : cluster [INF] osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164] boot 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:34.206998+0000 mon.smithi078 (mon.0) 609 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:34.206998+0000 mon.smithi078 (mon.0) 609 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.207818+0000 mon.smithi078 (mon.0) 610 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.207818+0000 mon.smithi078 (mon.0) 610 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.208129+0000 mon.smithi078 (mon.0) 611 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.208129+0000 mon.smithi078 (mon.0) 611 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.208417+0000 mon.smithi078 (mon.0) 612 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.208417+0000 mon.smithi078 (mon.0) 612 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.208567+0000 mon.smithi078 (mon.0) 613 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:35.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.208567+0000 mon.smithi078 (mon.0) 613 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:35.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.208794+0000 mon.smithi078 (mon.0) 614 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:35.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:34.208794+0000 mon.smithi078 (mon.0) 614 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:35.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:35.209912+0000 mon.smithi078 (mon.0) 615 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-21T11:55:35.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: cluster 2024-09-21T11:55:35.209912+0000 mon.smithi078 (mon.0) 615 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-21T11:55:35.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:35.210225+0000 mon.smithi078 (mon.0) 616 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:35.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:35 smithi078 bash[20010]: audit 2024-09-21T11:55:35.210225+0000 mon.smithi078 (mon.0) 616 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:35.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.232538+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.232538+0000 osd.3 (osd.3) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.232651+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.232651+0000 osd.3 (osd.3) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.647613+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.647613+0000 osd.4 (osd.4) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.647753+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:32.647753+0000 osd.4 (osd.4) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:34.206766+0000 mon.smithi078 (mon.0) 607 : cluster [INF] osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949] boot 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:34.206766+0000 mon.smithi078 (mon.0) 607 : cluster [INF] osd.3 [v2:172.21.15.78:6810/1098279949,v1:172.21.15.78:6811/1098279949] boot 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:34.206817+0000 mon.smithi078 (mon.0) 608 : cluster [INF] osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164] boot 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:34.206817+0000 mon.smithi078 (mon.0) 608 : cluster [INF] osd.4 [v2:172.21.15.195:6816/1940594164,v1:172.21.15.195:6817/1940594164] boot 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:34.206998+0000 mon.smithi078 (mon.0) 609 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:34.206998+0000 mon.smithi078 (mon.0) 609 : cluster [DBG] osdmap e25: 8 total, 5 up, 8 in 2024-09-21T11:55:35.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.207818+0000 mon.smithi078 (mon.0) 610 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.207818+0000 mon.smithi078 (mon.0) 610 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 3} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.208129+0000 mon.smithi078 (mon.0) 611 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.208129+0000 mon.smithi078 (mon.0) 611 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 4} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.208417+0000 mon.smithi078 (mon.0) 612 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.208417+0000 mon.smithi078 (mon.0) 612 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.208567+0000 mon.smithi078 (mon.0) 613 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.208567+0000 mon.smithi078 (mon.0) 613 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.208794+0000 mon.smithi078 (mon.0) 614 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:34.208794+0000 mon.smithi078 (mon.0) 614 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:35.209912+0000 mon.smithi078 (mon.0) 615 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: cluster 2024-09-21T11:55:35.209912+0000 mon.smithi078 (mon.0) 615 : cluster [DBG] osdmap e26: 8 total, 5 up, 8 in 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:35.210225+0000 mon.smithi078 (mon.0) 616 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:35.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:35 smithi195 bash[25267]: audit 2024-09-21T11:55:35.210225+0000 mon.smithi078 (mon.0) 616 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: audit 2024-09-21T11:55:35.211498+0000 mon.smithi078 (mon.0) 617 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:36.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: audit 2024-09-21T11:55:35.211498+0000 mon.smithi078 (mon.0) 617 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:36.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: audit 2024-09-21T11:55:35.212113+0000 mon.smithi078 (mon.0) 618 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:36.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: audit 2024-09-21T11:55:35.212113+0000 mon.smithi078 (mon.0) 618 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:36.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: cluster 2024-09-21T11:55:35.421542+0000 mgr.smithi078.aqnwdz (mgr.14203) 134 : cluster [DBG] pgmap v91: 1 pgs: 1 remapped; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:36.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: cluster 2024-09-21T11:55:35.421542+0000 mgr.smithi078.aqnwdz (mgr.14203) 134 : cluster [DBG] pgmap v91: 1 pgs: 1 remapped; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:36.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: cluster 2024-09-21T11:55:36.211935+0000 mon.smithi078 (mon.0) 619 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-21T11:55:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: cluster 2024-09-21T11:55:36.211935+0000 mon.smithi078 (mon.0) 619 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-21T11:55:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: audit 2024-09-21T11:55:36.212283+0000 mon.smithi078 (mon.0) 620 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: audit 2024-09-21T11:55:36.212283+0000 mon.smithi078 (mon.0) 620 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: audit 2024-09-21T11:55:36.212849+0000 mon.smithi078 (mon.0) 621 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:36.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:36 smithi078 bash[20010]: audit 2024-09-21T11:55:36.212849+0000 mon.smithi078 (mon.0) 621 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: audit 2024-09-21T11:55:35.211498+0000 mon.smithi078 (mon.0) 617 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: audit 2024-09-21T11:55:35.211498+0000 mon.smithi078 (mon.0) 617 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: audit 2024-09-21T11:55:35.212113+0000 mon.smithi078 (mon.0) 618 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: audit 2024-09-21T11:55:35.212113+0000 mon.smithi078 (mon.0) 618 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: cluster 2024-09-21T11:55:35.421542+0000 mgr.smithi078.aqnwdz (mgr.14203) 134 : cluster [DBG] pgmap v91: 1 pgs: 1 remapped; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: cluster 2024-09-21T11:55:35.421542+0000 mgr.smithi078.aqnwdz (mgr.14203) 134 : cluster [DBG] pgmap v91: 1 pgs: 1 remapped; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: cluster 2024-09-21T11:55:36.211935+0000 mon.smithi078 (mon.0) 619 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-21T11:55:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: cluster 2024-09-21T11:55:36.211935+0000 mon.smithi078 (mon.0) 619 : cluster [DBG] osdmap e27: 8 total, 5 up, 8 in 2024-09-21T11:55:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: audit 2024-09-21T11:55:36.212283+0000 mon.smithi078 (mon.0) 620 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: audit 2024-09-21T11:55:36.212283+0000 mon.smithi078 (mon.0) 620 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: audit 2024-09-21T11:55:36.212849+0000 mon.smithi078 (mon.0) 621 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:36.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:36 smithi195 bash[25267]: audit 2024-09-21T11:55:36.212849+0000 mon.smithi078 (mon.0) 621 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:37.553 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:37 smithi078 bash[20010]: audit 2024-09-21T11:55:36.213870+0000 mon.smithi078 (mon.0) 622 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:37.553 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:37 smithi078 bash[20010]: audit 2024-09-21T11:55:36.213870+0000 mon.smithi078 (mon.0) 622 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:37.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:37 smithi195 bash[25267]: audit 2024-09-21T11:55:36.213870+0000 mon.smithi078 (mon.0) 622 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:37.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:37 smithi195 bash[25267]: audit 2024-09-21T11:55:36.213870+0000 mon.smithi078 (mon.0) 622 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:38.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: cluster 2024-09-21T11:55:37.230717+0000 mon.smithi078 (mon.0) 623 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-21T11:55:38.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: cluster 2024-09-21T11:55:37.230717+0000 mon.smithi078 (mon.0) 623 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-21T11:55:38.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: audit 2024-09-21T11:55:37.230948+0000 mon.smithi078 (mon.0) 624 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:38.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: audit 2024-09-21T11:55:37.230948+0000 mon.smithi078 (mon.0) 624 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:38.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: audit 2024-09-21T11:55:37.231199+0000 mon.smithi078 (mon.0) 625 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:38.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: audit 2024-09-21T11:55:37.231199+0000 mon.smithi078 (mon.0) 625 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:38.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: audit 2024-09-21T11:55:37.231393+0000 mon.smithi078 (mon.0) 626 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:38.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: audit 2024-09-21T11:55:37.231393+0000 mon.smithi078 (mon.0) 626 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:38.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: cluster 2024-09-21T11:55:37.421845+0000 mgr.smithi078.aqnwdz (mgr.14203) 135 : cluster [DBG] pgmap v94: 1 pgs: 1 remapped; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:38.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:38 smithi078 bash[20010]: cluster 2024-09-21T11:55:37.421845+0000 mgr.smithi078.aqnwdz (mgr.14203) 135 : cluster [DBG] pgmap v94: 1 pgs: 1 remapped; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:38.463 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: cluster 2024-09-21T11:55:37.230717+0000 mon.smithi078 (mon.0) 623 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: cluster 2024-09-21T11:55:37.230717+0000 mon.smithi078 (mon.0) 623 : cluster [DBG] osdmap e28: 8 total, 5 up, 8 in 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: audit 2024-09-21T11:55:37.230948+0000 mon.smithi078 (mon.0) 624 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: audit 2024-09-21T11:55:37.230948+0000 mon.smithi078 (mon.0) 624 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: audit 2024-09-21T11:55:37.231199+0000 mon.smithi078 (mon.0) 625 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: audit 2024-09-21T11:55:37.231199+0000 mon.smithi078 (mon.0) 625 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: audit 2024-09-21T11:55:37.231393+0000 mon.smithi078 (mon.0) 626 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: audit 2024-09-21T11:55:37.231393+0000 mon.smithi078 (mon.0) 626 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: cluster 2024-09-21T11:55:37.421845+0000 mgr.smithi078.aqnwdz (mgr.14203) 135 : cluster [DBG] pgmap v94: 1 pgs: 1 remapped; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:38.569 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:38 smithi195 bash[25267]: cluster 2024-09-21T11:55:37.421845+0000 mgr.smithi078.aqnwdz (mgr.14203) 135 : cluster [DBG] pgmap v94: 1 pgs: 1 remapped; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:39.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: cluster 2024-09-21T11:55:38.239665+0000 mon.smithi078 (mon.0) 627 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-21T11:55:39.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: cluster 2024-09-21T11:55:38.239665+0000 mon.smithi078 (mon.0) 627 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-21T11:55:39.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.240377+0000 mon.smithi078 (mon.0) 628 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:39.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.240377+0000 mon.smithi078 (mon.0) 628 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:39.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.240943+0000 mon.smithi078 (mon.0) 629 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:39.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.240943+0000 mon.smithi078 (mon.0) 629 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:39.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.241484+0000 mon.smithi078 (mon.0) 630 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:39.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.241484+0000 mon.smithi078 (mon.0) 630 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.364884+0000 mon.smithi195 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.364884+0000 mon.smithi195 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.365549+0000 mon.smithi078 (mon.0) 631 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.365549+0000 mon.smithi078 (mon.0) 631 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.590078+0000 mon.smithi078 (mon.0) 632 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:38.590078+0000 mon.smithi078 (mon.0) 632 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:39.090916+0000 mon.smithi078 (mon.0) 633 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:39.090916+0000 mon.smithi078 (mon.0) 633 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:39.100144+0000 mon.smithi078 (mon.0) 634 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:39.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:39 smithi078 bash[20010]: audit 2024-09-21T11:55:39.100144+0000 mon.smithi078 (mon.0) 634 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:39.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: cluster 2024-09-21T11:55:38.239665+0000 mon.smithi078 (mon.0) 627 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-21T11:55:39.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: cluster 2024-09-21T11:55:38.239665+0000 mon.smithi078 (mon.0) 627 : cluster [DBG] osdmap e29: 8 total, 5 up, 8 in 2024-09-21T11:55:39.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.240377+0000 mon.smithi078 (mon.0) 628 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.240377+0000 mon.smithi078 (mon.0) 628 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.240943+0000 mon.smithi078 (mon.0) 629 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.240943+0000 mon.smithi078 (mon.0) 629 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.241484+0000 mon.smithi078 (mon.0) 630 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.241484+0000 mon.smithi078 (mon.0) 630 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.364884+0000 mon.smithi195 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.364884+0000 mon.smithi195 (mon.1) 18 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223]' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.365549+0000 mon.smithi078 (mon.0) 631 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.365549+0000 mon.smithi078 (mon.0) 631 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.590078+0000 mon.smithi078 (mon.0) 632 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:38.590078+0000 mon.smithi078 (mon.0) 632 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]} : dispatch 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:39.090916+0000 mon.smithi078 (mon.0) 633 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:39.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:39.090916+0000 mon.smithi078 (mon.0) 633 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:39.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:39.100144+0000 mon.smithi078 (mon.0) 634 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:39.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:39 smithi195 bash[25267]: audit 2024-09-21T11:55:39.100144+0000 mon.smithi078 (mon.0) 634 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.238274+0000 mon.smithi078 (mon.0) 635 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-21T11:55:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.238274+0000 mon.smithi078 (mon.0) 635 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-21T11:55:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.238411+0000 mon.smithi078 (mon.0) 636 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-21T11:55:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.238411+0000 mon.smithi078 (mon.0) 636 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-21T11:55:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.243607+0000 mon.smithi078 (mon.0) 637 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-09-21T11:55:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.243607+0000 mon.smithi078 (mon.0) 637 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-09-21T11:55:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.244076+0000 mon.smithi195 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.244076+0000 mon.smithi195 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.244443+0000 mon.smithi078 (mon.0) 638 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.244443+0000 mon.smithi078 (mon.0) 638 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.244909+0000 mon.smithi078 (mon.0) 639 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.244909+0000 mon.smithi078 (mon.0) 639 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.245300+0000 mon.smithi078 (mon.0) 640 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.245300+0000 mon.smithi078 (mon.0) 640 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.245967+0000 mon.smithi078 (mon.0) 641 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.245967+0000 mon.smithi078 (mon.0) 641 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.255285+0000 mon.smithi078 (mon.0) 642 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:39.255285+0000 mon.smithi078 (mon.0) 642 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.422341+0000 mgr.smithi078.aqnwdz (mgr.14203) 136 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.422341+0000 mgr.smithi078.aqnwdz (mgr.14203) 136 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:40.240679+0000 mon.smithi078 (mon.0) 643 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:40.240679+0000 mon.smithi078 (mon.0) 643 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:40.240805+0000 mon.smithi078 (mon.0) 644 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: audit 2024-09-21T11:55:40.240805+0000 mon.smithi078 (mon.0) 644 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: cluster 2024-09-21T11:55:40.244968+0000 mon.smithi078 (mon.0) 645 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-09-21T11:55:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:40 smithi195 bash[25267]: cluster 2024-09-21T11:55:40.244968+0000 mon.smithi078 (mon.0) 645 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-09-21T11:55:40.669 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.238274+0000 mon.smithi078 (mon.0) 635 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-21T11:55:40.670 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.238274+0000 mon.smithi078 (mon.0) 635 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["6"]}]': finished 2024-09-21T11:55:40.670 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.238411+0000 mon.smithi078 (mon.0) 636 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-21T11:55:40.670 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.238411+0000 mon.smithi078 (mon.0) 636 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["5"]}]': finished 2024-09-21T11:55:40.670 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.243607+0000 mon.smithi078 (mon.0) 637 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-09-21T11:55:40.670 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.243607+0000 mon.smithi078 (mon.0) 637 : cluster [DBG] osdmap e30: 8 total, 5 up, 8 in 2024-09-21T11:55:40.670 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.244076+0000 mon.smithi195 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:40.670 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.244076+0000 mon.smithi195 (mon.1) 19 : audit [INF] from='osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223]' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:40.670 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.244443+0000 mon.smithi078 (mon.0) 638 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.244443+0000 mon.smithi078 (mon.0) 638 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd={"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.244909+0000 mon.smithi078 (mon.0) 639 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.244909+0000 mon.smithi078 (mon.0) 639 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.245300+0000 mon.smithi078 (mon.0) 640 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.245300+0000 mon.smithi078 (mon.0) 640 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.245967+0000 mon.smithi078 (mon.0) 641 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.245967+0000 mon.smithi078 (mon.0) 641 : audit [INF] from='osd.6 ' entity='osd.6' cmd={"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.255285+0000 mon.smithi078 (mon.0) 642 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:39.255285+0000 mon.smithi078 (mon.0) 642 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.422341+0000 mgr.smithi078.aqnwdz (mgr.14203) 136 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.422341+0000 mgr.smithi078.aqnwdz (mgr.14203) 136 : cluster [DBG] pgmap v97: 1 pgs: 1 remapped; 577 KiB data, 148 MiB used, 447 GiB / 447 GiB avail 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:40.240679+0000 mon.smithi078 (mon.0) 643 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:40.240679+0000 mon.smithi078 (mon.0) 643 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' cmd='[{"prefix": "osd crush create-or-move", "id": 5, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:40.671 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:40.240805+0000 mon.smithi078 (mon.0) 644 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:40.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: audit 2024-09-21T11:55:40.240805+0000 mon.smithi078 (mon.0) 644 : audit [INF] from='osd.6 ' entity='osd.6' cmd='[{"prefix": "osd crush create-or-move", "id": 6, "weight":0.0873, "args": ["host=smithi195", "root=default"]}]': finished 2024-09-21T11:55:40.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: cluster 2024-09-21T11:55:40.244968+0000 mon.smithi078 (mon.0) 645 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-09-21T11:55:40.672 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:40 smithi078 bash[20010]: cluster 2024-09-21T11:55:40.244968+0000 mon.smithi078 (mon.0) 645 : cluster [DBG] osdmap e31: 8 total, 5 up, 8 in 2024-09-21T11:55:41.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.369053+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:41.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.369053+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:41.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.369140+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:41.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.369140+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:41.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.246343+0000 mon.smithi078 (mon.0) 646 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.246343+0000 mon.smithi078 (mon.0) 646 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.273221+0000 mon.smithi078 (mon.0) 647 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.273221+0000 mon.smithi078 (mon.0) 647 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.273790+0000 mon.smithi078 (mon.0) 648 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.273790+0000 mon.smithi078 (mon.0) 648 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.274207+0000 mon.smithi078 (mon.0) 649 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.274207+0000 mon.smithi078 (mon.0) 649 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.756770+0000 mon.smithi078 (mon.0) 650 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:40.756770+0000 mon.smithi078 (mon.0) 650 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.252807+0000 mon.smithi078 (mon.0) 651 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.252807+0000 mon.smithi078 (mon.0) 651 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.253547+0000 mon.smithi078 (mon.0) 652 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.253547+0000 mon.smithi078 (mon.0) 652 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:41.326123+0000 mon.smithi078 (mon.0) 653 : cluster [INF] osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223] boot 2024-09-21T11:55:41.558 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:41.326123+0000 mon.smithi078 (mon.0) 653 : cluster [INF] osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223] boot 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:41.326178+0000 mon.smithi078 (mon.0) 654 : cluster [INF] osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440] boot 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:41.326178+0000 mon.smithi078 (mon.0) 654 : cluster [INF] osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440] boot 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:41.326226+0000 mon.smithi078 (mon.0) 655 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: cluster 2024-09-21T11:55:41.326226+0000 mon.smithi078 (mon.0) 655 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.326735+0000 mon.smithi078 (mon.0) 656 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.326735+0000 mon.smithi078 (mon.0) 656 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.327132+0000 mon.smithi078 (mon.0) 657 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.327132+0000 mon.smithi078 (mon.0) 657 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.327466+0000 mon.smithi078 (mon.0) 658 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:41.559 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:41 smithi078 bash[20010]: audit 2024-09-21T11:55:41.327466+0000 mon.smithi078 (mon.0) 658 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:41.627 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:55:41.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.369053+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:41.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.369053+0000 osd.6 (osd.6) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:41.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.369140+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:41.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.369140+0000 osd.6 (osd.6) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:41.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.246343+0000 mon.smithi078 (mon.0) 646 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.246343+0000 mon.smithi078 (mon.0) 646 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.273221+0000 mon.smithi078 (mon.0) 647 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.273221+0000 mon.smithi078 (mon.0) 647 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.273790+0000 mon.smithi078 (mon.0) 648 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.273790+0000 mon.smithi078 (mon.0) 648 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.274207+0000 mon.smithi078 (mon.0) 649 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.274207+0000 mon.smithi078 (mon.0) 649 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.756770+0000 mon.smithi078 (mon.0) 650 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:40.756770+0000 mon.smithi078 (mon.0) 650 : audit [INF] from='osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440]' entity='osd.5' 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.252807+0000 mon.smithi078 (mon.0) 651 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.252807+0000 mon.smithi078 (mon.0) 651 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.253547+0000 mon.smithi078 (mon.0) 652 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.253547+0000 mon.smithi078 (mon.0) 652 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:41.326123+0000 mon.smithi078 (mon.0) 653 : cluster [INF] osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223] boot 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:41.326123+0000 mon.smithi078 (mon.0) 653 : cluster [INF] osd.6 [v2:172.21.15.195:6824/550730223,v1:172.21.15.195:6825/550730223] boot 2024-09-21T11:55:41.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:41.326178+0000 mon.smithi078 (mon.0) 654 : cluster [INF] osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440] boot 2024-09-21T11:55:41.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:41.326178+0000 mon.smithi078 (mon.0) 654 : cluster [INF] osd.5 [v2:172.21.15.78:6818/2184387440,v1:172.21.15.78:6819/2184387440] boot 2024-09-21T11:55:41.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:41.326226+0000 mon.smithi078 (mon.0) 655 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-21T11:55:41.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: cluster 2024-09-21T11:55:41.326226+0000 mon.smithi078 (mon.0) 655 : cluster [DBG] osdmap e32: 8 total, 7 up, 8 in 2024-09-21T11:55:41.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.326735+0000 mon.smithi078 (mon.0) 656 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.326735+0000 mon.smithi078 (mon.0) 656 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 5} : dispatch 2024-09-21T11:55:41.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.327132+0000 mon.smithi078 (mon.0) 657 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.327132+0000 mon.smithi078 (mon.0) 657 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 6} : dispatch 2024-09-21T11:55:41.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.327466+0000 mon.smithi078 (mon.0) 658 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:41.872 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:41 smithi195 bash[25267]: audit 2024-09-21T11:55:41.327466+0000 mon.smithi078 (mon.0) 658 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:42.277 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":32,"num_osds":8,"num_up_osds":7,"osd_up_since":1726919741,"num_in_osds":8,"osd_in_since":1726919687,"num_remapped_pgs":0} 2024-09-21T11:55:42.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:42 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.588159+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:42 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.588159+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:42 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.588277+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:42 smithi078 bash[20010]: cluster 2024-09-21T11:55:39.588277+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:42 smithi078 bash[20010]: cluster 2024-09-21T11:55:41.422693+0000 mgr.smithi078.aqnwdz (mgr.14203) 137 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-21T11:55:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:42 smithi078 bash[20010]: cluster 2024-09-21T11:55:41.422693+0000 mgr.smithi078.aqnwdz (mgr.14203) 137 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-21T11:55:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:42 smithi078 bash[20010]: audit 2024-09-21T11:55:41.626852+0000 mon.smithi078 (mon.0) 659 : audit [DBG] from='client.? 172.21.15.78:0/3218283786' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:42.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:42 smithi078 bash[20010]: audit 2024-09-21T11:55:41.626852+0000 mon.smithi078 (mon.0) 659 : audit [DBG] from='client.? 172.21.15.78:0/3218283786' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:42.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:42 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.588159+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:42.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:42 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.588159+0000 osd.5 (osd.5) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:42.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:42 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.588277+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:42.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:42 smithi195 bash[25267]: cluster 2024-09-21T11:55:39.588277+0000 osd.5 (osd.5) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:42.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:42 smithi195 bash[25267]: cluster 2024-09-21T11:55:41.422693+0000 mgr.smithi078.aqnwdz (mgr.14203) 137 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-21T11:55:42.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:42 smithi195 bash[25267]: cluster 2024-09-21T11:55:41.422693+0000 mgr.smithi078.aqnwdz (mgr.14203) 137 : cluster [DBG] pgmap v100: 1 pgs: 1 active+clean; 577 KiB data, 147 MiB used, 447 GiB / 447 GiB avail; 144 KiB/s, 0 objects/s recovering 2024-09-21T11:55:42.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:42 smithi195 bash[25267]: audit 2024-09-21T11:55:41.626852+0000 mon.smithi078 (mon.0) 659 : audit [DBG] from='client.? 172.21.15.78:0/3218283786' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:42.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:42 smithi195 bash[25267]: audit 2024-09-21T11:55:41.626852+0000 mon.smithi078 (mon.0) 659 : audit [DBG] from='client.? 172.21.15.78:0/3218283786' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:43.278 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd stat -f json 2024-09-21T11:55:43.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:43 smithi078 bash[20010]: cluster 2024-09-21T11:55:42.415135+0000 mon.smithi078 (mon.0) 660 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-21T11:55:43.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:43 smithi078 bash[20010]: cluster 2024-09-21T11:55:42.415135+0000 mon.smithi078 (mon.0) 660 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-21T11:55:43.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:43 smithi078 bash[20010]: audit 2024-09-21T11:55:42.415428+0000 mon.smithi078 (mon.0) 661 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:43.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:43 smithi078 bash[20010]: audit 2024-09-21T11:55:42.415428+0000 mon.smithi078 (mon.0) 661 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:43.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:43 smithi195 bash[25267]: cluster 2024-09-21T11:55:42.415135+0000 mon.smithi078 (mon.0) 660 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-21T11:55:43.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:43 smithi195 bash[25267]: cluster 2024-09-21T11:55:42.415135+0000 mon.smithi078 (mon.0) 660 : cluster [DBG] osdmap e33: 8 total, 7 up, 8 in 2024-09-21T11:55:43.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:43 smithi195 bash[25267]: audit 2024-09-21T11:55:42.415428+0000 mon.smithi078 (mon.0) 661 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:43.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:43 smithi195 bash[25267]: audit 2024-09-21T11:55:42.415428+0000 mon.smithi078 (mon.0) 661 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:44.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:44 smithi078 bash[20010]: cluster 2024-09-21T11:55:43.423045+0000 mgr.smithi078.aqnwdz (mgr.14203) 138 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 138 KiB/s, 0 objects/s recovering 2024-09-21T11:55:44.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:44 smithi078 bash[20010]: cluster 2024-09-21T11:55:43.423045+0000 mgr.smithi078.aqnwdz (mgr.14203) 138 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 138 KiB/s, 0 objects/s recovering 2024-09-21T11:55:44.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:44 smithi195 bash[25267]: cluster 2024-09-21T11:55:43.423045+0000 mgr.smithi078.aqnwdz (mgr.14203) 138 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 138 KiB/s, 0 objects/s recovering 2024-09-21T11:55:44.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:44 smithi195 bash[25267]: cluster 2024-09-21T11:55:43.423045+0000 mgr.smithi078.aqnwdz (mgr.14203) 138 : cluster [DBG] pgmap v102: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 138 KiB/s, 0 objects/s recovering 2024-09-21T11:55:46.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:46 smithi195 bash[25267]: cluster 2024-09-21T11:55:45.423656+0000 mgr.smithi078.aqnwdz (mgr.14203) 139 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-21T11:55:46.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:46 smithi195 bash[25267]: cluster 2024-09-21T11:55:45.423656+0000 mgr.smithi078.aqnwdz (mgr.14203) 139 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-21T11:55:46.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:46 smithi078 bash[20010]: cluster 2024-09-21T11:55:45.423656+0000 mgr.smithi078.aqnwdz (mgr.14203) 139 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-21T11:55:46.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:46 smithi078 bash[20010]: cluster 2024-09-21T11:55:45.423656+0000 mgr.smithi078.aqnwdz (mgr.14203) 139 : cluster [DBG] pgmap v103: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail; 96 KiB/s, 0 objects/s recovering 2024-09-21T11:55:47.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.666865+0000 mon.smithi078 (mon.0) 662 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-21T11:55:47.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.666865+0000 mon.smithi078 (mon.0) 662 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-21T11:55:47.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.692949+0000 mon.smithi078 (mon.0) 663 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:47.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.692949+0000 mon.smithi078 (mon.0) 663 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:47.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.697584+0000 mon.smithi078 (mon.0) 664 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:47.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.697584+0000 mon.smithi078 (mon.0) 664 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:47.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.726772+0000 mon.smithi078 (mon.0) 665 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:47.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.726772+0000 mon.smithi078 (mon.0) 665 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:47.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.997505+0000 mon.smithi078 (mon.0) 666 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:55:47.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:47 smithi195 bash[25267]: audit 2024-09-21T11:55:46.997505+0000 mon.smithi078 (mon.0) 666 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:55:47.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.666865+0000 mon.smithi078 (mon.0) 662 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-21T11:55:47.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.666865+0000 mon.smithi078 (mon.0) 662 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd={"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]} : dispatch 2024-09-21T11:55:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.692949+0000 mon.smithi078 (mon.0) 663 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.692949+0000 mon.smithi078 (mon.0) 663 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.697584+0000 mon.smithi078 (mon.0) 664 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.697584+0000 mon.smithi078 (mon.0) 664 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.726772+0000 mon.smithi078 (mon.0) 665 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.726772+0000 mon.smithi078 (mon.0) 665 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:55:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.997505+0000 mon.smithi078 (mon.0) 666 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:55:47.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:47 smithi078 bash[20010]: audit 2024-09-21T11:55:46.997505+0000 mon.smithi078 (mon.0) 666 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:55:48.086 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:55:48.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: cluster 2024-09-21T11:55:47.424173+0000 mgr.smithi078.aqnwdz (mgr.14203) 140 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T11:55:48.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: cluster 2024-09-21T11:55:47.424173+0000 mgr.smithi078.aqnwdz (mgr.14203) 140 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T11:55:48.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: audit 2024-09-21T11:55:47.487029+0000 mon.smithi078 (mon.0) 667 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-21T11:55:48.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: audit 2024-09-21T11:55:47.487029+0000 mon.smithi078 (mon.0) 667 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-21T11:55:48.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: cluster 2024-09-21T11:55:47.490368+0000 mon.smithi078 (mon.0) 668 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-21T11:55:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: cluster 2024-09-21T11:55:47.490368+0000 mon.smithi078 (mon.0) 668 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-21T11:55:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: audit 2024-09-21T11:55:47.490628+0000 mon.smithi078 (mon.0) 669 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: audit 2024-09-21T11:55:47.490628+0000 mon.smithi078 (mon.0) 669 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: audit 2024-09-21T11:55:47.490845+0000 mon.smithi078 (mon.0) 670 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:48.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:48 smithi195 bash[25267]: audit 2024-09-21T11:55:47.490845+0000 mon.smithi078 (mon.0) 670 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:48.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: cluster 2024-09-21T11:55:47.424173+0000 mgr.smithi078.aqnwdz (mgr.14203) 140 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T11:55:48.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: cluster 2024-09-21T11:55:47.424173+0000 mgr.smithi078.aqnwdz (mgr.14203) 140 : cluster [DBG] pgmap v104: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T11:55:48.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: audit 2024-09-21T11:55:47.487029+0000 mon.smithi078 (mon.0) 667 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-21T11:55:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: audit 2024-09-21T11:55:47.487029+0000 mon.smithi078 (mon.0) 667 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd='[{"prefix": "osd crush set-device-class", "class": "ssd", "ids": ["7"]}]': finished 2024-09-21T11:55:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: cluster 2024-09-21T11:55:47.490368+0000 mon.smithi078 (mon.0) 668 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-21T11:55:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: cluster 2024-09-21T11:55:47.490368+0000 mon.smithi078 (mon.0) 668 : cluster [DBG] osdmap e34: 8 total, 7 up, 8 in 2024-09-21T11:55:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: audit 2024-09-21T11:55:47.490628+0000 mon.smithi078 (mon.0) 669 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: audit 2024-09-21T11:55:47.490628+0000 mon.smithi078 (mon.0) 669 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd={"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi078", "root=default"]} : dispatch 2024-09-21T11:55:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: audit 2024-09-21T11:55:47.490845+0000 mon.smithi078 (mon.0) 670 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:48.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:48 smithi078 bash[20010]: audit 2024-09-21T11:55:47.490845+0000 mon.smithi078 (mon.0) 670 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.630 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:48.489890+0000 mon.smithi078 (mon.0) 671 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:48.489890+0000 mon.smithi078 (mon.0) 671 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: cluster 2024-09-21T11:55:48.497885+0000 mon.smithi078 (mon.0) 672 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: cluster 2024-09-21T11:55:48.497885+0000 mon.smithi078 (mon.0) 672 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:48.499855+0000 mon.smithi078 (mon.0) 673 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:48.499855+0000 mon.smithi078 (mon.0) 673 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:48.513153+0000 mon.smithi078 (mon.0) 674 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:48.513153+0000 mon.smithi078 (mon.0) 674 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:49.058664+0000 mon.smithi078 (mon.0) 675 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:49.058664+0000 mon.smithi078 (mon.0) 675 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' 2024-09-21T11:55:49.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: cluster 2024-09-21T11:55:49.497425+0000 mon.smithi078 (mon.0) 676 : cluster [INF] osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609] boot 2024-09-21T11:55:49.645 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: cluster 2024-09-21T11:55:49.497425+0000 mon.smithi078 (mon.0) 676 : cluster [INF] osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609] boot 2024-09-21T11:55:49.645 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: cluster 2024-09-21T11:55:49.497588+0000 mon.smithi078 (mon.0) 677 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-21T11:55:49.645 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: cluster 2024-09-21T11:55:49.497588+0000 mon.smithi078 (mon.0) 677 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-21T11:55:49.645 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:49.497815+0000 mon.smithi078 (mon.0) 678 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.645 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:49 smithi078 bash[20010]: audit 2024-09-21T11:55:49.497815+0000 mon.smithi078 (mon.0) 678 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:48.489890+0000 mon.smithi078 (mon.0) 671 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:48.489890+0000 mon.smithi078 (mon.0) 671 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' cmd='[{"prefix": "osd crush create-or-move", "id": 7, "weight":0.0873, "args": ["host=smithi078", "root=default"]}]': finished 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: cluster 2024-09-21T11:55:48.497885+0000 mon.smithi078 (mon.0) 672 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: cluster 2024-09-21T11:55:48.497885+0000 mon.smithi078 (mon.0) 672 : cluster [DBG] osdmap e35: 8 total, 7 up, 8 in 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:48.499855+0000 mon.smithi078 (mon.0) 673 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:48.499855+0000 mon.smithi078 (mon.0) 673 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:48.513153+0000 mon.smithi078 (mon.0) 674 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:48.513153+0000 mon.smithi078 (mon.0) 674 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:49.058664+0000 mon.smithi078 (mon.0) 675 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:49.058664+0000 mon.smithi078 (mon.0) 675 : audit [INF] from='osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609]' entity='osd.7' 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: cluster 2024-09-21T11:55:49.497425+0000 mon.smithi078 (mon.0) 676 : cluster [INF] osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609] boot 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: cluster 2024-09-21T11:55:49.497425+0000 mon.smithi078 (mon.0) 676 : cluster [INF] osd.7 [v2:172.21.15.78:6826/2966446609,v1:172.21.15.78:6827/2966446609] boot 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: cluster 2024-09-21T11:55:49.497588+0000 mon.smithi078 (mon.0) 677 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-21T11:55:49.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: cluster 2024-09-21T11:55:49.497588+0000 mon.smithi078 (mon.0) 677 : cluster [DBG] osdmap e36: 8 total, 8 up, 8 in 2024-09-21T11:55:49.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:49.497815+0000 mon.smithi078 (mon.0) 678 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:49.871 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:49 smithi195 bash[25267]: audit 2024-09-21T11:55:49.497815+0000 mon.smithi078 (mon.0) 678 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd metadata", "id": 7} : dispatch 2024-09-21T11:55:50.281 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":36,"num_osds":8,"num_up_osds":8,"osd_up_since":1726919749,"num_in_osds":8,"osd_in_since":1726919687,"num_remapped_pgs":1} 2024-09-21T11:55:50.281 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd dump --format=json 2024-09-21T11:55:50.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: cluster 2024-09-21T11:55:47.631643+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:50.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: cluster 2024-09-21T11:55:47.631643+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:50.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: cluster 2024-09-21T11:55:47.631740+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:50.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: cluster 2024-09-21T11:55:47.631740+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:50.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: cluster 2024-09-21T11:55:49.424543+0000 mgr.smithi078.aqnwdz (mgr.14203) 141 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T11:55:50.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: cluster 2024-09-21T11:55:49.424543+0000 mgr.smithi078.aqnwdz (mgr.14203) 141 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T11:55:50.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: audit 2024-09-21T11:55:49.629969+0000 mon.smithi078 (mon.0) 679 : audit [DBG] from='client.? 172.21.15.78:0/294670942' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:50.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: audit 2024-09-21T11:55:49.629969+0000 mon.smithi078 (mon.0) 679 : audit [DBG] from='client.? 172.21.15.78:0/294670942' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:50.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: cluster 2024-09-21T11:55:50.497195+0000 mon.smithi078 (mon.0) 680 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-21T11:55:50.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:50 smithi078 bash[20010]: cluster 2024-09-21T11:55:50.497195+0000 mon.smithi078 (mon.0) 680 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-21T11:55:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: cluster 2024-09-21T11:55:47.631643+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: cluster 2024-09-21T11:55:47.631643+0000 osd.7 (osd.7) 1 : cluster [DBG] purged_snaps scrub starts 2024-09-21T11:55:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: cluster 2024-09-21T11:55:47.631740+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: cluster 2024-09-21T11:55:47.631740+0000 osd.7 (osd.7) 2 : cluster [DBG] purged_snaps scrub ok 2024-09-21T11:55:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: cluster 2024-09-21T11:55:49.424543+0000 mgr.smithi078.aqnwdz (mgr.14203) 141 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T11:55:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: cluster 2024-09-21T11:55:49.424543+0000 mgr.smithi078.aqnwdz (mgr.14203) 141 : cluster [DBG] pgmap v107: 1 pgs: 1 active+clean; 577 KiB data, 205 MiB used, 626 GiB / 626 GiB avail 2024-09-21T11:55:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: audit 2024-09-21T11:55:49.629969+0000 mon.smithi078 (mon.0) 679 : audit [DBG] from='client.? 172.21.15.78:0/294670942' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:50.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: audit 2024-09-21T11:55:49.629969+0000 mon.smithi078 (mon.0) 679 : audit [DBG] from='client.? 172.21.15.78:0/294670942' entity='client.admin' cmd={"prefix": "osd stat", "format": "json"} : dispatch 2024-09-21T11:55:50.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: cluster 2024-09-21T11:55:50.497195+0000 mon.smithi078 (mon.0) 680 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-21T11:55:50.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:50 smithi195 bash[25267]: cluster 2024-09-21T11:55:50.497195+0000 mon.smithi078 (mon.0) 680 : cluster [DBG] osdmap e37: 8 total, 8 up, 8 in 2024-09-21T11:55:52.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:52 smithi195 bash[25267]: cluster 2024-09-21T11:55:51.424890+0000 mgr.smithi078.aqnwdz (mgr.14203) 142 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 443 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:52.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:52 smithi195 bash[25267]: cluster 2024-09-21T11:55:51.424890+0000 mgr.smithi078.aqnwdz (mgr.14203) 142 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 443 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:52.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:52 smithi195 bash[25267]: cluster 2024-09-21T11:55:51.501210+0000 mon.smithi078 (mon.0) 681 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-21T11:55:52.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:52 smithi195 bash[25267]: cluster 2024-09-21T11:55:51.501210+0000 mon.smithi078 (mon.0) 681 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-21T11:55:52.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:52 smithi195 bash[25267]: audit 2024-09-21T11:55:52.032161+0000 mon.smithi078 (mon.0) 682 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:52.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:52 smithi195 bash[25267]: audit 2024-09-21T11:55:52.032161+0000 mon.smithi078 (mon.0) 682 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:52.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:52 smithi195 bash[25267]: audit 2024-09-21T11:55:52.037530+0000 mon.smithi078 (mon.0) 683 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:52.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:52 smithi195 bash[25267]: audit 2024-09-21T11:55:52.037530+0000 mon.smithi078 (mon.0) 683 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:52.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:52 smithi078 bash[20010]: cluster 2024-09-21T11:55:51.424890+0000 mgr.smithi078.aqnwdz (mgr.14203) 142 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 443 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:52.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:52 smithi078 bash[20010]: cluster 2024-09-21T11:55:51.424890+0000 mgr.smithi078.aqnwdz (mgr.14203) 142 : cluster [DBG] pgmap v110: 1 pgs: 1 active+clean; 577 KiB data, 443 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:52.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:52 smithi078 bash[20010]: cluster 2024-09-21T11:55:51.501210+0000 mon.smithi078 (mon.0) 681 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-21T11:55:52.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:52 smithi078 bash[20010]: cluster 2024-09-21T11:55:51.501210+0000 mon.smithi078 (mon.0) 681 : cluster [DBG] osdmap e38: 8 total, 8 up, 8 in 2024-09-21T11:55:52.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:52 smithi078 bash[20010]: audit 2024-09-21T11:55:52.032161+0000 mon.smithi078 (mon.0) 682 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:52.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:52 smithi078 bash[20010]: audit 2024-09-21T11:55:52.032161+0000 mon.smithi078 (mon.0) 682 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:52.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:52 smithi078 bash[20010]: audit 2024-09-21T11:55:52.037530+0000 mon.smithi078 (mon.0) 683 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:52.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:52 smithi078 bash[20010]: audit 2024-09-21T11:55:52.037530+0000 mon.smithi078 (mon.0) 683 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:53.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:53 smithi195 bash[25267]: cluster 2024-09-21T11:55:52.517575+0000 mon.smithi078 (mon.0) 684 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-21T11:55:53.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:53 smithi195 bash[25267]: cluster 2024-09-21T11:55:52.517575+0000 mon.smithi078 (mon.0) 684 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-21T11:55:53.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:53 smithi195 bash[25267]: audit 2024-09-21T11:55:52.545965+0000 mon.smithi078 (mon.0) 685 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:53.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:53 smithi195 bash[25267]: audit 2024-09-21T11:55:52.545965+0000 mon.smithi078 (mon.0) 685 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:53.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:53 smithi195 bash[25267]: audit 2024-09-21T11:55:52.552000+0000 mon.smithi078 (mon.0) 686 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:53.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:53 smithi195 bash[25267]: audit 2024-09-21T11:55:52.552000+0000 mon.smithi078 (mon.0) 686 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:53.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:53 smithi078 bash[20010]: cluster 2024-09-21T11:55:52.517575+0000 mon.smithi078 (mon.0) 684 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-21T11:55:53.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:53 smithi078 bash[20010]: cluster 2024-09-21T11:55:52.517575+0000 mon.smithi078 (mon.0) 684 : cluster [DBG] osdmap e39: 8 total, 8 up, 8 in 2024-09-21T11:55:53.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:53 smithi078 bash[20010]: audit 2024-09-21T11:55:52.545965+0000 mon.smithi078 (mon.0) 685 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:53.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:53 smithi078 bash[20010]: audit 2024-09-21T11:55:52.545965+0000 mon.smithi078 (mon.0) 685 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:53.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:53 smithi078 bash[20010]: audit 2024-09-21T11:55:52.552000+0000 mon.smithi078 (mon.0) 686 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:53.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:53 smithi078 bash[20010]: audit 2024-09-21T11:55:52.552000+0000 mon.smithi078 (mon.0) 686 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:55:54.223 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:55:54.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:54 smithi078 bash[20010]: cluster 2024-09-21T11:55:53.425441+0000 mgr.smithi078.aqnwdz (mgr.14203) 143 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 443 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:54.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:54 smithi078 bash[20010]: cluster 2024-09-21T11:55:53.425441+0000 mgr.smithi078.aqnwdz (mgr.14203) 143 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 443 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:54.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:54 smithi078 bash[20010]: cluster 2024-09-21T11:55:53.525082+0000 mon.smithi078 (mon.0) 687 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-21T11:55:54.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:54 smithi078 bash[20010]: cluster 2024-09-21T11:55:53.525082+0000 mon.smithi078 (mon.0) 687 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-21T11:55:54.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:54 smithi195 bash[25267]: cluster 2024-09-21T11:55:53.425441+0000 mgr.smithi078.aqnwdz (mgr.14203) 143 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 443 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:54.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:54 smithi195 bash[25267]: cluster 2024-09-21T11:55:53.425441+0000 mgr.smithi078.aqnwdz (mgr.14203) 143 : cluster [DBG] pgmap v113: 1 pgs: 1 active+clean; 577 KiB data, 443 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:54.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:54 smithi195 bash[25267]: cluster 2024-09-21T11:55:53.525082+0000 mon.smithi078 (mon.0) 687 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-21T11:55:54.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:54 smithi195 bash[25267]: cluster 2024-09-21T11:55:53.525082+0000 mon.smithi078 (mon.0) 687 : cluster [DBG] osdmap e40: 8 total, 8 up, 8 in 2024-09-21T11:55:55.757 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:55:55.757 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":40,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","created":"2024-09-21T11:50:16.544934+0000","modified":"2024-09-21T11:55:53.515389+0000","last_up_change":"2024-09-21T11:55:49.489826+0000","last_in_change":"2024-09-21T11:54:47.580070+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":12,"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":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-21T11:55:29.809564+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"23","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"101e5d22-0753-49b4-b862-2f23bd9e5bdb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6800","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6801","nonce":91010593}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6802","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6803","nonce":91010593}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6806","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6807","nonce":91010593}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6804","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6805","nonce":91010593}]},"public_addr":"172.21.15.195:6801/91010593","cluster_addr":"172.21.15.195:6803/91010593","heartbeat_back_addr":"172.21.15.195:6807/91010593","heartbeat_front_addr":"172.21.15.195:6805/91010593","state":["exists","up"]},{"osd":1,"uuid":"26924429-e962-4cbc-8fd8-57e5c6bbfe7b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6802","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6803","nonce":1249600971}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6804","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6805","nonce":1249600971}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6808","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6809","nonce":1249600971}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6806","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6807","nonce":1249600971}]},"public_addr":"172.21.15.78:6803/1249600971","cluster_addr":"172.21.15.78:6805/1249600971","heartbeat_back_addr":"172.21.15.78:6809/1249600971","heartbeat_front_addr":"172.21.15.78:6807/1249600971","state":["exists","up"]},{"osd":2,"uuid":"76b3e31f-2dba-453f-834f-b949fd6fd6cd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6808","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6809","nonce":485008266}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6810","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6811","nonce":485008266}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6814","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6815","nonce":485008266}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6812","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6813","nonce":485008266}]},"public_addr":"172.21.15.195:6809/485008266","cluster_addr":"172.21.15.195:6811/485008266","heartbeat_back_addr":"172.21.15.195:6815/485008266","heartbeat_front_addr":"172.21.15.195:6813/485008266","state":["exists","up"]},{"osd":3,"uuid":"7aaa842d-af2a-4229-96b8-37aa67cc1e10","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.78:6810","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6811","nonce":1098279949}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6812","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6813","nonce":1098279949}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6816","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6817","nonce":1098279949}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6814","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6815","nonce":1098279949}]},"public_addr":"172.21.15.78:6811/1098279949","cluster_addr":"172.21.15.78:6813/1098279949","heartbeat_back_addr":"172.21.15.78:6817/1098279949","heartbeat_front_addr":"172.21.15.78:6815/1098279949","state":["exists","up"]},{"osd":4,"uuid":"3329677b-2066-420a-abfc-66ed1b02c330","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.195:6816","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6817","nonce":1940594164}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6818","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6819","nonce":1940594164}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6822","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6823","nonce":1940594164}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6820","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6821","nonce":1940594164}]},"public_addr":"172.21.15.195:6817/1940594164","cluster_addr":"172.21.15.195:6819/1940594164","heartbeat_back_addr":"172.21.15.195:6823/1940594164","heartbeat_front_addr":"172.21.15.195:6821/1940594164","state":["exists","up"]},{"osd":5,"uuid":"701423e0-1207-4510-823c-1fb4fde3147d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6818","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6819","nonce":2184387440}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6820","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6821","nonce":2184387440}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6824","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6825","nonce":2184387440}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6822","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6823","nonce":2184387440}]},"public_addr":"172.21.15.78:6819/2184387440","cluster_addr":"172.21.15.78:6821/2184387440","heartbeat_back_addr":"172.21.15.78:6825/2184387440","heartbeat_front_addr":"172.21.15.78:6823/2184387440","state":["exists","up"]},{"osd":6,"uuid":"bbab3e6a-a252-468d-be07-8dd6b7267540","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6824","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6825","nonce":550730223}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6826","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6827","nonce":550730223}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6830","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6831","nonce":550730223}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6828","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6829","nonce":550730223}]},"public_addr":"172.21.15.195:6825/550730223","cluster_addr":"172.21.15.195:6827/550730223","heartbeat_back_addr":"172.21.15.195:6831/550730223","heartbeat_front_addr":"172.21.15.195:6829/550730223","state":["exists","up"]},{"osd":7,"uuid":"86babd56-c65b-429f-aec4-e92f3dab799d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6826","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6827","nonce":2966446609}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6828","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6829","nonce":2966446609}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6832","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6833","nonce":2966446609}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6830","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6831","nonce":2966446609}]},"public_addr":"172.21.15.78:6827/2966446609","cluster_addr":"172.21.15.78:6829/2966446609","heartbeat_back_addr":"172.21.15.78:6833/2966446609","heartbeat_front_addr":"172.21.15.78:6831/2966446609","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:20.609926+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:27.262293+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:27.548572+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:32.232656+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:32.647759+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:39.588282+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:39.369144+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:47.631744+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.78:0/2188983261":"2024-09-22T11:53:01.381095+0000","172.21.15.78:6800/901833353":"2024-09-22T11:50:44.457655+0000","172.21.15.78:0/3363769339":"2024-09-22T11:51:33.573640+0000","172.21.15.78:0/24794965":"2024-09-22T11:50:44.457655+0000","172.21.15.78:0/1105876892":"2024-09-22T11:50:44.457655+0000","172.21.15.78:0/2119183289":"2024-09-22T11:50:44.457655+0000","172.21.15.78:6801/901833353":"2024-09-22T11:50:44.457655+0000","172.21.15.78:6800/2931378487":"2024-09-22T11:51:33.573640+0000","172.21.15.78:6801/4148543437":"2024-09-22T11:53:01.381095+0000","172.21.15.78:0/390102275":"2024-09-22T11:53:01.381095+0000","172.21.15.78:0/2467594425":"2024-09-22T11:51:33.573640+0000","172.21.15.78:6801/2931378487":"2024-09-22T11:51:33.573640+0000","172.21.15.78:0/3890204594":"2024-09-22T11:53:01.381095+0000","172.21.15.78:0/2722493798":"2024-09-22T11:51:33.573640+0000","172.21.15.78:6800/4148543437":"2024-09-22T11:53:01.381095+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-21T11:55:56.438 INFO:tasks.cephadm.ceph_manager.ceph:[{'pool': 1, 'pool_name': '.mgr', 'create_time': '2024-09-21T11:55:29.809564+0000', 'flags': 1, 'flags_names': 'hashpspool', 'type': 1, 'size': 3, 'min_size': 2, 'crush_rule': 0, 'peering_crush_bucket_count': 0, 'peering_crush_bucket_target': 0, 'peering_crush_bucket_barrier': 0, 'peering_crush_bucket_mandatory_member': 2147483647, 'is_stretch_pool': False, 'object_hash': 2, 'pg_autoscale_mode': 'off', 'pg_num': 1, 'pg_placement_num': 1, 'pg_placement_num_target': 1, 'pg_num_target': 1, 'pg_num_pending': 1, 'last_pg_merge_meta': {'source_pgid': '0.0', 'ready_epoch': 0, 'last_epoch_started': 0, 'last_epoch_clean': 0, 'source_version': "0'0", 'target_version': "0'0"}, 'last_change': '23', 'last_force_op_resend': '0', 'last_force_op_resend_prenautilus': '0', 'last_force_op_resend_preluminous': '0', 'auid': 0, 'snap_mode': 'selfmanaged', 'snap_seq': 0, 'snap_epoch': 0, 'pool_snaps': [], 'removed_snaps': '[]', 'quota_max_bytes': 0, 'quota_max_objects': 0, 'tiers': [], 'tier_of': -1, 'read_tier': -1, 'write_tier': -1, 'cache_mode': 'none', 'target_max_bytes': 0, 'target_max_objects': 0, 'cache_target_dirty_ratio_micro': 400000, 'cache_target_dirty_high_ratio_micro': 600000, 'cache_target_full_ratio_micro': 800000, 'cache_min_flush_age': 0, 'cache_min_evict_age': 0, 'erasure_code_profile': '', 'hit_set_params': {'type': 'none'}, 'hit_set_period': 0, 'hit_set_count': 0, 'use_gmt_hitset': True, 'min_read_recency_for_promote': 0, 'min_write_recency_for_promote': 0, 'hit_set_grade_decay_rate': 0, 'hit_set_search_last_n': 0, 'grade_table': [], 'stripe_width': 0, 'expected_num_objects': 0, 'fast_read': False, 'options': {'pg_num_max': 32, 'pg_num_min': 1}, 'application_metadata': {'mgr': {}}, 'read_balance': {'score_type': 'Fair distribution', 'score_acting': 7.889999866485596, 'score_stable': 7.889999866485596, 'optimal_score': 0.3799999952316284, 'raw_score_acting': 3, 'raw_score_stable': 3, 'primary_affinity_weighted': 1, 'average_primary_affinity': 1, 'average_primary_affinity_weighted': 1}}] 2024-09-21T11:55:56.438 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd pool get .mgr pg_num 2024-09-21T11:55:56.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:56 smithi195 bash[25267]: cluster 2024-09-21T11:55:55.426041+0000 mgr.smithi078.aqnwdz (mgr.14203) 144 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:56.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:56 smithi195 bash[25267]: cluster 2024-09-21T11:55:55.426041+0000 mgr.smithi078.aqnwdz (mgr.14203) 144 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:56.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:56 smithi195 bash[25267]: audit 2024-09-21T11:55:55.755973+0000 mon.smithi078 (mon.0) 688 : audit [DBG] from='client.? 172.21.15.78:0/2499277110' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:55:56.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:56 smithi195 bash[25267]: audit 2024-09-21T11:55:55.755973+0000 mon.smithi078 (mon.0) 688 : audit [DBG] from='client.? 172.21.15.78:0/2499277110' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:55:56.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:56 smithi078 bash[20010]: cluster 2024-09-21T11:55:55.426041+0000 mgr.smithi078.aqnwdz (mgr.14203) 144 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:56.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:56 smithi078 bash[20010]: cluster 2024-09-21T11:55:55.426041+0000 mgr.smithi078.aqnwdz (mgr.14203) 144 : cluster [DBG] pgmap v115: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:56.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:56 smithi078 bash[20010]: audit 2024-09-21T11:55:55.755973+0000 mon.smithi078 (mon.0) 688 : audit [DBG] from='client.? 172.21.15.78:0/2499277110' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:55:56.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:56 smithi078 bash[20010]: audit 2024-09-21T11:55:55.755973+0000 mon.smithi078 (mon.0) 688 : audit [DBG] from='client.? 172.21.15.78:0/2499277110' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:55:58.575 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:58 smithi195 bash[25267]: cluster 2024-09-21T11:55:57.426637+0000 mgr.smithi078.aqnwdz (mgr.14203) 145 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:58.576 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:55:58 smithi195 bash[25267]: cluster 2024-09-21T11:55:57.426637+0000 mgr.smithi078.aqnwdz (mgr.14203) 145 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:58.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:58 smithi078 bash[20010]: cluster 2024-09-21T11:55:57.426637+0000 mgr.smithi078.aqnwdz (mgr.14203) 145 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:55:58.626 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:55:58 smithi078 bash[20010]: cluster 2024-09-21T11:55:57.426637+0000 mgr.smithi078.aqnwdz (mgr.14203) 145 : cluster [DBG] pgmap v116: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:00.379 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:00.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:00 smithi195 bash[25267]: cluster 2024-09-21T11:55:59.427308+0000 mgr.smithi078.aqnwdz (mgr.14203) 146 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:00.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:00 smithi195 bash[25267]: cluster 2024-09-21T11:55:59.427308+0000 mgr.smithi078.aqnwdz (mgr.14203) 146 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:00.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:00 smithi078 bash[20010]: cluster 2024-09-21T11:55:59.427308+0000 mgr.smithi078.aqnwdz (mgr.14203) 146 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:00.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:00 smithi078 bash[20010]: cluster 2024-09-21T11:55:59.427308+0000 mgr.smithi078.aqnwdz (mgr.14203) 146 : cluster [DBG] pgmap v117: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:01.932 INFO:teuthology.orchestra.run.smithi078.stdout:pg_num: 1 2024-09-21T11:56:02.666 INFO:tasks.cephadm:Setting up client nodes... 2024-09-21T11:56:02.666 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph auth get-or-create client.0 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-21T11:56:02.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:02 smithi195 bash[25267]: cluster 2024-09-21T11:56:01.427815+0000 mgr.smithi078.aqnwdz (mgr.14203) 147 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:02.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:02 smithi195 bash[25267]: cluster 2024-09-21T11:56:01.427815+0000 mgr.smithi078.aqnwdz (mgr.14203) 147 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:02.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:02 smithi195 bash[25267]: audit 2024-09-21T11:56:01.727433+0000 mon.smithi078 (mon.0) 689 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:02.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:02 smithi195 bash[25267]: audit 2024-09-21T11:56:01.727433+0000 mon.smithi078 (mon.0) 689 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:02.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:02 smithi195 bash[25267]: audit 2024-09-21T11:56:01.932169+0000 mon.smithi078 (mon.0) 690 : audit [DBG] from='client.? 172.21.15.78:0/2120699888' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-21T11:56:02.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:02 smithi195 bash[25267]: audit 2024-09-21T11:56:01.932169+0000 mon.smithi078 (mon.0) 690 : audit [DBG] from='client.? 172.21.15.78:0/2120699888' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-21T11:56:02.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:02 smithi078 bash[20010]: cluster 2024-09-21T11:56:01.427815+0000 mgr.smithi078.aqnwdz (mgr.14203) 147 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:02.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:02 smithi078 bash[20010]: cluster 2024-09-21T11:56:01.427815+0000 mgr.smithi078.aqnwdz (mgr.14203) 147 : cluster [DBG] pgmap v118: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:02.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:02 smithi078 bash[20010]: audit 2024-09-21T11:56:01.727433+0000 mon.smithi078 (mon.0) 689 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:02 smithi078 bash[20010]: audit 2024-09-21T11:56:01.727433+0000 mon.smithi078 (mon.0) 689 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:02 smithi078 bash[20010]: audit 2024-09-21T11:56:01.932169+0000 mon.smithi078 (mon.0) 690 : audit [DBG] from='client.? 172.21.15.78:0/2120699888' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-21T11:56:02.906 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:02 smithi078 bash[20010]: audit 2024-09-21T11:56:01.932169+0000 mon.smithi078 (mon.0) 690 : audit [DBG] from='client.? 172.21.15.78:0/2120699888' entity='client.admin' cmd={"prefix": "osd pool get", "pool": ".mgr", "var": "pg_num"} : dispatch 2024-09-21T11:56:04.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: cephadm 2024-09-21T11:56:03.094854+0000 mgr.smithi078.aqnwdz (mgr.14203) 148 : cephadm [INF] Detected new or changed devices on smithi078 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: cephadm 2024-09-21T11:56:03.094854+0000 mgr.smithi078.aqnwdz (mgr.14203) 148 : cephadm [INF] Detected new or changed devices on smithi078 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.105255+0000 mon.smithi078 (mon.0) 691 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.105255+0000 mon.smithi078 (mon.0) 691 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.113473+0000 mon.smithi078 (mon.0) 692 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.113473+0000 mon.smithi078 (mon.0) 692 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.117041+0000 mon.smithi078 (mon.0) 693 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.117041+0000 mon.smithi078 (mon.0) 693 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.118954+0000 mon.smithi078 (mon.0) 694 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.118954+0000 mon.smithi078 (mon.0) 694 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.120400+0000 mon.smithi078 (mon.0) 695 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.120400+0000 mon.smithi078 (mon.0) 695 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.121789+0000 mon.smithi078 (mon.0) 696 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.121789+0000 mon.smithi078 (mon.0) 696 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: cephadm 2024-09-21T11:56:03.122848+0000 mgr.smithi078.aqnwdz (mgr.14203) 149 : cephadm [INF] Adjusting osd_memory_target on smithi078 to 3004M 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: cephadm 2024-09-21T11:56:03.122848+0000 mgr.smithi078.aqnwdz (mgr.14203) 149 : cephadm [INF] Adjusting osd_memory_target on smithi078 to 3004M 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.127610+0000 mon.smithi078 (mon.0) 697 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.127610+0000 mon.smithi078 (mon.0) 697 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.937352+0000 mon.smithi078 (mon.0) 698 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.937352+0000 mon.smithi078 (mon.0) 698 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.947815+0000 mon.smithi078 (mon.0) 699 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.947815+0000 mon.smithi078 (mon.0) 699 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.951369+0000 mon.smithi078 (mon.0) 700 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.951369+0000 mon.smithi078 (mon.0) 700 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.953310+0000 mon.smithi078 (mon.0) 701 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.953310+0000 mon.smithi078 (mon.0) 701 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.955115+0000 mon.smithi078 (mon.0) 702 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.955115+0000 mon.smithi078 (mon.0) 702 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.957023+0000 mon.smithi078 (mon.0) 703 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.957023+0000 mon.smithi078 (mon.0) 703 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.965478+0000 mon.smithi078 (mon.0) 704 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.965478+0000 mon.smithi078 (mon.0) 704 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.969666+0000 mon.smithi078 (mon.0) 705 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.969666+0000 mon.smithi078 (mon.0) 705 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.372 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.971082+0000 mon.smithi078 (mon.0) 706 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:56:04.373 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.971082+0000 mon.smithi078 (mon.0) 706 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:56:04.373 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.980838+0000 mon.smithi078 (mon.0) 707 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.373 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.980838+0000 mon.smithi078 (mon.0) 707 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.373 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.986638+0000 mon.smithi078 (mon.0) 708 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:56:04.373 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.986638+0000 mon.smithi078 (mon.0) 708 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:56:04.373 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.995936+0000 mon.smithi078 (mon.0) 709 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:56:04.373 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.995936+0000 mon.smithi078 (mon.0) 709 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:56:04.373 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.997858+0000 mon.smithi078 (mon.0) 710 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.373 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:03.997858+0000 mon.smithi078 (mon.0) 710 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.374 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:04.005394+0000 mon.smithi078 (mon.0) 711 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:56:04.374 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:04.005394+0000 mon.smithi078 (mon.0) 711 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:56:04.374 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:04.007129+0000 mon.smithi078 (mon.0) 712 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.374 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:04 smithi195 bash[25267]: audit 2024-09-21T11:56:04.007129+0000 mon.smithi078 (mon.0) 712 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: cephadm 2024-09-21T11:56:03.094854+0000 mgr.smithi078.aqnwdz (mgr.14203) 148 : cephadm [INF] Detected new or changed devices on smithi078 2024-09-21T11:56:04.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: cephadm 2024-09-21T11:56:03.094854+0000 mgr.smithi078.aqnwdz (mgr.14203) 148 : cephadm [INF] Detected new or changed devices on smithi078 2024-09-21T11:56:04.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.105255+0000 mon.smithi078 (mon.0) 691 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.105255+0000 mon.smithi078 (mon.0) 691 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.113473+0000 mon.smithi078 (mon.0) 692 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.113473+0000 mon.smithi078 (mon.0) 692 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.117041+0000 mon.smithi078 (mon.0) 693 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.117041+0000 mon.smithi078 (mon.0) 693 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.1", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.118954+0000 mon.smithi078 (mon.0) 694 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.118954+0000 mon.smithi078 (mon.0) 694 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.3", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.120400+0000 mon.smithi078 (mon.0) 695 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.120400+0000 mon.smithi078 (mon.0) 695 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.5", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.121789+0000 mon.smithi078 (mon.0) 696 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.121789+0000 mon.smithi078 (mon.0) 696 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.7", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: cephadm 2024-09-21T11:56:03.122848+0000 mgr.smithi078.aqnwdz (mgr.14203) 149 : cephadm [INF] Adjusting osd_memory_target on smithi078 to 3004M 2024-09-21T11:56:04.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: cephadm 2024-09-21T11:56:03.122848+0000 mgr.smithi078.aqnwdz (mgr.14203) 149 : cephadm [INF] Adjusting osd_memory_target on smithi078 to 3004M 2024-09-21T11:56:04.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.127610+0000 mon.smithi078 (mon.0) 697 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.127610+0000 mon.smithi078 (mon.0) 697 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.937352+0000 mon.smithi078 (mon.0) 698 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.937352+0000 mon.smithi078 (mon.0) 698 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.947815+0000 mon.smithi078 (mon.0) 699 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.947815+0000 mon.smithi078 (mon.0) 699 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.951369+0000 mon.smithi078 (mon.0) 700 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.951369+0000 mon.smithi078 (mon.0) 700 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.0", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.953310+0000 mon.smithi078 (mon.0) 701 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.953310+0000 mon.smithi078 (mon.0) 701 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.2", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.955115+0000 mon.smithi078 (mon.0) 702 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.955115+0000 mon.smithi078 (mon.0) 702 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.4", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.957023+0000 mon.smithi078 (mon.0) 703 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.957023+0000 mon.smithi078 (mon.0) 703 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config rm", "who": "osd.6", "name": "osd_memory_target"} : dispatch 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.965478+0000 mon.smithi078 (mon.0) 704 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.965478+0000 mon.smithi078 (mon.0) 704 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.969666+0000 mon.smithi078 (mon.0) 705 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.969666+0000 mon.smithi078 (mon.0) 705 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.971082+0000 mon.smithi078 (mon.0) 706 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.971082+0000 mon.smithi078 (mon.0) 706 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.980838+0000 mon.smithi078 (mon.0) 707 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.980838+0000 mon.smithi078 (mon.0) 707 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.986638+0000 mon.smithi078 (mon.0) 708 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:56:04.409 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.986638+0000 mon.smithi078 (mon.0) 708 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:56:04.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.995936+0000 mon.smithi078 (mon.0) 709 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:56:04.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.995936+0000 mon.smithi078 (mon.0) 709 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:56:04.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.997858+0000 mon.smithi078 (mon.0) 710 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:03.997858+0000 mon.smithi078 (mon.0) 710 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:04.005394+0000 mon.smithi078 (mon.0) 711 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:56:04.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:04.005394+0000 mon.smithi078 (mon.0) 711 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.bootstrap-osd"} : dispatch 2024-09-21T11:56:04.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:04.007129+0000 mon.smithi078 (mon.0) 712 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:04.410 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:04 smithi078 bash[20010]: audit 2024-09-21T11:56:04.007129+0000 mon.smithi078 (mon.0) 712 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:56:05.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:05 smithi078 bash[20010]: cluster 2024-09-21T11:56:03.428330+0000 mgr.smithi078.aqnwdz (mgr.14203) 150 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:05.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:05 smithi078 bash[20010]: cluster 2024-09-21T11:56:03.428330+0000 mgr.smithi078.aqnwdz (mgr.14203) 150 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:05.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:05 smithi078 bash[20010]: cephadm 2024-09-21T11:56:03.926519+0000 mgr.smithi078.aqnwdz (mgr.14203) 151 : cephadm [INF] Detected new or changed devices on smithi195 2024-09-21T11:56:05.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:05 smithi078 bash[20010]: cephadm 2024-09-21T11:56:03.926519+0000 mgr.smithi078.aqnwdz (mgr.14203) 151 : cephadm [INF] Detected new or changed devices on smithi195 2024-09-21T11:56:05.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:05 smithi078 bash[20010]: cephadm 2024-09-21T11:56:03.958494+0000 mgr.smithi078.aqnwdz (mgr.14203) 152 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3772M 2024-09-21T11:56:05.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:05 smithi078 bash[20010]: cephadm 2024-09-21T11:56:03.958494+0000 mgr.smithi078.aqnwdz (mgr.14203) 152 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3772M 2024-09-21T11:56:05.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:05 smithi195 bash[25267]: cluster 2024-09-21T11:56:03.428330+0000 mgr.smithi078.aqnwdz (mgr.14203) 150 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:05.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:05 smithi195 bash[25267]: cluster 2024-09-21T11:56:03.428330+0000 mgr.smithi078.aqnwdz (mgr.14203) 150 : cluster [DBG] pgmap v119: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:05.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:05 smithi195 bash[25267]: cephadm 2024-09-21T11:56:03.926519+0000 mgr.smithi078.aqnwdz (mgr.14203) 151 : cephadm [INF] Detected new or changed devices on smithi195 2024-09-21T11:56:05.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:05 smithi195 bash[25267]: cephadm 2024-09-21T11:56:03.926519+0000 mgr.smithi078.aqnwdz (mgr.14203) 151 : cephadm [INF] Detected new or changed devices on smithi195 2024-09-21T11:56:05.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:05 smithi195 bash[25267]: cephadm 2024-09-21T11:56:03.958494+0000 mgr.smithi078.aqnwdz (mgr.14203) 152 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3772M 2024-09-21T11:56:05.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:05 smithi195 bash[25267]: cephadm 2024-09-21T11:56:03.958494+0000 mgr.smithi078.aqnwdz (mgr.14203) 152 : cephadm [INF] Adjusting osd_memory_target on smithi195 to 3772M 2024-09-21T11:56:07.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:07 smithi078 bash[20010]: cluster 2024-09-21T11:56:05.428758+0000 mgr.smithi078.aqnwdz (mgr.14203) 153 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:07.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:07 smithi078 bash[20010]: cluster 2024-09-21T11:56:05.428758+0000 mgr.smithi078.aqnwdz (mgr.14203) 153 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:07.475 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:07.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:07 smithi195 bash[25267]: cluster 2024-09-21T11:56:05.428758+0000 mgr.smithi078.aqnwdz (mgr.14203) 153 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:07.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:07 smithi195 bash[25267]: cluster 2024-09-21T11:56:05.428758+0000 mgr.smithi078.aqnwdz (mgr.14203) 153 : cluster [DBG] pgmap v120: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:09.048 INFO:teuthology.orchestra.run.smithi078.stdout:[client.0] 2024-09-21T11:56:09.048 INFO:teuthology.orchestra.run.smithi078.stdout: key = AQBZtO5mfiSwAhAAggMUTPEUqnkHMHnO28QUDw== 2024-09-21T11:56:09.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:09 smithi078 bash[20010]: cluster 2024-09-21T11:56:07.429342+0000 mgr.smithi078.aqnwdz (mgr.14203) 154 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:09.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:09 smithi078 bash[20010]: cluster 2024-09-21T11:56:07.429342+0000 mgr.smithi078.aqnwdz (mgr.14203) 154 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:09.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:09 smithi078 bash[20010]: audit 2024-09-21T11:56:09.044797+0000 mon.smithi078 (mon.0) 713 : audit [INF] from='client.? 172.21.15.78:0/2206933012' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T11:56:09.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:09 smithi078 bash[20010]: audit 2024-09-21T11:56:09.044797+0000 mon.smithi078 (mon.0) 713 : audit [INF] from='client.? 172.21.15.78:0/2206933012' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T11:56:09.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:09 smithi078 bash[20010]: audit 2024-09-21T11:56:09.048043+0000 mon.smithi078 (mon.0) 714 : audit [INF] from='client.? 172.21.15.78:0/2206933012' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-21T11:56:09.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:09 smithi078 bash[20010]: audit 2024-09-21T11:56:09.048043+0000 mon.smithi078 (mon.0) 714 : audit [INF] from='client.? 172.21.15.78:0/2206933012' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-21T11:56:09.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:09 smithi195 bash[25267]: cluster 2024-09-21T11:56:07.429342+0000 mgr.smithi078.aqnwdz (mgr.14203) 154 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:09.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:09 smithi195 bash[25267]: cluster 2024-09-21T11:56:07.429342+0000 mgr.smithi078.aqnwdz (mgr.14203) 154 : cluster [DBG] pgmap v121: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:09.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:09 smithi195 bash[25267]: audit 2024-09-21T11:56:09.044797+0000 mon.smithi078 (mon.0) 713 : audit [INF] from='client.? 172.21.15.78:0/2206933012' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T11:56:09.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:09 smithi195 bash[25267]: audit 2024-09-21T11:56:09.044797+0000 mon.smithi078 (mon.0) 713 : audit [INF] from='client.? 172.21.15.78:0/2206933012' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T11:56:09.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:09 smithi195 bash[25267]: audit 2024-09-21T11:56:09.048043+0000 mon.smithi078 (mon.0) 714 : audit [INF] from='client.? 172.21.15.78:0/2206933012' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-21T11:56:09.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:09 smithi195 bash[25267]: audit 2024-09-21T11:56:09.048043+0000 mon.smithi078 (mon.0) 714 : audit [INF] from='client.? 172.21.15.78:0/2206933012' entity='client.admin' cmd='[{"prefix": "auth get-or-create", "entity": "client.0", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]}]': finished 2024-09-21T11:56:10.029 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T11:56:10.029 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd of=/etc/ceph/ceph.client.0.keyring 2024-09-21T11:56:10.030 DEBUG:teuthology.orchestra.run.smithi078:> sudo chmod 0644 /etc/ceph/ceph.client.0.keyring 2024-09-21T11:56:10.051 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph auth get-or-create client.1 mon 'allow *' osd 'allow *' mds 'allow *' mgr 'allow *' 2024-09-21T11:56:11.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:11 smithi195 bash[25267]: cluster 2024-09-21T11:56:09.429926+0000 mgr.smithi078.aqnwdz (mgr.14203) 155 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:11.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:11 smithi195 bash[25267]: cluster 2024-09-21T11:56:09.429926+0000 mgr.smithi078.aqnwdz (mgr.14203) 155 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:11.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:11 smithi078 bash[20010]: cluster 2024-09-21T11:56:09.429926+0000 mgr.smithi078.aqnwdz (mgr.14203) 155 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:11.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:11 smithi078 bash[20010]: cluster 2024-09-21T11:56:09.429926+0000 mgr.smithi078.aqnwdz (mgr.14203) 155 : cluster [DBG] pgmap v122: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:13.399 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:13 smithi195 bash[25267]: cluster 2024-09-21T11:56:11.430501+0000 mgr.smithi078.aqnwdz (mgr.14203) 156 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:13.399 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:13 smithi195 bash[25267]: cluster 2024-09-21T11:56:11.430501+0000 mgr.smithi078.aqnwdz (mgr.14203) 156 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:13.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:13 smithi078 bash[20010]: cluster 2024-09-21T11:56:11.430501+0000 mgr.smithi078.aqnwdz (mgr.14203) 156 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:13.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:13 smithi078 bash[20010]: cluster 2024-09-21T11:56:11.430501+0000 mgr.smithi078.aqnwdz (mgr.14203) 156 : cluster [DBG] pgmap v123: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:15.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:15 smithi078 bash[20010]: cluster 2024-09-21T11:56:13.430890+0000 mgr.smithi078.aqnwdz (mgr.14203) 157 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:15.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:15 smithi078 bash[20010]: cluster 2024-09-21T11:56:13.430890+0000 mgr.smithi078.aqnwdz (mgr.14203) 157 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:15.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:15 smithi195 bash[25267]: cluster 2024-09-21T11:56:13.430890+0000 mgr.smithi078.aqnwdz (mgr.14203) 157 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:15.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:15 smithi195 bash[25267]: cluster 2024-09-21T11:56:13.430890+0000 mgr.smithi078.aqnwdz (mgr.14203) 157 : cluster [DBG] pgmap v124: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:15.851 INFO:teuthology.orchestra.run.smithi195.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi195/config 2024-09-21T11:56:17.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:17 smithi195 bash[25267]: cluster 2024-09-21T11:56:15.431444+0000 mgr.smithi078.aqnwdz (mgr.14203) 158 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:17.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:17 smithi195 bash[25267]: cluster 2024-09-21T11:56:15.431444+0000 mgr.smithi078.aqnwdz (mgr.14203) 158 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:17.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:17 smithi195 bash[25267]: audit 2024-09-21T11:56:16.728200+0000 mon.smithi078 (mon.0) 715 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:17.371 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:17 smithi195 bash[25267]: audit 2024-09-21T11:56:16.728200+0000 mon.smithi078 (mon.0) 715 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:17.373 INFO:teuthology.orchestra.run.smithi195.stdout:[client.1] 2024-09-21T11:56:17.373 INFO:teuthology.orchestra.run.smithi195.stdout: key = AQBhtO5mO472FRAA0oV7lC+8uDAupRh1p1fgJA== 2024-09-21T11:56:17.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:17 smithi078 bash[20010]: cluster 2024-09-21T11:56:15.431444+0000 mgr.smithi078.aqnwdz (mgr.14203) 158 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:17.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:17 smithi078 bash[20010]: cluster 2024-09-21T11:56:15.431444+0000 mgr.smithi078.aqnwdz (mgr.14203) 158 : cluster [DBG] pgmap v125: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:17.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:17 smithi078 bash[20010]: audit 2024-09-21T11:56:16.728200+0000 mon.smithi078 (mon.0) 715 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:17.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:17 smithi078 bash[20010]: audit 2024-09-21T11:56:16.728200+0000 mon.smithi078 (mon.0) 715 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:18.002 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T11:56:18.002 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/etc/ceph/ceph.client.1.keyring 2024-09-21T11:56:18.002 DEBUG:teuthology.orchestra.run.smithi195:> sudo chmod 0644 /etc/ceph/ceph.client.1.keyring 2024-09-21T11:56:18.026 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph config log 1 --format=json 2024-09-21T11:56:18.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:18 smithi195 bash[25267]: audit 2024-09-21T11:56:17.366476+0000 mon.smithi195 (mon.1) 20 : audit [INF] from='client.? 172.21.15.195:0/3936131231' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T11:56:18.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:18 smithi195 bash[25267]: audit 2024-09-21T11:56:17.366476+0000 mon.smithi195 (mon.1) 20 : audit [INF] from='client.? 172.21.15.195:0/3936131231' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T11:56:18.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:18 smithi195 bash[25267]: audit 2024-09-21T11:56:17.368083+0000 mon.smithi078 (mon.0) 716 : 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-09-21T11:56:18.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:18 smithi195 bash[25267]: audit 2024-09-21T11:56:17.368083+0000 mon.smithi078 (mon.0) 716 : 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-09-21T11:56:18.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:18 smithi195 bash[25267]: audit 2024-09-21T11:56:17.371365+0000 mon.smithi078 (mon.0) 717 : 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-09-21T11:56:18.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:18 smithi195 bash[25267]: audit 2024-09-21T11:56:17.371365+0000 mon.smithi078 (mon.0) 717 : 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-09-21T11:56:18.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:18 smithi078 bash[20010]: audit 2024-09-21T11:56:17.366476+0000 mon.smithi195 (mon.1) 20 : audit [INF] from='client.? 172.21.15.195:0/3936131231' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T11:56:18.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:18 smithi078 bash[20010]: audit 2024-09-21T11:56:17.366476+0000 mon.smithi195 (mon.1) 20 : audit [INF] from='client.? 172.21.15.195:0/3936131231' entity='client.admin' cmd={"prefix": "auth get-or-create", "entity": "client.1", "caps": ["mon", "allow *", "osd", "allow *", "mds", "allow *", "mgr", "allow *"]} : dispatch 2024-09-21T11:56:18.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:18 smithi078 bash[20010]: audit 2024-09-21T11:56:17.368083+0000 mon.smithi078 (mon.0) 716 : 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-09-21T11:56:18.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:18 smithi078 bash[20010]: audit 2024-09-21T11:56:17.368083+0000 mon.smithi078 (mon.0) 716 : 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-09-21T11:56:18.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:18 smithi078 bash[20010]: audit 2024-09-21T11:56:17.371365+0000 mon.smithi078 (mon.0) 717 : 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-09-21T11:56:18.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:18 smithi078 bash[20010]: audit 2024-09-21T11:56:17.371365+0000 mon.smithi078 (mon.0) 717 : 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-09-21T11:56:19.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:19 smithi195 bash[25267]: cluster 2024-09-21T11:56:17.432045+0000 mgr.smithi078.aqnwdz (mgr.14203) 159 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:19.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:19 smithi195 bash[25267]: cluster 2024-09-21T11:56:17.432045+0000 mgr.smithi078.aqnwdz (mgr.14203) 159 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:19.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:19 smithi078 bash[20010]: cluster 2024-09-21T11:56:17.432045+0000 mgr.smithi078.aqnwdz (mgr.14203) 159 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:19.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:19 smithi078 bash[20010]: cluster 2024-09-21T11:56:17.432045+0000 mgr.smithi078.aqnwdz (mgr.14203) 159 : cluster [DBG] pgmap v126: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:21.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:21 smithi195 bash[25267]: cluster 2024-09-21T11:56:19.432584+0000 mgr.smithi078.aqnwdz (mgr.14203) 160 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:21.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:21 smithi195 bash[25267]: cluster 2024-09-21T11:56:19.432584+0000 mgr.smithi078.aqnwdz (mgr.14203) 160 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:21.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:21 smithi078 bash[20010]: cluster 2024-09-21T11:56:19.432584+0000 mgr.smithi078.aqnwdz (mgr.14203) 160 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:21.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:21 smithi078 bash[20010]: cluster 2024-09-21T11:56:19.432584+0000 mgr.smithi078.aqnwdz (mgr.14203) 160 : cluster [DBG] pgmap v127: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:22.395 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:23.577 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:23 smithi195 bash[25267]: cluster 2024-09-21T11:56:21.433177+0000 mgr.smithi078.aqnwdz (mgr.14203) 161 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:23.577 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:23 smithi195 bash[25267]: cluster 2024-09-21T11:56:21.433177+0000 mgr.smithi078.aqnwdz (mgr.14203) 161 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:23.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:23 smithi078 bash[20010]: cluster 2024-09-21T11:56:21.433177+0000 mgr.smithi078.aqnwdz (mgr.14203) 161 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:23.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:23 smithi078 bash[20010]: cluster 2024-09-21T11:56:21.433177+0000 mgr.smithi078.aqnwdz (mgr.14203) 161 : cluster [DBG] pgmap v128: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:24.394 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:56:25.149 INFO:teuthology.orchestra.run.smithi078.stdout:[{"version":20,"timestamp":"2024-09-21T11:56:03.959324+0000","name":"","changes":[{"name":"osd/host:smithi195/osd_memory_target","new_value":"3955613184"}]}] 2024-09-21T11:56:25.150 INFO:tasks.ceph_manager:config epoch is 20 2024-09-21T11:56:25.150 INFO:tasks.ceph:Waiting until ceph daemons up and pgs clean... 2024-09-21T11:56:25.150 INFO:tasks.cephadm.ceph_manager.ceph:waiting for mgr available 2024-09-21T11:56:25.150 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph mgr dump --format=json 2024-09-21T11:56:25.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:25 smithi078 bash[20010]: cluster 2024-09-21T11:56:23.433781+0000 mgr.smithi078.aqnwdz (mgr.14203) 162 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:25.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:25 smithi078 bash[20010]: cluster 2024-09-21T11:56:23.433781+0000 mgr.smithi078.aqnwdz (mgr.14203) 162 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:25.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:25 smithi078 bash[20010]: audit 2024-09-21T11:56:24.393821+0000 mon.smithi078 (mon.0) 718 : audit [DBG] from='client.? 172.21.15.78:0/992631077' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-21T11:56:25.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:25 smithi078 bash[20010]: audit 2024-09-21T11:56:24.393821+0000 mon.smithi078 (mon.0) 718 : audit [DBG] from='client.? 172.21.15.78:0/992631077' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-21T11:56:25.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:25 smithi195 bash[25267]: cluster 2024-09-21T11:56:23.433781+0000 mgr.smithi078.aqnwdz (mgr.14203) 162 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:25.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:25 smithi195 bash[25267]: cluster 2024-09-21T11:56:23.433781+0000 mgr.smithi078.aqnwdz (mgr.14203) 162 : cluster [DBG] pgmap v129: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:25.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:25 smithi195 bash[25267]: audit 2024-09-21T11:56:24.393821+0000 mon.smithi078 (mon.0) 718 : audit [DBG] from='client.? 172.21.15.78:0/992631077' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-21T11:56:25.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:25 smithi195 bash[25267]: audit 2024-09-21T11:56:24.393821+0000 mon.smithi078 (mon.0) 718 : audit [DBG] from='client.? 172.21.15.78:0/992631077' entity='client.admin' cmd={"prefix": "config log", "num": 1, "format": "json"} : dispatch 2024-09-21T11:56:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:27 smithi195 bash[25267]: cluster 2024-09-21T11:56:25.434280+0000 mgr.smithi078.aqnwdz (mgr.14203) 163 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:27.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:27 smithi195 bash[25267]: cluster 2024-09-21T11:56:25.434280+0000 mgr.smithi078.aqnwdz (mgr.14203) 163 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:27.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:27 smithi078 bash[20010]: cluster 2024-09-21T11:56:25.434280+0000 mgr.smithi078.aqnwdz (mgr.14203) 163 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:27.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:27 smithi078 bash[20010]: cluster 2024-09-21T11:56:25.434280+0000 mgr.smithi078.aqnwdz (mgr.14203) 163 : cluster [DBG] pgmap v130: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:29.022 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:29.231 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:29 smithi078 bash[20010]: cluster 2024-09-21T11:56:27.434922+0000 mgr.smithi078.aqnwdz (mgr.14203) 164 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:29.232 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:29 smithi078 bash[20010]: cluster 2024-09-21T11:56:27.434922+0000 mgr.smithi078.aqnwdz (mgr.14203) 164 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:29.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:29 smithi195 bash[25267]: cluster 2024-09-21T11:56:27.434922+0000 mgr.smithi078.aqnwdz (mgr.14203) 164 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:29.244 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:29 smithi195 bash[25267]: cluster 2024-09-21T11:56:27.434922+0000 mgr.smithi078.aqnwdz (mgr.14203) 164 : cluster [DBG] pgmap v131: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:31.039 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:56:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:31 smithi078 bash[20010]: cluster 2024-09-21T11:56:29.435590+0000 mgr.smithi078.aqnwdz (mgr.14203) 165 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:31 smithi078 bash[20010]: cluster 2024-09-21T11:56:29.435590+0000 mgr.smithi078.aqnwdz (mgr.14203) 165 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:31 smithi078 bash[20010]: audit 2024-09-21T11:56:31.032394+0000 mon.smithi078 (mon.0) 719 : audit [DBG] from='client.? 172.21.15.78:0/1186195829' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-21T11:56:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:31 smithi078 bash[20010]: audit 2024-09-21T11:56:31.032394+0000 mon.smithi078 (mon.0) 719 : audit [DBG] from='client.? 172.21.15.78:0/1186195829' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-21T11:56:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:31 smithi195 bash[25267]: cluster 2024-09-21T11:56:29.435590+0000 mgr.smithi078.aqnwdz (mgr.14203) 165 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:31 smithi195 bash[25267]: cluster 2024-09-21T11:56:29.435590+0000 mgr.smithi078.aqnwdz (mgr.14203) 165 : cluster [DBG] pgmap v132: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:31 smithi195 bash[25267]: audit 2024-09-21T11:56:31.032394+0000 mon.smithi078 (mon.0) 719 : audit [DBG] from='client.? 172.21.15.78:0/1186195829' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-21T11:56:31.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:31 smithi195 bash[25267]: audit 2024-09-21T11:56:31.032394+0000 mon.smithi078 (mon.0) 719 : audit [DBG] from='client.? 172.21.15.78:0/1186195829' entity='client.admin' cmd={"prefix": "mgr dump", "format": "json"} : dispatch 2024-09-21T11:56:32.169 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":20,"flags":0,"active_gid":14203,"active_name":"smithi078.aqnwdz","active_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6800","nonce":1121818430},{"type":"v1","addr":"172.21.15.78:6801","nonce":1121818430}]},"active_addr":"172.21.15.78:6801/1121818430","active_change":"2024-09-21T11:53:01.381344+0000","active_mgr_features":4540719139924082687,"available":true,"standbys":[{"gid":14222,"name":"smithi195.wpaqjn","mgr_features":4540719139924082687,"available_modules":[{"name":"alerts","can_run":true,"error_string":"","module_options":{"interval":{"name":"interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"How frequently to reexamine health status","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"smtp_destination":{"name":"smtp_destination","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Email address to send alerts to, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.8","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}]}],"modules":["cephadm","dashboard","iostat","nfs","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, use commas to separate multiple","long_desc":"","tags":[],"see_also":[]},"smtp_from_name":{"name":"smtp_from_name","type":"str","level":"advanced","flags":1,"default_value":"Ceph","min":"","max":"","enum_allowed":[],"desc":"Email From: name","long_desc":"","tags":[],"see_also":[]},"smtp_host":{"name":"smtp_host","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_password":{"name":"smtp_password","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Password to authenticate with","long_desc":"","tags":[],"see_also":[]},"smtp_port":{"name":"smtp_port","type":"int","level":"advanced","flags":1,"default_value":"465","min":"","max":"","enum_allowed":[],"desc":"SMTP port","long_desc":"","tags":[],"see_also":[]},"smtp_sender":{"name":"smtp_sender","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"SMTP envelope sender","long_desc":"","tags":[],"see_also":[]},"smtp_ssl":{"name":"smtp_ssl","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Use SSL to connect to SMTP server","long_desc":"","tags":[],"see_also":[]},"smtp_user":{"name":"smtp_user","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"User to authenticate as","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"balancer","can_run":true,"error_string":"","module_options":{"active":{"name":"active","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically balance PGs across cluster","long_desc":"","tags":[],"see_also":[]},"begin_time":{"name":"begin_time","type":"str","level":"advanced","flags":1,"default_value":"0000","min":"","max":"","enum_allowed":[],"desc":"beginning time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"begin_weekday":{"name":"begin_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to this day of the week or later","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"crush_compat_max_iterations":{"name":"crush_compat_max_iterations","type":"uint","level":"advanced","flags":1,"default_value":"25","min":"1","max":"250","enum_allowed":[],"desc":"maximum number of iterations to attempt optimization","long_desc":"","tags":[],"see_also":[]},"crush_compat_metrics":{"name":"crush_compat_metrics","type":"str","level":"advanced","flags":1,"default_value":"pgs,objects,bytes","min":"","max":"","enum_allowed":[],"desc":"metrics with which to calculate OSD utilization","long_desc":"Value is a list of one or more of \"pgs\", \"objects\", or \"bytes\", and indicates which metrics to use to balance utilization.","tags":[],"see_also":[]},"crush_compat_step":{"name":"crush_compat_step","type":"float","level":"advanced","flags":1,"default_value":"0.5","min":"0.001","max":"0.999","enum_allowed":[],"desc":"aggressiveness of optimization","long_desc":".99 is very aggressive, .01 is less aggressive","tags":[],"see_also":[]},"end_time":{"name":"end_time","type":"str","level":"advanced","flags":1,"default_value":"2359","min":"","max":"","enum_allowed":[],"desc":"ending time of day to automatically balance","long_desc":"This is a time of day in the format HHMM.","tags":[],"see_also":[]},"end_weekday":{"name":"end_weekday","type":"uint","level":"advanced","flags":1,"default_value":"0","min":"0","max":"6","enum_allowed":[],"desc":"Restrict automatic balancing to days of the week earlier than this","long_desc":"0 = Sunday, 1 = Monday, etc.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_score":{"name":"min_score","type":"float","level":"advanced","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"minimum score, below which no optimization is attempted","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":1,"default_value":"upmap","min":"","max":"","enum_allowed":["crush-compat","none","read","upmap","upmap-read"],"desc":"Balancer mode","long_desc":"","tags":[],"see_also":[]},"pool_ids":{"name":"pool_ids","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"pools which the automatic balancing will be limited to","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and attempt optimization","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"upmap_max_deviation":{"name":"upmap_max_deviation","type":"int","level":"advanced","flags":1,"default_value":"5","min":"1","max":"","enum_allowed":[],"desc":"deviation below which no optimization is attempted","long_desc":"If the number of PGs are within this count then no optimization is attempted","tags":[],"see_also":[]},"upmap_max_optimizations":{"name":"upmap_max_optimizations","type":"uint","level":"advanced","flags":1,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"maximum upmap optimizations to make per attempt","long_desc":"","tags":[],"see_also":[]}}},{"name":"cephadm","can_run":true,"error_string":"","module_options":{"agent_down_multiplier":{"name":"agent_down_multiplier","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"","max":"","enum_allowed":[],"desc":"Multiplied by agent refresh rate to calculate how long agent must not report before being marked down","long_desc":"","tags":[],"see_also":[]},"agent_refresh_rate":{"name":"agent_refresh_rate","type":"secs","level":"advanced","flags":0,"default_value":"20","min":"","max":"","enum_allowed":[],"desc":"How often agent on each host will try to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"agent_starting_port":{"name":"agent_starting_port","type":"int","level":"advanced","flags":0,"default_value":"4721","min":"","max":"","enum_allowed":[],"desc":"First port agent will try to bind to (will also try up to next 1000 subsequent ports if blocked)","long_desc":"","tags":[],"see_also":[]},"allow_ptrace":{"name":"allow_ptrace","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow SYS_PTRACE capability on ceph containers","long_desc":"The SYS_PTRACE capability is needed to attach to a process with gdb or strace. Enabling this options can allow debugging daemons that encounter problems at runtime.","tags":[],"see_also":[]},"autotune_interval":{"name":"autotune_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to autotune daemon memory","long_desc":"","tags":[],"see_also":[]},"autotune_memory_target_ratio":{"name":"autotune_memory_target_ratio","type":"float","level":"advanced","flags":0,"default_value":"0.7","min":"","max":"","enum_allowed":[],"desc":"ratio of total system memory to divide amongst autotuned daemons","long_desc":"","tags":[],"see_also":[]},"cephadm_log_destination":{"name":"cephadm_log_destination","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":["file","file,syslog","syslog"],"desc":"Destination for cephadm command's persistent logging","long_desc":"","tags":[],"see_also":[]},"cgroups_split":{"name":"cgroups_split","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Pass --cgroups=split when cephadm creates containers (currently podman only)","long_desc":"","tags":[],"see_also":[]},"config_checks_enabled":{"name":"config_checks_enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable or disable the cephadm configuration analysis","long_desc":"","tags":[],"see_also":[]},"config_dashboard":{"name":"config_dashboard","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"manage configs like API endpoints in Dashboard.","long_desc":"","tags":[],"see_also":[]},"container_image_alertmanager":{"name":"container_image_alertmanager","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/alertmanager:v0.27.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_base":{"name":"container_image_base","type":"str","level":"advanced","flags":1,"default_value":"quay.io/ceph/ceph","min":"","max":"","enum_allowed":[],"desc":"Container image name, without the tag","long_desc":"","tags":[],"see_also":[]},"container_image_elasticsearch":{"name":"container_image_elasticsearch","type":"str","level":"advanced","flags":0,"default_value":"quay.io/omrizeneva/elasticsearch:6.8.23","min":"","max":"","enum_allowed":[],"desc":"elasticsearch container image","long_desc":"","tags":[],"see_also":[]},"container_image_grafana":{"name":"container_image_grafana","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/grafana:10.4.8","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_haproxy":{"name":"container_image_haproxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/haproxy:2.3","min":"","max":"","enum_allowed":[],"desc":"HAproxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_agent":{"name":"container_image_jaeger_agent","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-agent:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger agent container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_collector":{"name":"container_image_jaeger_collector","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-collector:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger collector container image","long_desc":"","tags":[],"see_also":[]},"container_image_jaeger_query":{"name":"container_image_jaeger_query","type":"str","level":"advanced","flags":0,"default_value":"quay.io/jaegertracing/jaeger-query:1.29","min":"","max":"","enum_allowed":[],"desc":"Jaeger query container image","long_desc":"","tags":[],"see_also":[]},"container_image_keepalived":{"name":"container_image_keepalived","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/keepalived:2.2.4","min":"","max":"","enum_allowed":[],"desc":"Keepalived container image","long_desc":"","tags":[],"see_also":[]},"container_image_loki":{"name":"container_image_loki","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/loki:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Loki container image","long_desc":"","tags":[],"see_also":[]},"container_image_nginx":{"name":"container_image_nginx","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nginx:sclorg-nginx-126","min":"","max":"","enum_allowed":[],"desc":"Nginx container image","long_desc":"","tags":[],"see_also":[]},"container_image_node_exporter":{"name":"container_image_node_exporter","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/node-exporter:v1.7.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_nvmeof":{"name":"container_image_nvmeof","type":"str","level":"advanced","flags":0,"default_value":"quay.io/ceph/nvmeof:1.2.17","min":"","max":"","enum_allowed":[],"desc":"Nvme-of container image","long_desc":"","tags":[],"see_also":[]},"container_image_oauth2_proxy":{"name":"container_image_oauth2_proxy","type":"str","level":"advanced","flags":0,"default_value":"quay.io/oauth2-proxy/oauth2-proxy:v7.6.0","min":"","max":"","enum_allowed":[],"desc":"oauth2-proxy container image","long_desc":"","tags":[],"see_also":[]},"container_image_prometheus":{"name":"container_image_prometheus","type":"str","level":"advanced","flags":0,"default_value":"quay.io/prometheus/prometheus:v2.51.0","min":"","max":"","enum_allowed":[],"desc":"Prometheus container image","long_desc":"","tags":[],"see_also":[]},"container_image_promtail":{"name":"container_image_promtail","type":"str","level":"advanced","flags":0,"default_value":"docker.io/grafana/promtail:3.0.0","min":"","max":"","enum_allowed":[],"desc":"Promtail container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba":{"name":"container_image_samba","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-server:devbuilds-centos-amd64","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB container image","long_desc":"","tags":[],"see_also":[]},"container_image_samba_metrics":{"name":"container_image_samba_metrics","type":"str","level":"advanced","flags":0,"default_value":"quay.io/samba.org/samba-metrics:latest","min":"","max":"","enum_allowed":[],"desc":"Samba/SMB metrics exporter container image","long_desc":"","tags":[],"see_also":[]},"container_image_snmp_gateway":{"name":"container_image_snmp_gateway","type":"str","level":"advanced","flags":0,"default_value":"docker.io/maxwo/snmp-notifier:v1.2.1","min":"","max":"","enum_allowed":[],"desc":"SNMP Gateway container image","long_desc":"","tags":[],"see_also":[]},"container_init":{"name":"container_init","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Run podman/docker with `--init`","long_desc":"","tags":[],"see_also":[]},"daemon_cache_timeout":{"name":"daemon_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"seconds to cache service (daemon) inventory","long_desc":"","tags":[],"see_also":[]},"default_cephadm_command_timeout":{"name":"default_cephadm_command_timeout","type":"int","level":"advanced","flags":0,"default_value":"900","min":"","max":"","enum_allowed":[],"desc":"Default timeout applied to cephadm commands run directly on the host (in seconds)","long_desc":"","tags":[],"see_also":[]},"default_registry":{"name":"default_registry","type":"str","level":"advanced","flags":0,"default_value":"docker.io","min":"","max":"","enum_allowed":[],"desc":"Search-registry to which we should normalize unqualified image names. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"device_cache_timeout":{"name":"device_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"1800","min":"","max":"","enum_allowed":[],"desc":"seconds to cache device inventory","long_desc":"","tags":[],"see_also":[]},"device_enhanced_scan":{"name":"device_enhanced_scan","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use libstoragemgmt during device scans","long_desc":"","tags":[],"see_also":[]},"facts_cache_timeout":{"name":"facts_cache_timeout","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"seconds to cache host facts data","long_desc":"","tags":[],"see_also":[]},"grafana_dashboards_path":{"name":"grafana_dashboards_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/grafana/dashboards/ceph-dashboard/","min":"","max":"","enum_allowed":[],"desc":"location of dashboards to include in grafana deployments","long_desc":"","tags":[],"see_also":[]},"host_check_interval":{"name":"host_check_interval","type":"secs","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to perform a host check","long_desc":"","tags":[],"see_also":[]},"hw_monitoring":{"name":"hw_monitoring","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Deploy hw monitoring daemon on every host.","long_desc":"","tags":[],"see_also":[]},"inventory_list_all":{"name":"inventory_list_all","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Whether ceph-volume inventory should report more devices (mostly mappers (LVs / mpaths), partitions...)","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_refresh_metadata":{"name":"log_refresh_metadata","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Log all refresh metadata. Includes daemon, device, and host info collected regularly. Only has effect if logging at debug level","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"log to the \"cephadm\" cluster log channel\"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf":{"name":"manage_etc_ceph_ceph_conf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Manage and own /etc/ceph/ceph.conf on the hosts.","long_desc":"","tags":[],"see_also":[]},"manage_etc_ceph_ceph_conf_hosts":{"name":"manage_etc_ceph_ceph_conf_hosts","type":"str","level":"advanced","flags":0,"default_value":"*","min":"","max":"","enum_allowed":[],"desc":"PlacementSpec describing on which hosts to manage /etc/ceph/ceph.conf","long_desc":"","tags":[],"see_also":[]},"max_count_per_host":{"name":"max_count_per_host","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of daemons per service per host","long_desc":"","tags":[],"see_also":[]},"max_osd_draining_count":{"name":"max_osd_draining_count","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"max number of osds that will be drained simultaneously when osds are removed","long_desc":"","tags":[],"see_also":[]},"migration_current":{"name":"migration_current","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"internal - do not modify","long_desc":"","tags":[],"see_also":[]},"mode":{"name":"mode","type":"str","level":"advanced","flags":0,"default_value":"root","min":"","max":"","enum_allowed":["cephadm-package","root"],"desc":"mode for remote execution of cephadm","long_desc":"","tags":[],"see_also":[]},"oob_default_addr":{"name":"oob_default_addr","type":"str","level":"advanced","flags":0,"default_value":"169.254.1.1","min":"","max":"","enum_allowed":[],"desc":"Default address for RedFish API (oob management).","long_desc":"","tags":[],"see_also":[]},"prometheus_alerts_path":{"name":"prometheus_alerts_path","type":"str","level":"advanced","flags":0,"default_value":"/etc/prometheus/ceph/ceph_default_alerts.yml","min":"","max":"","enum_allowed":[],"desc":"location of alerts to include in prometheus deployments","long_desc":"","tags":[],"see_also":[]},"registry_insecure":{"name":"registry_insecure","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Registry is to be considered insecure (no TLS available). Only for development purposes.","long_desc":"","tags":[],"see_also":[]},"registry_password":{"name":"registry_password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository password. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"registry_url":{"name":"registry_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Registry url for login purposes. This is not the default registry","long_desc":"","tags":[],"see_also":[]},"registry_username":{"name":"registry_username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"Custom repository username. Only used for logging into a registry.","long_desc":"","tags":[],"see_also":[]},"secure_monitoring_stack":{"name":"secure_monitoring_stack","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable TLS security for all the monitoring stack daemons","long_desc":"","tags":[],"see_also":[]},"service_discovery_port":{"name":"service_discovery_port","type":"int","level":"advanced","flags":0,"default_value":"8765","min":"","max":"","enum_allowed":[],"desc":"cephadm service discovery port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssh_config_file":{"name":"ssh_config_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"customized SSH config file to connect to managed hosts","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_count_max":{"name":"ssh_keepalive_count_max","type":"int","level":"advanced","flags":0,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"How many times ssh connections can fail liveness checks before the host is marked offline","long_desc":"","tags":[],"see_also":[]},"ssh_keepalive_interval":{"name":"ssh_keepalive_interval","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"How often ssh connections are checked for liveness","long_desc":"","tags":[],"see_also":[]},"use_agent":{"name":"use_agent","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Use cephadm agent on each host to gather and send metadata","long_desc":"","tags":[],"see_also":[]},"use_repo_digest":{"name":"use_repo_digest","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Automatically convert image tags to image digest. Make sure all daemons use the same image","long_desc":"","tags":[],"see_also":[]},"warn_on_failed_host_check":{"name":"warn_on_failed_host_check","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if the host check fails","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_daemons":{"name":"warn_on_stray_daemons","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected that are not managed by cephadm","long_desc":"","tags":[],"see_also":[]},"warn_on_stray_hosts":{"name":"warn_on_stray_hosts","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"raise a health warning if daemons are detected on a host that is not managed by cephadm","long_desc":"","tags":[],"see_also":[]}}},{"name":"crash","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"retain_interval":{"name":"retain_interval","type":"secs","level":"advanced","flags":1,"default_value":"31536000","min":"","max":"","enum_allowed":[],"desc":"how long to retain crashes before pruning them","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_recent_interval":{"name":"warn_recent_interval","type":"secs","level":"advanced","flags":1,"default_value":"1209600","min":"","max":"","enum_allowed":[],"desc":"time interval in which to warn about recent crashes","long_desc":"","tags":[],"see_also":[]}}},{"name":"dashboard","can_run":true,"error_string":"","module_options":{"ACCOUNT_LOCKOUT_ATTEMPTS":{"name":"ACCOUNT_LOCKOUT_ATTEMPTS","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_HOST":{"name":"ALERTMANAGER_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ALERTMANAGER_API_SSL_VERIFY":{"name":"ALERTMANAGER_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_ENABLED":{"name":"AUDIT_API_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"AUDIT_API_LOG_PAYLOAD":{"name":"AUDIT_API_LOG_PAYLOAD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ENABLE_BROWSABLE_API":{"name":"ENABLE_BROWSABLE_API","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_CEPHFS":{"name":"FEATURE_TOGGLE_CEPHFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_DASHBOARD":{"name":"FEATURE_TOGGLE_DASHBOARD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_ISCSI":{"name":"FEATURE_TOGGLE_ISCSI","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_MIRRORING":{"name":"FEATURE_TOGGLE_MIRRORING","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_NFS":{"name":"FEATURE_TOGGLE_NFS","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RBD":{"name":"FEATURE_TOGGLE_RBD","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"FEATURE_TOGGLE_RGW":{"name":"FEATURE_TOGGLE_RGW","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE":{"name":"GANESHA_CLUSTERS_RADOS_POOL_NAMESPACE","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_PASSWORD":{"name":"GRAFANA_API_PASSWORD","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_SSL_VERIFY":{"name":"GRAFANA_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_URL":{"name":"GRAFANA_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_API_USERNAME":{"name":"GRAFANA_API_USERNAME","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_FRONTEND_API_URL":{"name":"GRAFANA_FRONTEND_API_URL","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"GRAFANA_UPDATE_DASHBOARDS":{"name":"GRAFANA_UPDATE_DASHBOARDS","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISCSI_API_SSL_VERIFICATION":{"name":"ISCSI_API_SSL_VERIFICATION","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ISSUE_TRACKER_API_KEY":{"name":"ISSUE_TRACKER_API_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MANAGED_BY_CLUSTERS":{"name":"MANAGED_BY_CLUSTERS","type":"str","level":"advanced","flags":0,"default_value":"[]","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"MULTICLUSTER_CONFIG":{"name":"MULTICLUSTER_CONFIG","type":"str","level":"advanced","flags":0,"default_value":"{}","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_HOST":{"name":"PROMETHEUS_API_HOST","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PROMETHEUS_API_SSL_VERIFY":{"name":"PROMETHEUS_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_COMPLEXITY_ENABLED":{"name":"PWD_POLICY_CHECK_COMPLEXITY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED":{"name":"PWD_POLICY_CHECK_EXCLUSION_LIST_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_LENGTH_ENABLED":{"name":"PWD_POLICY_CHECK_LENGTH_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_OLDPWD_ENABLED":{"name":"PWD_POLICY_CHECK_OLDPWD_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_REPETITIVE_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED":{"name":"PWD_POLICY_CHECK_SEQUENTIAL_CHARS_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_CHECK_USERNAME_ENABLED":{"name":"PWD_POLICY_CHECK_USERNAME_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_ENABLED":{"name":"PWD_POLICY_ENABLED","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_EXCLUSION_LIST":{"name":"PWD_POLICY_EXCLUSION_LIST","type":"str","level":"advanced","flags":0,"default_value":"osd,host,dashboard,pool,block,nfs,ceph,monitors,gateway,logs,crush,maps","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_COMPLEXITY":{"name":"PWD_POLICY_MIN_COMPLEXITY","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"PWD_POLICY_MIN_LENGTH":{"name":"PWD_POLICY_MIN_LENGTH","type":"int","level":"advanced","flags":0,"default_value":"8","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"REST_REQUESTS_TIMEOUT":{"name":"REST_REQUESTS_TIMEOUT","type":"int","level":"advanced","flags":0,"default_value":"45","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ACCESS_KEY":{"name":"RGW_API_ACCESS_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_ADMIN_RESOURCE":{"name":"RGW_API_ADMIN_RESOURCE","type":"str","level":"advanced","flags":0,"default_value":"admin","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SECRET_KEY":{"name":"RGW_API_SECRET_KEY","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"RGW_API_SSL_VERIFY":{"name":"RGW_API_SSL_VERIFY","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"UNSAFE_TLS_v1_2":{"name":"UNSAFE_TLS_v1_2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_SPAN":{"name":"USER_PWD_EXPIRATION_SPAN","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_1":{"name":"USER_PWD_EXPIRATION_WARNING_1","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"USER_PWD_EXPIRATION_WARNING_2":{"name":"USER_PWD_EXPIRATION_WARNING_2","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"cross_origin_url":{"name":"cross_origin_url","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"crt_file":{"name":"crt_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"debug":{"name":"debug","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Enable/disable debug options","long_desc":"","tags":[],"see_also":[]},"jwt_token_ttl":{"name":"jwt_token_ttl","type":"int","level":"advanced","flags":0,"default_value":"28800","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"motd":{"name":"motd","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"The message of the day","long_desc":"","tags":[],"see_also":[]},"redirect_resolve_ip_addr":{"name":"redirect_resolve_ip_addr","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":0,"default_value":"8080","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl_server_port":{"name":"ssl_server_port","type":"int","level":"advanced","flags":0,"default_value":"8443","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sso_oauth2":{"name":"sso_oauth2","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":0,"default_value":"redirect","min":"","max":"","enum_allowed":["error","redirect"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":0,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url_prefix":{"name":"url_prefix","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"devicehealth","can_run":true,"error_string":"","module_options":{"enable_monitoring":{"name":"enable_monitoring","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"monitor device health metrics","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mark_out_threshold":{"name":"mark_out_threshold","type":"secs","level":"advanced","flags":1,"default_value":"2419200","min":"","max":"","enum_allowed":[],"desc":"automatically mark OSD if it may fail before this long","long_desc":"","tags":[],"see_also":[]},"pool_name":{"name":"pool_name","type":"str","level":"advanced","flags":1,"default_value":"device_health_metrics","min":"","max":"","enum_allowed":[],"desc":"name of pool in which to store device health metrics","long_desc":"","tags":[],"see_also":[]},"retention_period":{"name":"retention_period","type":"secs","level":"advanced","flags":1,"default_value":"15552000","min":"","max":"","enum_allowed":[],"desc":"how long to retain device health metrics","long_desc":"","tags":[],"see_also":[]},"scrape_frequency":{"name":"scrape_frequency","type":"secs","level":"advanced","flags":1,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"how frequently to scrape device health metrics","long_desc":"","tags":[],"see_also":[]},"self_heal":{"name":"self_heal","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"preemptively heal cluster around devices that may fail","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"how frequently to wake up and check device health","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"warn_threshold":{"name":"warn_threshold","type":"secs","level":"advanced","flags":1,"default_value":"7257600","min":"","max":"","enum_allowed":[],"desc":"raise health warning if OSD may fail before this long","long_desc":"","tags":[],"see_also":[]}}},{"name":"diskprediction_local","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predict_interval":{"name":"predict_interval","type":"str","level":"advanced","flags":0,"default_value":"86400","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"predictor_model":{"name":"predictor_model","type":"str","level":"advanced","flags":0,"default_value":"prophetstor","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"str","level":"advanced","flags":0,"default_value":"600","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"influx","can_run":false,"error_string":"influxdb python module not found","module_options":{"batch_size":{"name":"batch_size","type":"int","level":"advanced","flags":0,"default_value":"5000","min":"","max":"","enum_allowed":[],"desc":"How big batches of data points should be when sending to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"database":{"name":"database","type":"str","level":"advanced","flags":0,"default_value":"ceph","min":"","max":"","enum_allowed":[],"desc":"InfluxDB database name. You will need to create this database and grant write privileges to the configured username or the username must have admin privileges to create it.","long_desc":"","tags":[],"see_also":[]},"hostname":{"name":"hostname","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server hostname","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"30","min":"5","max":"","enum_allowed":[],"desc":"Time between reports to InfluxDB. Default 30 seconds.","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"password":{"name":"password","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"password of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"port":{"name":"port","type":"int","level":"advanced","flags":0,"default_value":"8086","min":"","max":"","enum_allowed":[],"desc":"InfluxDB server port","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"ssl":{"name":"ssl","type":"str","level":"advanced","flags":0,"default_value":"false","min":"","max":"","enum_allowed":[],"desc":"Use https connection for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]},"threads":{"name":"threads","type":"int","level":"advanced","flags":0,"default_value":"5","min":"1","max":"32","enum_allowed":[],"desc":"How many worker threads should be spawned for sending data to InfluxDB.","long_desc":"","tags":[],"see_also":[]},"username":{"name":"username","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"username of InfluxDB server user","long_desc":"","tags":[],"see_also":[]},"verify_ssl":{"name":"verify_ssl","type":"str","level":"advanced","flags":0,"default_value":"true","min":"","max":"","enum_allowed":[],"desc":"Verify https cert for InfluxDB server. Use \"true\" or \"false\".","long_desc":"","tags":[],"see_also":[]}}},{"name":"insights","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"iostat","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"k8sevents","can_run":true,"error_string":"","module_options":{"ceph_event_retention_days":{"name":"ceph_event_retention_days","type":"int","level":"advanced","flags":0,"default_value":"7","min":"","max":"","enum_allowed":[],"desc":"Days to hold ceph event information within local cache","long_desc":"","tags":[],"see_also":[]},"config_check_secs":{"name":"config_check_secs","type":"int","level":"advanced","flags":0,"default_value":"10","min":"10","max":"","enum_allowed":[],"desc":"interval (secs) to check for cluster configuration changes","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"localpool","can_run":true,"error_string":"","module_options":{"failure_domain":{"name":"failure_domain","type":"str","level":"advanced","flags":1,"default_value":"host","min":"","max":"","enum_allowed":[],"desc":"failure domain for any created local pool","long_desc":"what failure domain we should separate data replicas across.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"min_size":{"name":"min_size","type":"int","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"default min_size for any created local pool","long_desc":"value to set min_size to (unchanged from Ceph's default if this option is not set)","tags":[],"see_also":[]},"num_rep":{"name":"num_rep","type":"int","level":"advanced","flags":1,"default_value":"3","min":"","max":"","enum_allowed":[],"desc":"default replica count for any created local pool","long_desc":"","tags":[],"see_also":[]},"pg_num":{"name":"pg_num","type":"int","level":"advanced","flags":1,"default_value":"128","min":"","max":"","enum_allowed":[],"desc":"default pg_num for any created local pool","long_desc":"","tags":[],"see_also":[]},"prefix":{"name":"prefix","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"name prefix for any created local pool","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"subtree":{"name":"subtree","type":"str","level":"advanced","flags":1,"default_value":"rack","min":"","max":"","enum_allowed":[],"desc":"CRUSH level for which to create a local pool","long_desc":"which CRUSH subtree type the module should create a pool for.","tags":[],"see_also":[]}}},{"name":"mds_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"mirroring","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"nfs","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"orchestrator","can_run":true,"error_string":"","module_options":{"fail_fs":{"name":"fail_fs","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Fail filesystem for rapid multi-rank mds upgrade","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"orchestrator":{"name":"orchestrator","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["cephadm","rook","test_orchestrator"],"desc":"Orchestrator backend","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_perf_query","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"osd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"pg_autoscaler","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"threshold":{"name":"threshold","type":"float","level":"advanced","flags":0,"default_value":"3.0","min":"1.0","max":"","enum_allowed":[],"desc":"scaling threshold","long_desc":"The factor by which the `NEW PG_NUM` must vary from the current`PG_NUM` before being accepted. Cannot be less than 1.0","tags":[],"see_also":[]}}},{"name":"progress","can_run":true,"error_string":"","module_options":{"allow_pg_recovery_event":{"name":"allow_pg_recovery_event","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow the module to show pg recovery progress","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_completed_events":{"name":"max_completed_events","type":"int","level":"advanced","flags":1,"default_value":"50","min":"","max":"","enum_allowed":[],"desc":"number of past completed events to remember","long_desc":"","tags":[],"see_also":[]},"sleep_interval":{"name":"sleep_interval","type":"secs","level":"advanced","flags":1,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"how long the module is going to sleep","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"prometheus","can_run":true,"error_string":"","module_options":{"cache":{"name":"cache","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"exclude_perf_counters":{"name":"exclude_perf_counters","type":"bool","level":"advanced","flags":1,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Do not include perf-counters in the metrics output","long_desc":"Gathering perf-counters from a single Prometheus exporter can degrade ceph-mgr performance, especially in large clusters. Instead, Ceph-exporter daemons are now used by default for perf-counter gathering. This should only be disabled when no ceph-exporters are deployed.","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools":{"name":"rbd_stats_pools","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rbd_stats_pools_refresh_interval":{"name":"rbd_stats_pools_refresh_interval","type":"int","level":"advanced","flags":0,"default_value":"300","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"scrape_interval":{"name":"scrape_interval","type":"float","level":"advanced","flags":0,"default_value":"15.0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"::","min":"","max":"","enum_allowed":[],"desc":"the IPv4 or IPv6 address on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"int","level":"advanced","flags":1,"default_value":"9283","min":"","max":"","enum_allowed":[],"desc":"the port on which the module listens for HTTP requests","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"stale_cache_strategy":{"name":"stale_cache_strategy","type":"str","level":"advanced","flags":0,"default_value":"log","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_behaviour":{"name":"standby_behaviour","type":"str","level":"advanced","flags":1,"default_value":"default","min":"","max":"","enum_allowed":["default","error"],"desc":"","long_desc":"","tags":[],"see_also":[]},"standby_error_status_code":{"name":"standby_error_status_code","type":"int","level":"advanced","flags":1,"default_value":"500","min":"400","max":"599","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rbd_support","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_snap_create":{"name":"max_concurrent_snap_create","type":"int","level":"advanced","flags":0,"default_value":"10","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"mirror_snapshot_schedule":{"name":"mirror_snapshot_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"trash_purge_schedule":{"name":"trash_purge_schedule","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"restful","can_run":true,"error_string":"","module_options":{"enable_auth":{"name":"enable_auth","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"key_file":{"name":"key_file","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_requests":{"name":"max_requests","type":"int","level":"advanced","flags":0,"default_value":"500","min":"","max":"","enum_allowed":[],"desc":"Maximum number of requests to keep in memory. When new request comes in, the oldest request will be removed if the number of requests exceeds the max request number.if un-finished request is removed, error message will be logged in the ceph-mgr log.","long_desc":"","tags":[],"see_also":[]},"server_addr":{"name":"server_addr","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"server_port":{"name":"server_port","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rgw","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"secondary_zone_period_retry_limit":{"name":"secondary_zone_period_retry_limit","type":"int","level":"advanced","flags":0,"default_value":"5","min":"","max":"","enum_allowed":[],"desc":"RGW module period update retry limit for secondary site","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"rook","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"storage_class":{"name":"storage_class","type":"str","level":"advanced","flags":0,"default_value":"local","min":"","max":"","enum_allowed":[],"desc":"storage class name for LSO-discovered PVs","long_desc":"","tags":[],"see_also":[]}}},{"name":"selftest","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption1":{"name":"roption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"roption2":{"name":"roption2","type":"str","level":"advanced","flags":0,"default_value":"xyz","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption1":{"name":"rwoption1","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption2":{"name":"rwoption2","type":"int","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption3":{"name":"rwoption3","type":"float","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption4":{"name":"rwoption4","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption5":{"name":"rwoption5","type":"bool","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption6":{"name":"rwoption6","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"rwoption7":{"name":"rwoption7","type":"int","level":"advanced","flags":0,"default_value":"","min":"1","max":"42","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testkey":{"name":"testkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testlkey":{"name":"testlkey","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"testnewline":{"name":"testnewline","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"smb","can_run":true,"error_string":"","module_options":{"internal_store_backend":{"name":"internal_store_backend","type":"str","level":"dev","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"set internal store backend. for develoment and testing only","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"update_orchestration":{"name":"update_orchestration","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"automatically update orchestration when smb resources are changed","long_desc":"","tags":[],"see_also":[]}}},{"name":"snap_schedule","can_run":true,"error_string":"","module_options":{"allow_m_granularity":{"name":"allow_m_granularity","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"allow minute scheduled snapshots","long_desc":"","tags":[],"see_also":[]},"dump_on_update":{"name":"dump_on_update","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"dump database to debug log on update","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"stats","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"status","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telegraf","can_run":true,"error_string":"","module_options":{"address":{"name":"address","type":"str","level":"advanced","flags":0,"default_value":"unixgram:///tmp/telegraf.sock","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"15","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"telemetry","can_run":true,"error_string":"","module_options":{"channel_basic":{"name":"channel_basic","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share basic cluster information (size, version)","long_desc":"","tags":[],"see_also":[]},"channel_crash":{"name":"channel_crash","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share metadata about Ceph daemon crashes (version, stack straces, etc)","long_desc":"","tags":[],"see_also":[]},"channel_device":{"name":"channel_device","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Share device health metrics (e.g., SMART data, minus potentially identifying info like serial numbers)","long_desc":"","tags":[],"see_also":[]},"channel_ident":{"name":"channel_ident","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share a user-provided description and/or contact email for the cluster","long_desc":"","tags":[],"see_also":[]},"channel_perf":{"name":"channel_perf","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Share various performance metrics of a cluster","long_desc":"","tags":[],"see_also":[]},"contact":{"name":"contact","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"description":{"name":"description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"device_url":{"name":"device_url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/device","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"enabled":{"name":"enabled","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"int","level":"advanced","flags":0,"default_value":"24","min":"8","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"last_opt_revision":{"name":"last_opt_revision","type":"int","level":"advanced","flags":0,"default_value":"1","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard":{"name":"leaderboard","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"leaderboard_description":{"name":"leaderboard_description","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"organization":{"name":"organization","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"proxy":{"name":"proxy","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"url":{"name":"url","type":"str","level":"advanced","flags":0,"default_value":"https://telemetry.ceph.com/report","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"test_orchestrator","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"volumes","can_run":true,"error_string":"","module_options":{"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"max_concurrent_clones":{"name":"max_concurrent_clones","type":"int","level":"advanced","flags":0,"default_value":"4","min":"","max":"","enum_allowed":[],"desc":"Number of asynchronous cloner threads","long_desc":"","tags":[],"see_also":[]},"periodic_async_work":{"name":"periodic_async_work","type":"bool","level":"advanced","flags":0,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"Periodically check for async work","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_delay":{"name":"snapshot_clone_delay","type":"int","level":"advanced","flags":0,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"Delay clone begin operation by snapshot_clone_delay seconds","long_desc":"","tags":[],"see_also":[]},"snapshot_clone_no_wait":{"name":"snapshot_clone_no_wait","type":"bool","level":"advanced","flags":0,"default_value":"True","min":"","max":"","enum_allowed":[],"desc":"Reject subvolume clone request when cloner threads are busy","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}},{"name":"zabbix","can_run":true,"error_string":"","module_options":{"discovery_interval":{"name":"discovery_interval","type":"uint","level":"advanced","flags":0,"default_value":"100","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"identifier":{"name":"identifier","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"interval":{"name":"interval","type":"secs","level":"advanced","flags":0,"default_value":"60","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_level":{"name":"log_level","type":"str","level":"advanced","flags":1,"default_value":"","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster":{"name":"log_to_cluster","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_cluster_level":{"name":"log_to_cluster_level","type":"str","level":"advanced","flags":1,"default_value":"info","min":"","max":"","enum_allowed":["","critical","debug","error","info","warning"],"desc":"","long_desc":"","tags":[],"see_also":[]},"log_to_file":{"name":"log_to_file","type":"bool","level":"advanced","flags":1,"default_value":"False","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"sqlite3_killpoint":{"name":"sqlite3_killpoint","type":"int","level":"dev","flags":1,"default_value":"0","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_host":{"name":"zabbix_host","type":"str","level":"advanced","flags":0,"default_value":"","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_port":{"name":"zabbix_port","type":"int","level":"advanced","flags":0,"default_value":"10051","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]},"zabbix_sender":{"name":"zabbix_sender","type":"str","level":"advanced","flags":0,"default_value":"/usr/bin/zabbix_sender","min":"","max":"","enum_allowed":[],"desc":"","long_desc":"","tags":[],"see_also":[]}}}],"services":{"dashboard":"https://172.21.15.78:8443/","prometheus":"http://172.21.15.78:9283/"},"always_on_modules":{"octopus":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"pacific":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"quincy":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"reef":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"],"squid":["balancer","crash","devicehealth","orchestrator","pg_autoscaler","progress","rbd_support","status","telemetry","volumes"]},"last_failure_osd_epoch":5,"active_clients":[{"name":"devicehealth","addrvec":[{"type":"v2","addr":"172.21.15.78:0","nonce":656399129}]},{"name":"libcephsqlite","addrvec":[{"type":"v2","addr":"172.21.15.78:0","nonce":1944514168}]},{"name":"rbd_support","addrvec":[{"type":"v2","addr":"172.21.15.78:0","nonce":148521349}]},{"name":"volumes","addrvec":[{"type":"v2","addr":"172.21.15.78:0","nonce":3510264766}]}]} 2024-09-21T11:56:32.174 INFO:tasks.cephadm.ceph_manager.ceph:mgr available! 2024-09-21T11:56:32.175 INFO:tasks.cephadm.ceph_manager.ceph:waiting for all up 2024-09-21T11:56:32.175 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd dump --format=json 2024-09-21T11:56:32.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:32 smithi195 bash[25267]: audit 2024-09-21T11:56:31.728486+0000 mon.smithi078 (mon.0) 720 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:32.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:32 smithi195 bash[25267]: audit 2024-09-21T11:56:31.728486+0000 mon.smithi078 (mon.0) 720 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:32.663 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:32 smithi078 bash[20010]: audit 2024-09-21T11:56:31.728486+0000 mon.smithi078 (mon.0) 720 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:32.664 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:32 smithi078 bash[20010]: audit 2024-09-21T11:56:31.728486+0000 mon.smithi078 (mon.0) 720 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:33.577 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:33 smithi195 bash[25267]: cluster 2024-09-21T11:56:31.436059+0000 mgr.smithi078.aqnwdz (mgr.14203) 166 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:33.578 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:33 smithi195 bash[25267]: cluster 2024-09-21T11:56:31.436059+0000 mgr.smithi078.aqnwdz (mgr.14203) 166 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:33.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:33 smithi078 bash[20010]: cluster 2024-09-21T11:56:31.436059+0000 mgr.smithi078.aqnwdz (mgr.14203) 166 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:33.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:33 smithi078 bash[20010]: cluster 2024-09-21T11:56:31.436059+0000 mgr.smithi078.aqnwdz (mgr.14203) 166 : cluster [DBG] pgmap v133: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:34.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:34 smithi078 bash[20010]: cluster 2024-09-21T11:56:33.436626+0000 mgr.smithi078.aqnwdz (mgr.14203) 167 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:34.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:34 smithi078 bash[20010]: cluster 2024-09-21T11:56:33.436626+0000 mgr.smithi078.aqnwdz (mgr.14203) 167 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:34.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:34 smithi195 bash[25267]: cluster 2024-09-21T11:56:33.436626+0000 mgr.smithi078.aqnwdz (mgr.14203) 167 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:34.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:34 smithi195 bash[25267]: cluster 2024-09-21T11:56:33.436626+0000 mgr.smithi078.aqnwdz (mgr.14203) 167 : cluster [DBG] pgmap v134: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:36.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:36 smithi195 bash[25267]: cluster 2024-09-21T11:56:35.437310+0000 mgr.smithi078.aqnwdz (mgr.14203) 168 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:36.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:36 smithi195 bash[25267]: cluster 2024-09-21T11:56:35.437310+0000 mgr.smithi078.aqnwdz (mgr.14203) 168 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:36.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:36 smithi078 bash[20010]: cluster 2024-09-21T11:56:35.437310+0000 mgr.smithi078.aqnwdz (mgr.14203) 168 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:36.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:36 smithi078 bash[20010]: cluster 2024-09-21T11:56:35.437310+0000 mgr.smithi078.aqnwdz (mgr.14203) 168 : cluster [DBG] pgmap v135: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:36.996 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:38.107 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:37 smithi078 bash[20010]: audit 2024-09-21T11:56:36.778320+0000 mon.smithi078 (mon.0) 721 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:38.108 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:37 smithi078 bash[20010]: audit 2024-09-21T11:56:36.778320+0000 mon.smithi078 (mon.0) 721 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:38.108 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:37 smithi078 bash[20010]: audit 2024-09-21T11:56:36.785839+0000 mon.smithi078 (mon.0) 722 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:38.108 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:37 smithi078 bash[20010]: audit 2024-09-21T11:56:36.785839+0000 mon.smithi078 (mon.0) 722 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:37 smithi195 bash[25267]: audit 2024-09-21T11:56:36.778320+0000 mon.smithi078 (mon.0) 721 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:37 smithi195 bash[25267]: audit 2024-09-21T11:56:36.778320+0000 mon.smithi078 (mon.0) 721 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:37 smithi195 bash[25267]: audit 2024-09-21T11:56:36.785839+0000 mon.smithi078 (mon.0) 722 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:38.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:37 smithi195 bash[25267]: audit 2024-09-21T11:56:36.785839+0000 mon.smithi078 (mon.0) 722 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:38.447 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:56:38.447 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":40,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","created":"2024-09-21T11:50:16.544934+0000","modified":"2024-09-21T11:55:53.515389+0000","last_up_change":"2024-09-21T11:55:49.489826+0000","last_in_change":"2024-09-21T11:54:47.580070+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":12,"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":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-21T11:55:29.809564+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"23","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"101e5d22-0753-49b4-b862-2f23bd9e5bdb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6800","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6801","nonce":91010593}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6802","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6803","nonce":91010593}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6806","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6807","nonce":91010593}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6804","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6805","nonce":91010593}]},"public_addr":"172.21.15.195:6801/91010593","cluster_addr":"172.21.15.195:6803/91010593","heartbeat_back_addr":"172.21.15.195:6807/91010593","heartbeat_front_addr":"172.21.15.195:6805/91010593","state":["exists","up"]},{"osd":1,"uuid":"26924429-e962-4cbc-8fd8-57e5c6bbfe7b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6802","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6803","nonce":1249600971}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6804","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6805","nonce":1249600971}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6808","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6809","nonce":1249600971}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6806","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6807","nonce":1249600971}]},"public_addr":"172.21.15.78:6803/1249600971","cluster_addr":"172.21.15.78:6805/1249600971","heartbeat_back_addr":"172.21.15.78:6809/1249600971","heartbeat_front_addr":"172.21.15.78:6807/1249600971","state":["exists","up"]},{"osd":2,"uuid":"76b3e31f-2dba-453f-834f-b949fd6fd6cd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6808","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6809","nonce":485008266}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6810","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6811","nonce":485008266}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6814","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6815","nonce":485008266}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6812","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6813","nonce":485008266}]},"public_addr":"172.21.15.195:6809/485008266","cluster_addr":"172.21.15.195:6811/485008266","heartbeat_back_addr":"172.21.15.195:6815/485008266","heartbeat_front_addr":"172.21.15.195:6813/485008266","state":["exists","up"]},{"osd":3,"uuid":"7aaa842d-af2a-4229-96b8-37aa67cc1e10","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.78:6810","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6811","nonce":1098279949}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6812","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6813","nonce":1098279949}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6816","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6817","nonce":1098279949}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6814","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6815","nonce":1098279949}]},"public_addr":"172.21.15.78:6811/1098279949","cluster_addr":"172.21.15.78:6813/1098279949","heartbeat_back_addr":"172.21.15.78:6817/1098279949","heartbeat_front_addr":"172.21.15.78:6815/1098279949","state":["exists","up"]},{"osd":4,"uuid":"3329677b-2066-420a-abfc-66ed1b02c330","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.195:6816","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6817","nonce":1940594164}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6818","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6819","nonce":1940594164}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6822","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6823","nonce":1940594164}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6820","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6821","nonce":1940594164}]},"public_addr":"172.21.15.195:6817/1940594164","cluster_addr":"172.21.15.195:6819/1940594164","heartbeat_back_addr":"172.21.15.195:6823/1940594164","heartbeat_front_addr":"172.21.15.195:6821/1940594164","state":["exists","up"]},{"osd":5,"uuid":"701423e0-1207-4510-823c-1fb4fde3147d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6818","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6819","nonce":2184387440}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6820","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6821","nonce":2184387440}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6824","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6825","nonce":2184387440}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6822","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6823","nonce":2184387440}]},"public_addr":"172.21.15.78:6819/2184387440","cluster_addr":"172.21.15.78:6821/2184387440","heartbeat_back_addr":"172.21.15.78:6825/2184387440","heartbeat_front_addr":"172.21.15.78:6823/2184387440","state":["exists","up"]},{"osd":6,"uuid":"bbab3e6a-a252-468d-be07-8dd6b7267540","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6824","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6825","nonce":550730223}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6826","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6827","nonce":550730223}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6830","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6831","nonce":550730223}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6828","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6829","nonce":550730223}]},"public_addr":"172.21.15.195:6825/550730223","cluster_addr":"172.21.15.195:6827/550730223","heartbeat_back_addr":"172.21.15.195:6831/550730223","heartbeat_front_addr":"172.21.15.195:6829/550730223","state":["exists","up"]},{"osd":7,"uuid":"86babd56-c65b-429f-aec4-e92f3dab799d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6826","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6827","nonce":2966446609}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6828","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6829","nonce":2966446609}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6832","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6833","nonce":2966446609}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6830","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6831","nonce":2966446609}]},"public_addr":"172.21.15.78:6827/2966446609","cluster_addr":"172.21.15.78:6829/2966446609","heartbeat_back_addr":"172.21.15.78:6833/2966446609","heartbeat_front_addr":"172.21.15.78:6831/2966446609","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:20.609926+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:27.262293+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:27.548572+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:32.232656+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:32.647759+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:39.588282+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:39.369144+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:47.631744+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.78:0/2188983261":"2024-09-22T11:53:01.381095+0000","172.21.15.78:6800/901833353":"2024-09-22T11:50:44.457655+0000","172.21.15.78:0/3363769339":"2024-09-22T11:51:33.573640+0000","172.21.15.78:0/24794965":"2024-09-22T11:50:44.457655+0000","172.21.15.78:0/1105876892":"2024-09-22T11:50:44.457655+0000","172.21.15.78:0/2119183289":"2024-09-22T11:50:44.457655+0000","172.21.15.78:6801/901833353":"2024-09-22T11:50:44.457655+0000","172.21.15.78:6800/2931378487":"2024-09-22T11:51:33.573640+0000","172.21.15.78:6801/4148543437":"2024-09-22T11:53:01.381095+0000","172.21.15.78:0/390102275":"2024-09-22T11:53:01.381095+0000","172.21.15.78:0/2467594425":"2024-09-22T11:51:33.573640+0000","172.21.15.78:6801/2931378487":"2024-09-22T11:51:33.573640+0000","172.21.15.78:0/3890204594":"2024-09-22T11:53:01.381095+0000","172.21.15.78:0/2722493798":"2024-09-22T11:51:33.573640+0000","172.21.15.78:6800/4148543437":"2024-09-22T11:53:01.381095+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-21T11:56:38.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:38 smithi195 bash[25267]: cluster 2024-09-21T11:56:37.437920+0000 mgr.smithi078.aqnwdz (mgr.14203) 169 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:38.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:38 smithi195 bash[25267]: cluster 2024-09-21T11:56:37.437920+0000 mgr.smithi078.aqnwdz (mgr.14203) 169 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:38.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:38 smithi195 bash[25267]: audit 2024-09-21T11:56:38.446330+0000 mon.smithi078 (mon.0) 723 : audit [DBG] from='client.? 172.21.15.78:0/418963554' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:56:38.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:38 smithi195 bash[25267]: audit 2024-09-21T11:56:38.446330+0000 mon.smithi078 (mon.0) 723 : audit [DBG] from='client.? 172.21.15.78:0/418963554' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:56:39.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:38 smithi078 bash[20010]: cluster 2024-09-21T11:56:37.437920+0000 mgr.smithi078.aqnwdz (mgr.14203) 169 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:39.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:38 smithi078 bash[20010]: cluster 2024-09-21T11:56:37.437920+0000 mgr.smithi078.aqnwdz (mgr.14203) 169 : cluster [DBG] pgmap v136: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:39.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:38 smithi078 bash[20010]: audit 2024-09-21T11:56:38.446330+0000 mon.smithi078 (mon.0) 723 : audit [DBG] from='client.? 172.21.15.78:0/418963554' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:56:39.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:38 smithi078 bash[20010]: audit 2024-09-21T11:56:38.446330+0000 mon.smithi078 (mon.0) 723 : audit [DBG] from='client.? 172.21.15.78:0/418963554' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:56:39.328 INFO:tasks.cephadm.ceph_manager.ceph:all up! 2024-09-21T11:56:39.329 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd dump --format=json 2024-09-21T11:56:40.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:39 smithi078 bash[20010]: audit 2024-09-21T11:56:38.872347+0000 mon.smithi078 (mon.0) 724 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:40.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:39 smithi078 bash[20010]: audit 2024-09-21T11:56:38.872347+0000 mon.smithi078 (mon.0) 724 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:40.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:39 smithi078 bash[20010]: audit 2024-09-21T11:56:38.882038+0000 mon.smithi078 (mon.0) 725 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:40.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:39 smithi078 bash[20010]: audit 2024-09-21T11:56:38.882038+0000 mon.smithi078 (mon.0) 725 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:40.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:39 smithi195 bash[25267]: audit 2024-09-21T11:56:38.872347+0000 mon.smithi078 (mon.0) 724 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:40.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:39 smithi195 bash[25267]: audit 2024-09-21T11:56:38.872347+0000 mon.smithi078 (mon.0) 724 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:40.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:39 smithi195 bash[25267]: audit 2024-09-21T11:56:38.882038+0000 mon.smithi078 (mon.0) 725 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:40.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:39 smithi195 bash[25267]: audit 2024-09-21T11:56:38.882038+0000 mon.smithi078 (mon.0) 725 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:56:41.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:40 smithi078 bash[20010]: cluster 2024-09-21T11:56:39.438461+0000 mgr.smithi078.aqnwdz (mgr.14203) 170 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:41.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:40 smithi078 bash[20010]: cluster 2024-09-21T11:56:39.438461+0000 mgr.smithi078.aqnwdz (mgr.14203) 170 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:41.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:40 smithi195 bash[25267]: cluster 2024-09-21T11:56:39.438461+0000 mgr.smithi078.aqnwdz (mgr.14203) 170 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:41.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:40 smithi195 bash[25267]: cluster 2024-09-21T11:56:39.438461+0000 mgr.smithi078.aqnwdz (mgr.14203) 170 : cluster [DBG] pgmap v137: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:43.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:42 smithi078 bash[20010]: cluster 2024-09-21T11:56:41.439026+0000 mgr.smithi078.aqnwdz (mgr.14203) 171 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:43.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:42 smithi078 bash[20010]: cluster 2024-09-21T11:56:41.439026+0000 mgr.smithi078.aqnwdz (mgr.14203) 171 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:43.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:42 smithi195 bash[25267]: cluster 2024-09-21T11:56:41.439026+0000 mgr.smithi078.aqnwdz (mgr.14203) 171 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:43.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:42 smithi195 bash[25267]: cluster 2024-09-21T11:56:41.439026+0000 mgr.smithi078.aqnwdz (mgr.14203) 171 : cluster [DBG] pgmap v138: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:44.156 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:45.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:44 smithi078 bash[20010]: cluster 2024-09-21T11:56:43.439681+0000 mgr.smithi078.aqnwdz (mgr.14203) 172 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:45.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:44 smithi078 bash[20010]: cluster 2024-09-21T11:56:43.439681+0000 mgr.smithi078.aqnwdz (mgr.14203) 172 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:45.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:44 smithi195 bash[25267]: cluster 2024-09-21T11:56:43.439681+0000 mgr.smithi078.aqnwdz (mgr.14203) 172 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:45.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:44 smithi195 bash[25267]: cluster 2024-09-21T11:56:43.439681+0000 mgr.smithi078.aqnwdz (mgr.14203) 172 : cluster [DBG] pgmap v139: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:45.614 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:56:45.614 INFO:teuthology.orchestra.run.smithi078.stdout:{"epoch":40,"fsid":"6b15370c-780f-11ef-baf6-efdc52797490","created":"2024-09-21T11:50:16.544934+0000","modified":"2024-09-21T11:55:53.515389+0000","last_up_change":"2024-09-21T11:55:49.489826+0000","last_in_change":"2024-09-21T11:54:47.580070+0000","flags":"sortbitwise,recovery_deletes,purged_snapdirs,pglog_hardlimit","flags_num":5799936,"flags_set":["pglog_hardlimit","purged_snapdirs","recovery_deletes","sortbitwise"],"crush_version":12,"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":"squid","allow_crimson":false,"pools":[{"pool":1,"pool_name":".mgr","create_time":"2024-09-21T11:55:29.809564+0000","flags":1,"flags_names":"hashpspool","type":1,"size":3,"min_size":2,"crush_rule":0,"peering_crush_bucket_count":0,"peering_crush_bucket_target":0,"peering_crush_bucket_barrier":0,"peering_crush_bucket_mandatory_member":2147483647,"is_stretch_pool":false,"object_hash":2,"pg_autoscale_mode":"off","pg_num":1,"pg_placement_num":1,"pg_placement_num_target":1,"pg_num_target":1,"pg_num_pending":1,"last_pg_merge_meta":{"source_pgid":"0.0","ready_epoch":0,"last_epoch_started":0,"last_epoch_clean":0,"source_version":"0'0","target_version":"0'0"},"last_change":"23","last_force_op_resend":"0","last_force_op_resend_prenautilus":"0","last_force_op_resend_preluminous":"0","auid":0,"snap_mode":"selfmanaged","snap_seq":0,"snap_epoch":0,"pool_snaps":[],"removed_snaps":"[]","quota_max_bytes":0,"quota_max_objects":0,"tiers":[],"tier_of":-1,"read_tier":-1,"write_tier":-1,"cache_mode":"none","target_max_bytes":0,"target_max_objects":0,"cache_target_dirty_ratio_micro":400000,"cache_target_dirty_high_ratio_micro":600000,"cache_target_full_ratio_micro":800000,"cache_min_flush_age":0,"cache_min_evict_age":0,"erasure_code_profile":"","hit_set_params":{"type":"none"},"hit_set_period":0,"hit_set_count":0,"use_gmt_hitset":true,"min_read_recency_for_promote":0,"min_write_recency_for_promote":0,"hit_set_grade_decay_rate":0,"hit_set_search_last_n":0,"grade_table":[],"stripe_width":0,"expected_num_objects":0,"fast_read":false,"options":{"pg_num_max":32,"pg_num_min":1},"application_metadata":{"mgr":{}},"read_balance":{"score_type":"Fair distribution","score_acting":7.8899998664855957,"score_stable":7.8899998664855957,"optimal_score":0.37999999523162842,"raw_score_acting":3,"raw_score_stable":3,"primary_affinity_weighted":1,"average_primary_affinity":1,"average_primary_affinity_weighted":1}}],"osds":[{"osd":0,"uuid":"101e5d22-0753-49b4-b862-2f23bd9e5bdb","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":16,"up_thru":38,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6800","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6801","nonce":91010593}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6802","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6803","nonce":91010593}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6806","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6807","nonce":91010593}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6804","nonce":91010593},{"type":"v1","addr":"172.21.15.195:6805","nonce":91010593}]},"public_addr":"172.21.15.195:6801/91010593","cluster_addr":"172.21.15.195:6803/91010593","heartbeat_back_addr":"172.21.15.195:6807/91010593","heartbeat_front_addr":"172.21.15.195:6805/91010593","state":["exists","up"]},{"osd":1,"uuid":"26924429-e962-4cbc-8fd8-57e5c6bbfe7b","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":28,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6802","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6803","nonce":1249600971}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6804","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6805","nonce":1249600971}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6808","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6809","nonce":1249600971}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6806","nonce":1249600971},{"type":"v1","addr":"172.21.15.78:6807","nonce":1249600971}]},"public_addr":"172.21.15.78:6803/1249600971","cluster_addr":"172.21.15.78:6805/1249600971","heartbeat_back_addr":"172.21.15.78:6809/1249600971","heartbeat_front_addr":"172.21.15.78:6807/1249600971","state":["exists","up"]},{"osd":2,"uuid":"76b3e31f-2dba-453f-834f-b949fd6fd6cd","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":20,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6808","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6809","nonce":485008266}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6810","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6811","nonce":485008266}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6814","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6815","nonce":485008266}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6812","nonce":485008266},{"type":"v1","addr":"172.21.15.195:6813","nonce":485008266}]},"public_addr":"172.21.15.195:6809/485008266","cluster_addr":"172.21.15.195:6811/485008266","heartbeat_back_addr":"172.21.15.195:6815/485008266","heartbeat_front_addr":"172.21.15.195:6813/485008266","state":["exists","up"]},{"osd":3,"uuid":"7aaa842d-af2a-4229-96b8-37aa67cc1e10","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.78:6810","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6811","nonce":1098279949}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6812","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6813","nonce":1098279949}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6816","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6817","nonce":1098279949}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6814","nonce":1098279949},{"type":"v1","addr":"172.21.15.78:6815","nonce":1098279949}]},"public_addr":"172.21.15.78:6811/1098279949","cluster_addr":"172.21.15.78:6813/1098279949","heartbeat_back_addr":"172.21.15.78:6817/1098279949","heartbeat_front_addr":"172.21.15.78:6815/1098279949","state":["exists","up"]},{"osd":4,"uuid":"3329677b-2066-420a-abfc-66ed1b02c330","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.195:6816","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6817","nonce":1940594164}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6818","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6819","nonce":1940594164}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6822","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6823","nonce":1940594164}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6820","nonce":1940594164},{"type":"v1","addr":"172.21.15.195:6821","nonce":1940594164}]},"public_addr":"172.21.15.195:6817/1940594164","cluster_addr":"172.21.15.195:6819/1940594164","heartbeat_back_addr":"172.21.15.195:6823/1940594164","heartbeat_front_addr":"172.21.15.195:6821/1940594164","state":["exists","up"]},{"osd":5,"uuid":"701423e0-1207-4510-823c-1fb4fde3147d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6818","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6819","nonce":2184387440}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6820","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6821","nonce":2184387440}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6824","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6825","nonce":2184387440}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6822","nonce":2184387440},{"type":"v1","addr":"172.21.15.78:6823","nonce":2184387440}]},"public_addr":"172.21.15.78:6819/2184387440","cluster_addr":"172.21.15.78:6821/2184387440","heartbeat_back_addr":"172.21.15.78:6825/2184387440","heartbeat_front_addr":"172.21.15.78:6823/2184387440","state":["exists","up"]},{"osd":6,"uuid":"bbab3e6a-a252-468d-be07-8dd6b7267540","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":32,"up_thru":0,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6824","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6825","nonce":550730223}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6826","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6827","nonce":550730223}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6830","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6831","nonce":550730223}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.195:6828","nonce":550730223},{"type":"v1","addr":"172.21.15.195:6829","nonce":550730223}]},"public_addr":"172.21.15.195:6825/550730223","cluster_addr":"172.21.15.195:6827/550730223","heartbeat_back_addr":"172.21.15.195:6831/550730223","heartbeat_front_addr":"172.21.15.195:6829/550730223","state":["exists","up"]},{"osd":7,"uuid":"86babd56-c65b-429f-aec4-e92f3dab799d","up":1,"in":1,"weight":1,"primary_affinity":1,"last_clean_begin":0,"last_clean_end":0,"up_from":36,"up_thru":39,"down_at":0,"lost_at":0,"public_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6826","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6827","nonce":2966446609}]},"cluster_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6828","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6829","nonce":2966446609}]},"heartbeat_back_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6832","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6833","nonce":2966446609}]},"heartbeat_front_addrs":{"addrvec":[{"type":"v2","addr":"172.21.15.78:6830","nonce":2966446609},{"type":"v1","addr":"172.21.15.78:6831","nonce":2966446609}]},"public_addr":"172.21.15.78:6827/2966446609","cluster_addr":"172.21.15.78:6829/2966446609","heartbeat_back_addr":"172.21.15.78:6833/2966446609","heartbeat_front_addr":"172.21.15.78:6831/2966446609","state":["exists","up"]}],"osd_xinfo":[{"osd":0,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:20.609926+0000","dead_epoch":0},{"osd":1,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:27.262293+0000","dead_epoch":0},{"osd":2,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:27.548572+0000","dead_epoch":0},{"osd":3,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:32.232656+0000","dead_epoch":0},{"osd":4,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:32.647759+0000","dead_epoch":0},{"osd":5,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:39.588282+0000","dead_epoch":0},{"osd":6,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:39.369144+0000","dead_epoch":0},{"osd":7,"down_stamp":"0.000000","laggy_probability":0,"laggy_interval":0,"features":4540719139924082687,"old_weight":0,"last_purged_snaps_scrub":"2024-09-21T11:55:47.631744+0000","dead_epoch":0}],"pg_upmap":[],"pg_upmap_items":[],"pg_upmap_primaries":[],"pg_temp":[],"primary_temp":[],"blocklist":{"172.21.15.78:0/2188983261":"2024-09-22T11:53:01.381095+0000","172.21.15.78:6800/901833353":"2024-09-22T11:50:44.457655+0000","172.21.15.78:0/3363769339":"2024-09-22T11:51:33.573640+0000","172.21.15.78:0/24794965":"2024-09-22T11:50:44.457655+0000","172.21.15.78:0/1105876892":"2024-09-22T11:50:44.457655+0000","172.21.15.78:0/2119183289":"2024-09-22T11:50:44.457655+0000","172.21.15.78:6801/901833353":"2024-09-22T11:50:44.457655+0000","172.21.15.78:6800/2931378487":"2024-09-22T11:51:33.573640+0000","172.21.15.78:6801/4148543437":"2024-09-22T11:53:01.381095+0000","172.21.15.78:0/390102275":"2024-09-22T11:53:01.381095+0000","172.21.15.78:0/2467594425":"2024-09-22T11:51:33.573640+0000","172.21.15.78:6801/2931378487":"2024-09-22T11:51:33.573640+0000","172.21.15.78:0/3890204594":"2024-09-22T11:53:01.381095+0000","172.21.15.78:0/2722493798":"2024-09-22T11:51:33.573640+0000","172.21.15.78:6800/4148543437":"2024-09-22T11:53:01.381095+0000"},"range_blocklist":{},"erasure_code_profiles":{"default":{"crush-failure-domain":"osd","k":"2","m":"1","plugin":"jerasure","technique":"reed_sol_van"}},"removed_snaps_queue":[],"new_removed_snaps":[],"new_purged_snaps":[],"crush_node_flags":{},"device_class_flags":{},"stretch_mode":{"stretch_mode_enabled":false,"stretch_bucket_count":0,"degraded_stretch_mode":0,"recovering_stretch_mode":0,"stretch_mode_bucket":0}} 2024-09-21T11:56:46.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:45 smithi078 bash[20010]: audit 2024-09-21T11:56:45.612585+0000 mon.smithi078 (mon.0) 726 : audit [DBG] from='client.? 172.21.15.78:0/502773199' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:56:46.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:45 smithi078 bash[20010]: audit 2024-09-21T11:56:45.612585+0000 mon.smithi078 (mon.0) 726 : audit [DBG] from='client.? 172.21.15.78:0/502773199' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:56:46.248 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph tell osd.0 flush_pg_stats 2024-09-21T11:56:46.249 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph tell osd.1 flush_pg_stats 2024-09-21T11:56:46.249 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph tell osd.2 flush_pg_stats 2024-09-21T11:56:46.250 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph tell osd.3 flush_pg_stats 2024-09-21T11:56:46.250 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph tell osd.4 flush_pg_stats 2024-09-21T11:56:46.250 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph tell osd.5 flush_pg_stats 2024-09-21T11:56:46.251 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph tell osd.6 flush_pg_stats 2024-09-21T11:56:46.251 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph tell osd.7 flush_pg_stats 2024-09-21T11:56:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:45 smithi195 bash[25267]: audit 2024-09-21T11:56:45.612585+0000 mon.smithi078 (mon.0) 726 : audit [DBG] from='client.? 172.21.15.78:0/502773199' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:56:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:45 smithi195 bash[25267]: audit 2024-09-21T11:56:45.612585+0000 mon.smithi078 (mon.0) 726 : audit [DBG] from='client.? 172.21.15.78:0/502773199' entity='client.admin' cmd={"prefix": "osd dump", "format": "json"} : dispatch 2024-09-21T11:56:47.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:46 smithi078 bash[20010]: cluster 2024-09-21T11:56:45.440057+0000 mgr.smithi078.aqnwdz (mgr.14203) 173 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:47.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:46 smithi078 bash[20010]: cluster 2024-09-21T11:56:45.440057+0000 mgr.smithi078.aqnwdz (mgr.14203) 173 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:47.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:46 smithi078 bash[20010]: audit 2024-09-21T11:56:46.728766+0000 mon.smithi078 (mon.0) 727 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:47.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:46 smithi078 bash[20010]: audit 2024-09-21T11:56:46.728766+0000 mon.smithi078 (mon.0) 727 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:47.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:46 smithi195 bash[25267]: cluster 2024-09-21T11:56:45.440057+0000 mgr.smithi078.aqnwdz (mgr.14203) 173 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:47.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:46 smithi195 bash[25267]: cluster 2024-09-21T11:56:45.440057+0000 mgr.smithi078.aqnwdz (mgr.14203) 173 : cluster [DBG] pgmap v140: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:47.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:46 smithi195 bash[25267]: audit 2024-09-21T11:56:46.728766+0000 mon.smithi078 (mon.0) 727 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:47.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:46 smithi195 bash[25267]: audit 2024-09-21T11:56:46.728766+0000 mon.smithi078 (mon.0) 727 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:56:49.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:48 smithi078 bash[20010]: cluster 2024-09-21T11:56:47.440609+0000 mgr.smithi078.aqnwdz (mgr.14203) 174 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:49.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:48 smithi078 bash[20010]: cluster 2024-09-21T11:56:47.440609+0000 mgr.smithi078.aqnwdz (mgr.14203) 174 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:49.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:48 smithi195 bash[25267]: cluster 2024-09-21T11:56:47.440609+0000 mgr.smithi078.aqnwdz (mgr.14203) 174 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:49.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:48 smithi195 bash[25267]: cluster 2024-09-21T11:56:47.440609+0000 mgr.smithi078.aqnwdz (mgr.14203) 174 : cluster [DBG] pgmap v141: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:51.207 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:51.207 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:51.209 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:51.209 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:51.209 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:51.210 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:51.213 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:51.213 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:56:51.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:50 smithi195 bash[25267]: cluster 2024-09-21T11:56:49.441182+0000 mgr.smithi078.aqnwdz (mgr.14203) 175 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:51.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:50 smithi195 bash[25267]: cluster 2024-09-21T11:56:49.441182+0000 mgr.smithi078.aqnwdz (mgr.14203) 175 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:51.391 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:50 smithi078 bash[20010]: cluster 2024-09-21T11:56:49.441182+0000 mgr.smithi078.aqnwdz (mgr.14203) 175 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:51.391 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:50 smithi078 bash[20010]: cluster 2024-09-21T11:56:49.441182+0000 mgr.smithi078.aqnwdz (mgr.14203) 175 : cluster [DBG] pgmap v142: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:53.231 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:52 smithi078 bash[20010]: cluster 2024-09-21T11:56:51.441846+0000 mgr.smithi078.aqnwdz (mgr.14203) 176 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:53.231 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:52 smithi078 bash[20010]: cluster 2024-09-21T11:56:51.441846+0000 mgr.smithi078.aqnwdz (mgr.14203) 176 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:53.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:52 smithi195 bash[25267]: cluster 2024-09-21T11:56:51.441846+0000 mgr.smithi078.aqnwdz (mgr.14203) 176 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:53.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:52 smithi195 bash[25267]: cluster 2024-09-21T11:56:51.441846+0000 mgr.smithi078.aqnwdz (mgr.14203) 176 : cluster [DBG] pgmap v143: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:54.947 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:54 smithi078 bash[20010]: cluster 2024-09-21T11:56:53.442421+0000 mgr.smithi078.aqnwdz (mgr.14203) 177 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:54.947 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:54 smithi078 bash[20010]: cluster 2024-09-21T11:56:53.442421+0000 mgr.smithi078.aqnwdz (mgr.14203) 177 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:55.224 INFO:teuthology.orchestra.run.smithi078.stdout:85899345939 2024-09-21T11:56:55.225 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.2 2024-09-21T11:56:55.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:54 smithi195 bash[25267]: cluster 2024-09-21T11:56:53.442421+0000 mgr.smithi078.aqnwdz (mgr.14203) 177 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:55.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:54 smithi195 bash[25267]: cluster 2024-09-21T11:56:53.442421+0000 mgr.smithi078.aqnwdz (mgr.14203) 177 : cluster [DBG] pgmap v144: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:56.523 INFO:teuthology.orchestra.run.smithi078.stdout:154618822671 2024-09-21T11:56:56.523 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.7 2024-09-21T11:56:56.828 INFO:teuthology.orchestra.run.smithi078.stdout:137438953490 2024-09-21T11:56:56.829 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.5 2024-09-21T11:56:57.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:56 smithi078 bash[20010]: cluster 2024-09-21T11:56:55.442782+0000 mgr.smithi078.aqnwdz (mgr.14203) 178 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:57.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:56 smithi078 bash[20010]: cluster 2024-09-21T11:56:55.442782+0000 mgr.smithi078.aqnwdz (mgr.14203) 178 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:57.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:56 smithi195 bash[25267]: cluster 2024-09-21T11:56:55.442782+0000 mgr.smithi078.aqnwdz (mgr.14203) 178 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:57.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:56 smithi195 bash[25267]: cluster 2024-09-21T11:56:55.442782+0000 mgr.smithi078.aqnwdz (mgr.14203) 178 : cluster [DBG] pgmap v145: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:57.689 INFO:teuthology.orchestra.run.smithi078.stdout:85899345940 2024-09-21T11:56:57.689 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.1 2024-09-21T11:56:58.322 INFO:teuthology.orchestra.run.smithi078.stdout:68719476758 2024-09-21T11:56:58.322 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.0 2024-09-21T11:56:58.632 INFO:teuthology.orchestra.run.smithi078.stdout:137438953490 2024-09-21T11:56:58.633 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.6 2024-09-21T11:56:59.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:58 smithi078 bash[20010]: cluster 2024-09-21T11:56:57.443301+0000 mgr.smithi078.aqnwdz (mgr.14203) 179 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:59.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:56:58 smithi078 bash[20010]: cluster 2024-09-21T11:56:57.443301+0000 mgr.smithi078.aqnwdz (mgr.14203) 179 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:59.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:58 smithi195 bash[25267]: cluster 2024-09-21T11:56:57.443301+0000 mgr.smithi078.aqnwdz (mgr.14203) 179 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:59.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:56:58 smithi195 bash[25267]: cluster 2024-09-21T11:56:57.443301+0000 mgr.smithi078.aqnwdz (mgr.14203) 179 : cluster [DBG] pgmap v146: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:56:59.708 INFO:teuthology.orchestra.run.smithi078.stdout:107374182418 2024-09-21T11:56:59.709 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.3 2024-09-21T11:56:59.736 INFO:teuthology.orchestra.run.smithi078.stdout:107374182418 2024-09-21T11:56:59.736 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph osd last-stat-seq osd.4 2024-09-21T11:57:01.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:00 smithi195 bash[25267]: cluster 2024-09-21T11:56:59.443995+0000 mgr.smithi078.aqnwdz (mgr.14203) 180 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:01.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:00 smithi195 bash[25267]: cluster 2024-09-21T11:56:59.443995+0000 mgr.smithi078.aqnwdz (mgr.14203) 180 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:01.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:00 smithi078 bash[20010]: cluster 2024-09-21T11:56:59.443995+0000 mgr.smithi078.aqnwdz (mgr.14203) 180 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:01.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:00 smithi078 bash[20010]: cluster 2024-09-21T11:56:59.443995+0000 mgr.smithi078.aqnwdz (mgr.14203) 180 : cluster [DBG] pgmap v147: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:02.248 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:02.249 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:02.250 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:02.250 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:02.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:01 smithi195 bash[25267]: audit 2024-09-21T11:57:01.732157+0000 mon.smithi078 (mon.0) 728 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:02.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:01 smithi195 bash[25267]: audit 2024-09-21T11:57:01.732157+0000 mon.smithi078 (mon.0) 728 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:02.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:01 smithi078 bash[20010]: audit 2024-09-21T11:57:01.732157+0000 mon.smithi078 (mon.0) 728 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:02.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:01 smithi078 bash[20010]: audit 2024-09-21T11:57:01.732157+0000 mon.smithi078 (mon.0) 728 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:03.270 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:03.270 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:03.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:02 smithi195 bash[25267]: cluster 2024-09-21T11:57:01.444536+0000 mgr.smithi078.aqnwdz (mgr.14203) 181 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:02 smithi195 bash[25267]: cluster 2024-09-21T11:57:01.444536+0000 mgr.smithi078.aqnwdz (mgr.14203) 181 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:03.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:02 smithi078 bash[20010]: cluster 2024-09-21T11:57:01.444536+0000 mgr.smithi078.aqnwdz (mgr.14203) 181 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:03.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:02 smithi078 bash[20010]: cluster 2024-09-21T11:57:01.444536+0000 mgr.smithi078.aqnwdz (mgr.14203) 181 : cluster [DBG] pgmap v148: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:04.288 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:04.289 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:05.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:04 smithi195 bash[25267]: cluster 2024-09-21T11:57:03.445040+0000 mgr.smithi078.aqnwdz (mgr.14203) 182 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:04 smithi195 bash[25267]: cluster 2024-09-21T11:57:03.445040+0000 mgr.smithi078.aqnwdz (mgr.14203) 182 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:05.454 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:04 smithi078 bash[20010]: cluster 2024-09-21T11:57:03.445040+0000 mgr.smithi078.aqnwdz (mgr.14203) 182 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:05.454 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:04 smithi078 bash[20010]: cluster 2024-09-21T11:57:03.445040+0000 mgr.smithi078.aqnwdz (mgr.14203) 182 : cluster [DBG] pgmap v149: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:06.287 INFO:teuthology.orchestra.run.smithi078.stdout:137438953492 2024-09-21T11:57:06.345 INFO:teuthology.orchestra.run.smithi078.stdout:85899345943 2024-09-21T11:57:06.859 INFO:teuthology.orchestra.run.smithi078.stdout:154618822674 2024-09-21T11:57:07.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:06 smithi078 bash[20010]: cluster 2024-09-21T11:57:05.445611+0000 mgr.smithi078.aqnwdz (mgr.14203) 183 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:07.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:06 smithi078 bash[20010]: cluster 2024-09-21T11:57:05.445611+0000 mgr.smithi078.aqnwdz (mgr.14203) 183 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:07.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:06 smithi078 bash[20010]: audit 2024-09-21T11:57:06.287568+0000 mon.smithi078 (mon.0) 729 : audit [DBG] from='client.? 172.21.15.78:0/4182647069' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-21T11:57:07.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:06 smithi078 bash[20010]: audit 2024-09-21T11:57:06.287568+0000 mon.smithi078 (mon.0) 729 : audit [DBG] from='client.? 172.21.15.78:0/4182647069' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-21T11:57:07.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:06 smithi078 bash[20010]: audit 2024-09-21T11:57:06.345879+0000 mon.smithi078 (mon.0) 730 : audit [DBG] from='client.? 172.21.15.78:0/1700329148' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-21T11:57:07.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:06 smithi078 bash[20010]: audit 2024-09-21T11:57:06.345879+0000 mon.smithi078 (mon.0) 730 : audit [DBG] from='client.? 172.21.15.78:0/1700329148' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-21T11:57:07.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:06 smithi078 bash[20010]: audit 2024-09-21T11:57:06.859588+0000 mon.smithi078 (mon.0) 731 : audit [DBG] from='client.? 172.21.15.78:0/838650009' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-21T11:57:07.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:06 smithi078 bash[20010]: audit 2024-09-21T11:57:06.859588+0000 mon.smithi078 (mon.0) 731 : audit [DBG] from='client.? 172.21.15.78:0/838650009' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-21T11:57:07.170 INFO:teuthology.orchestra.run.smithi078.stdout:137438953492 2024-09-21T11:57:07.255 INFO:teuthology.orchestra.run.smithi078.stdout:85899345942 2024-09-21T11:57:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:06 smithi195 bash[25267]: cluster 2024-09-21T11:57:05.445611+0000 mgr.smithi078.aqnwdz (mgr.14203) 183 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:06 smithi195 bash[25267]: cluster 2024-09-21T11:57:05.445611+0000 mgr.smithi078.aqnwdz (mgr.14203) 183 : cluster [DBG] pgmap v150: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:06 smithi195 bash[25267]: audit 2024-09-21T11:57:06.287568+0000 mon.smithi078 (mon.0) 729 : audit [DBG] from='client.? 172.21.15.78:0/4182647069' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-21T11:57:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:06 smithi195 bash[25267]: audit 2024-09-21T11:57:06.287568+0000 mon.smithi078 (mon.0) 729 : audit [DBG] from='client.? 172.21.15.78:0/4182647069' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 5} : dispatch 2024-09-21T11:57:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:06 smithi195 bash[25267]: audit 2024-09-21T11:57:06.345879+0000 mon.smithi078 (mon.0) 730 : audit [DBG] from='client.? 172.21.15.78:0/1700329148' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-21T11:57:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:06 smithi195 bash[25267]: audit 2024-09-21T11:57:06.345879+0000 mon.smithi078 (mon.0) 730 : audit [DBG] from='client.? 172.21.15.78:0/1700329148' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 1} : dispatch 2024-09-21T11:57:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:06 smithi195 bash[25267]: audit 2024-09-21T11:57:06.859588+0000 mon.smithi078 (mon.0) 731 : audit [DBG] from='client.? 172.21.15.78:0/838650009' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-21T11:57:07.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:06 smithi195 bash[25267]: audit 2024-09-21T11:57:06.859588+0000 mon.smithi078 (mon.0) 731 : audit [DBG] from='client.? 172.21.15.78:0/838650009' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 7} : dispatch 2024-09-21T11:57:07.686 INFO:teuthology.orchestra.run.smithi078.stdout:107374182420 2024-09-21T11:57:08.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:07 smithi078 bash[20010]: audit 2024-09-21T11:57:07.170731+0000 mon.smithi078 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.78:0/1697401315' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-21T11:57:08.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:07 smithi078 bash[20010]: audit 2024-09-21T11:57:07.170731+0000 mon.smithi078 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.78:0/1697401315' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-21T11:57:08.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:07 smithi078 bash[20010]: audit 2024-09-21T11:57:07.255838+0000 mon.smithi078 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.78:0/3763558966' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-21T11:57:08.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:07 smithi078 bash[20010]: audit 2024-09-21T11:57:07.255838+0000 mon.smithi078 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.78:0/3763558966' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-21T11:57:08.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:07 smithi078 bash[20010]: audit 2024-09-21T11:57:07.686829+0000 mon.smithi078 (mon.0) 734 : audit [DBG] from='client.? 172.21.15.78:0/323809999' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-21T11:57:08.332 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:07 smithi078 bash[20010]: audit 2024-09-21T11:57:07.686829+0000 mon.smithi078 (mon.0) 734 : audit [DBG] from='client.? 172.21.15.78:0/323809999' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-21T11:57:08.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:07 smithi195 bash[25267]: audit 2024-09-21T11:57:07.170731+0000 mon.smithi078 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.78:0/1697401315' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-21T11:57:08.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:07 smithi195 bash[25267]: audit 2024-09-21T11:57:07.170731+0000 mon.smithi078 (mon.0) 732 : audit [DBG] from='client.? 172.21.15.78:0/1697401315' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 6} : dispatch 2024-09-21T11:57:08.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:07 smithi195 bash[25267]: audit 2024-09-21T11:57:07.255838+0000 mon.smithi078 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.78:0/3763558966' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-21T11:57:08.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:07 smithi195 bash[25267]: audit 2024-09-21T11:57:07.255838+0000 mon.smithi078 (mon.0) 733 : audit [DBG] from='client.? 172.21.15.78:0/3763558966' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 2} : dispatch 2024-09-21T11:57:08.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:07 smithi195 bash[25267]: audit 2024-09-21T11:57:07.686829+0000 mon.smithi078 (mon.0) 734 : audit [DBG] from='client.? 172.21.15.78:0/323809999' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-21T11:57:08.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:07 smithi195 bash[25267]: audit 2024-09-21T11:57:07.686829+0000 mon.smithi078 (mon.0) 734 : audit [DBG] from='client.? 172.21.15.78:0/323809999' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 3} : dispatch 2024-09-21T11:57:08.652 INFO:teuthology.orchestra.run.smithi078.stdout:68719476760 2024-09-21T11:57:08.945 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953490 got 137438953492 for osd.5 2024-09-21T11:57:08.946 DEBUG:teuthology.parallel:result is None 2024-09-21T11:57:09.069 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345940 got 85899345943 for osd.1 2024-09-21T11:57:09.069 DEBUG:teuthology.parallel:result is None 2024-09-21T11:57:09.217 INFO:teuthology.orchestra.run.smithi078.stdout:107374182420 2024-09-21T11:57:09.230 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:08 smithi078 bash[20010]: cluster 2024-09-21T11:57:07.446001+0000 mgr.smithi078.aqnwdz (mgr.14203) 184 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:09.230 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:08 smithi078 bash[20010]: cluster 2024-09-21T11:57:07.446001+0000 mgr.smithi078.aqnwdz (mgr.14203) 184 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:09.230 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:08 smithi078 bash[20010]: audit 2024-09-21T11:57:08.652336+0000 mon.smithi078 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.78:0/4277600260' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-21T11:57:09.230 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:08 smithi078 bash[20010]: audit 2024-09-21T11:57:08.652336+0000 mon.smithi078 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.78:0/4277600260' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-21T11:57:09.268 INFO:tasks.cephadm.ceph_manager.ceph:need seq 154618822671 got 154618822674 for osd.7 2024-09-21T11:57:09.269 DEBUG:teuthology.parallel:result is None 2024-09-21T11:57:09.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:08 smithi195 bash[25267]: cluster 2024-09-21T11:57:07.446001+0000 mgr.smithi078.aqnwdz (mgr.14203) 184 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:09.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:08 smithi195 bash[25267]: cluster 2024-09-21T11:57:07.446001+0000 mgr.smithi078.aqnwdz (mgr.14203) 184 : cluster [DBG] pgmap v151: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:09.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:08 smithi195 bash[25267]: audit 2024-09-21T11:57:08.652336+0000 mon.smithi078 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.78:0/4277600260' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-21T11:57:09.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:08 smithi195 bash[25267]: audit 2024-09-21T11:57:08.652336+0000 mon.smithi078 (mon.0) 735 : audit [DBG] from='client.? 172.21.15.78:0/4277600260' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 0} : dispatch 2024-09-21T11:57:10.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:09 smithi078 bash[20010]: audit 2024-09-21T11:57:09.217596+0000 mon.smithi078 (mon.0) 736 : audit [DBG] from='client.? 172.21.15.78:0/2744100165' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-21T11:57:10.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:09 smithi078 bash[20010]: audit 2024-09-21T11:57:09.217596+0000 mon.smithi078 (mon.0) 736 : audit [DBG] from='client.? 172.21.15.78:0/2744100165' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-21T11:57:10.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:09 smithi195 bash[25267]: audit 2024-09-21T11:57:09.217596+0000 mon.smithi078 (mon.0) 736 : audit [DBG] from='client.? 172.21.15.78:0/2744100165' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-21T11:57:10.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:09 smithi195 bash[25267]: audit 2024-09-21T11:57:09.217596+0000 mon.smithi078 (mon.0) 736 : audit [DBG] from='client.? 172.21.15.78:0/2744100165' entity='client.admin' cmd={"prefix": "osd last-stat-seq", "id": 4} : dispatch 2024-09-21T11:57:10.847 INFO:tasks.cephadm.ceph_manager.ceph:need seq 137438953490 got 137438953492 for osd.6 2024-09-21T11:57:10.847 DEBUG:teuthology.parallel:result is None 2024-09-21T11:57:11.048 INFO:tasks.cephadm.ceph_manager.ceph:need seq 85899345939 got 85899345942 for osd.2 2024-09-21T11:57:11.049 DEBUG:teuthology.parallel:result is None 2024-09-21T11:57:11.061 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182418 got 107374182420 for osd.3 2024-09-21T11:57:11.062 DEBUG:teuthology.parallel:result is None 2024-09-21T11:57:11.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:10 smithi078 bash[20010]: cluster 2024-09-21T11:57:09.446489+0000 mgr.smithi078.aqnwdz (mgr.14203) 185 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:11.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:10 smithi078 bash[20010]: cluster 2024-09-21T11:57:09.446489+0000 mgr.smithi078.aqnwdz (mgr.14203) 185 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:11.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:10 smithi195 bash[25267]: cluster 2024-09-21T11:57:09.446489+0000 mgr.smithi078.aqnwdz (mgr.14203) 185 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:11.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:10 smithi195 bash[25267]: cluster 2024-09-21T11:57:09.446489+0000 mgr.smithi078.aqnwdz (mgr.14203) 185 : cluster [DBG] pgmap v152: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:11.545 INFO:tasks.cephadm.ceph_manager.ceph:need seq 68719476758 got 68719476760 for osd.0 2024-09-21T11:57:11.546 DEBUG:teuthology.parallel:result is None 2024-09-21T11:57:11.681 INFO:tasks.cephadm.ceph_manager.ceph:need seq 107374182418 got 107374182420 for osd.4 2024-09-21T11:57:11.681 DEBUG:teuthology.parallel:result is None 2024-09-21T11:57:11.681 INFO:tasks.cephadm.ceph_manager.ceph:waiting for clean 2024-09-21T11:57:11.681 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph pg dump --format=json 2024-09-21T11:57:13.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:12 smithi195 bash[25267]: cluster 2024-09-21T11:57:11.447059+0000 mgr.smithi078.aqnwdz (mgr.14203) 186 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:13.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:12 smithi195 bash[25267]: cluster 2024-09-21T11:57:11.447059+0000 mgr.smithi078.aqnwdz (mgr.14203) 186 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:13.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:12 smithi078 bash[20010]: cluster 2024-09-21T11:57:11.447059+0000 mgr.smithi078.aqnwdz (mgr.14203) 186 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:13.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:12 smithi078 bash[20010]: cluster 2024-09-21T11:57:11.447059+0000 mgr.smithi078.aqnwdz (mgr.14203) 186 : cluster [DBG] pgmap v153: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:15.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:14 smithi195 bash[25267]: cluster 2024-09-21T11:57:13.447635+0000 mgr.smithi078.aqnwdz (mgr.14203) 187 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:15.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:14 smithi195 bash[25267]: cluster 2024-09-21T11:57:13.447635+0000 mgr.smithi078.aqnwdz (mgr.14203) 187 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:15.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:14 smithi078 bash[20010]: cluster 2024-09-21T11:57:13.447635+0000 mgr.smithi078.aqnwdz (mgr.14203) 187 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:15.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:14 smithi078 bash[20010]: cluster 2024-09-21T11:57:13.447635+0000 mgr.smithi078.aqnwdz (mgr.14203) 187 : cluster [DBG] pgmap v154: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:16.491 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:17.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:16 smithi195 bash[25267]: cluster 2024-09-21T11:57:15.448272+0000 mgr.smithi078.aqnwdz (mgr.14203) 188 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:17.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:16 smithi195 bash[25267]: cluster 2024-09-21T11:57:15.448272+0000 mgr.smithi078.aqnwdz (mgr.14203) 188 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:17.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:16 smithi195 bash[25267]: audit 2024-09-21T11:57:16.730196+0000 mon.smithi078 (mon.0) 737 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:17.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:16 smithi195 bash[25267]: audit 2024-09-21T11:57:16.730196+0000 mon.smithi078 (mon.0) 737 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:17.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:16 smithi078 bash[20010]: cluster 2024-09-21T11:57:15.448272+0000 mgr.smithi078.aqnwdz (mgr.14203) 188 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:17.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:16 smithi078 bash[20010]: cluster 2024-09-21T11:57:15.448272+0000 mgr.smithi078.aqnwdz (mgr.14203) 188 : cluster [DBG] pgmap v155: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:17.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:16 smithi078 bash[20010]: audit 2024-09-21T11:57:16.730196+0000 mon.smithi078 (mon.0) 737 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:17.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:16 smithi078 bash[20010]: audit 2024-09-21T11:57:16.730196+0000 mon.smithi078 (mon.0) 737 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:18.020 INFO:teuthology.orchestra.run.smithi078.stderr:dumped all 2024-09-21T11:57:18.021 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:57:18.742 INFO:teuthology.orchestra.run.smithi078.stdout:{"pg_ready":true,"pg_map":{"version":156,"stamp":"2024-09-21T11:57:17.448531+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"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":132,"ondisk_log_size":132,"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":241924,"kb_used_data":4876,"kb_used_omap":12,"kb_used_meta":236851,"kb_avail":749686524,"statfs":{"total":767926730752,"available":767679000576,"internally_reserved":0,"allocated":4993024,"data_stored":3047928,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12751,"internal_metadata":242535985},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003214"},"pg_stats":[{"pgid":"1.0","version":"22'132","reported_seq":185,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-21T11:55:53.528747+0000","last_change":"2024-09-21T11:55:53.527623+0000","last_active":"2024-09-21T11:55:53.528747+0000","last_peered":"2024-09-21T11:55:53.528747+0000","last_clean":"2024-09-21T11:55:53.528747+0000","last_became_active":"2024-09-21T11:55:53.526721+0000","last_became_peered":"2024-09-21T11:55:53.526721+0000","last_unstale":"2024-09-21T11:55:53.528747+0000","last_undegraded":"2024-09-21T11:55:53.528747+0000","last_fullsized":"2024-09-21T11:55:53.528747+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-21T11:55:30.190081+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-21T11:55:30.190081+0000","last_clean_scrub_stamp":"2024-09-21T11:55:30.190081+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-22T21:09:49.227058+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"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":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":36,"seq":154618822676,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32168,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708888,"statfs":{"total":95990841344,"available":95957901312,"internally_reserved":0,"allocated":995328,"data_stored":749971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":31914442},"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":[]},{"osd":6,"up_from":32,"seq":137438953495,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27420,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713636,"statfs":{"total":95990841344,"available":95962763264,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[]},{"osd":5,"up_from":32,"seq":137438953495,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":4,"up_from":25,"seq":107374182422,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31588,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709468,"statfs":{"total":95990841344,"available":95958495232,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":3,"up_from":25,"seq":107374182422,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28004,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713052,"statfs":{"total":95990841344,"available":95962165248,"internally_reserved":0,"allocated":995328,"data_stored":749971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"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":[]},{"osd":2,"up_from":20,"seq":85899345944,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27420,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713636,"statfs":{"total":95990841344,"available":95962763264,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]},{"osd":1,"up_from":20,"seq":85899345945,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31580,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709476,"statfs":{"total":95990841344,"available":95958503424,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":0,"up_from":16,"seq":68719476762,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32160,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708896,"statfs":{"total":95990841344,"available":95957909504,"internally_reserved":0,"allocated":995328,"data_stored":749971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-21T11:57:18.743 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph pg dump --format=json 2024-09-21T11:57:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:18 smithi078 bash[20010]: cluster 2024-09-21T11:57:17.448738+0000 mgr.smithi078.aqnwdz (mgr.14203) 189 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:18 smithi078 bash[20010]: cluster 2024-09-21T11:57:17.448738+0000 mgr.smithi078.aqnwdz (mgr.14203) 189 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:18 smithi078 bash[20010]: audit 2024-09-21T11:57:18.019992+0000 mgr.smithi078.aqnwdz (mgr.14203) 190 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:57:19.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:18 smithi078 bash[20010]: audit 2024-09-21T11:57:18.019992+0000 mgr.smithi078.aqnwdz (mgr.14203) 190 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:57:19.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:18 smithi195 bash[25267]: cluster 2024-09-21T11:57:17.448738+0000 mgr.smithi078.aqnwdz (mgr.14203) 189 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:19.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:18 smithi195 bash[25267]: cluster 2024-09-21T11:57:17.448738+0000 mgr.smithi078.aqnwdz (mgr.14203) 189 : cluster [DBG] pgmap v156: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:19.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:18 smithi195 bash[25267]: audit 2024-09-21T11:57:18.019992+0000 mgr.smithi078.aqnwdz (mgr.14203) 190 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:57:19.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:18 smithi195 bash[25267]: audit 2024-09-21T11:57:18.019992+0000 mgr.smithi078.aqnwdz (mgr.14203) 190 : audit [DBG] from='client.14478 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:57:21.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:20 smithi195 bash[25267]: cluster 2024-09-21T11:57:19.449384+0000 mgr.smithi078.aqnwdz (mgr.14203) 191 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:21.370 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:20 smithi195 bash[25267]: cluster 2024-09-21T11:57:19.449384+0000 mgr.smithi078.aqnwdz (mgr.14203) 191 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:21.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:20 smithi078 bash[20010]: cluster 2024-09-21T11:57:19.449384+0000 mgr.smithi078.aqnwdz (mgr.14203) 191 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:21.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:20 smithi078 bash[20010]: cluster 2024-09-21T11:57:19.449384+0000 mgr.smithi078.aqnwdz (mgr.14203) 191 : cluster [DBG] pgmap v157: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:23.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:22 smithi195 bash[25267]: cluster 2024-09-21T11:57:21.450065+0000 mgr.smithi078.aqnwdz (mgr.14203) 192 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:23.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:22 smithi195 bash[25267]: cluster 2024-09-21T11:57:21.450065+0000 mgr.smithi078.aqnwdz (mgr.14203) 192 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:23.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:22 smithi078 bash[20010]: cluster 2024-09-21T11:57:21.450065+0000 mgr.smithi078.aqnwdz (mgr.14203) 192 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:23.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:22 smithi078 bash[20010]: cluster 2024-09-21T11:57:21.450065+0000 mgr.smithi078.aqnwdz (mgr.14203) 192 : cluster [DBG] pgmap v158: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:23.564 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:24.963 INFO:teuthology.orchestra.run.smithi078.stderr:dumped all 2024-09-21T11:57:24.963 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:57:25.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:24 smithi195 bash[25267]: cluster 2024-09-21T11:57:23.450770+0000 mgr.smithi078.aqnwdz (mgr.14203) 193 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:25.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:24 smithi195 bash[25267]: cluster 2024-09-21T11:57:23.450770+0000 mgr.smithi078.aqnwdz (mgr.14203) 193 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:25.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:24 smithi078 bash[20010]: cluster 2024-09-21T11:57:23.450770+0000 mgr.smithi078.aqnwdz (mgr.14203) 193 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:25.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:24 smithi078 bash[20010]: cluster 2024-09-21T11:57:23.450770+0000 mgr.smithi078.aqnwdz (mgr.14203) 193 : cluster [DBG] pgmap v159: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:25.663 INFO:teuthology.orchestra.run.smithi078.stdout:{"pg_ready":true,"pg_map":{"version":159,"stamp":"2024-09-21T11:57:23.450428+0000","last_osdmap_epoch":0,"last_pg_scan":0,"pg_stats_sum":{"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"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":132,"ondisk_log_size":132,"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":241924,"kb_used_data":4876,"kb_used_omap":12,"kb_used_meta":236851,"kb_avail":749686524,"statfs":{"total":767926730752,"available":767679000576,"internally_reserved":0,"allocated":4993024,"data_stored":3047928,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":12751,"internal_metadata":242535985},"hb_peers":[],"snap_trim_queue_len":0,"num_snap_trimming":0,"num_shards_repaired":0,"op_queue_age_hist":{"histogram":[],"upper_bound":1},"perf_stat":{"commit_latency_ms":0,"apply_latency_ms":0,"commit_latency_ns":0,"apply_latency_ns":0},"alerts":[],"network_ping_times":[]},"pg_stats_delta":{"stat_sum":{"num_bytes":0,"num_objects":0,"num_object_clones":0,"num_object_copies":0,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":0,"num_whiteouts":0,"num_read":0,"num_read_kb":0,"num_write":0,"num_write_kb":0,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":0,"num_bytes_recovered":0,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":0,"data_stored":0,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":0,"ondisk_log_size":0,"up":0,"acting":0,"num_store_stats":0,"stamp_delta":"12.003642"},"pg_stats":[{"pgid":"1.0","version":"22'132","reported_seq":185,"reported_epoch":40,"state":"active+clean","last_fresh":"2024-09-21T11:55:53.528747+0000","last_change":"2024-09-21T11:55:53.527623+0000","last_active":"2024-09-21T11:55:53.528747+0000","last_peered":"2024-09-21T11:55:53.528747+0000","last_clean":"2024-09-21T11:55:53.528747+0000","last_became_active":"2024-09-21T11:55:53.526721+0000","last_became_peered":"2024-09-21T11:55:53.526721+0000","last_unstale":"2024-09-21T11:55:53.528747+0000","last_undegraded":"2024-09-21T11:55:53.528747+0000","last_fullsized":"2024-09-21T11:55:53.528747+0000","mapping_epoch":39,"log_start":"0'0","ondisk_log_start":"0'0","created":21,"last_epoch_clean":40,"parent":"0.0","parent_split_bits":0,"last_scrub":"0'0","last_scrub_stamp":"2024-09-21T11:55:30.190081+0000","last_deep_scrub":"0'0","last_deep_scrub_stamp":"2024-09-21T11:55:30.190081+0000","last_clean_scrub_stamp":"2024-09-21T11:55:30.190081+0000","objects_scrubbed":0,"log_size":132,"log_dups_size":0,"ondisk_log_size":132,"stats_invalid":false,"dirty_stats_invalid":false,"omap_stats_invalid":false,"hitset_stats_invalid":false,"hitset_bytes_stats_invalid":false,"pin_stats_invalid":false,"manifest_stats_invalid":false,"snaptrimq_len":0,"last_scrub_duration":0,"scrub_schedule":"periodic scrub scheduled @ 2024-09-22T21:09:49.227058+0000","scrub_duration":0,"objects_trimmed":0,"snaptrim_duration":0,"stat_sum":{"num_bytes":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"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":590368,"num_objects":2,"num_object_clones":0,"num_object_copies":6,"num_objects_missing_on_primary":0,"num_objects_missing":0,"num_objects_degraded":0,"num_objects_misplaced":0,"num_objects_unfound":0,"num_objects_dirty":2,"num_whiteouts":0,"num_read":96,"num_read_kb":82,"num_write":167,"num_write_kb":3194,"num_scrub_errors":0,"num_shallow_scrub_errors":0,"num_deep_scrub_errors":0,"num_objects_recovered":2,"num_bytes_recovered":590368,"num_keys_recovered":0,"num_objects_omap":0,"num_objects_hit_set_archive":0,"num_bytes_hit_set_archive":0,"num_flush":0,"num_flush_kb":0,"num_evict":0,"num_evict_kb":0,"num_promote":0,"num_flush_mode_high":0,"num_flush_mode_low":0,"num_evict_mode_some":0,"num_evict_mode_full":0,"num_objects_pinned":0,"num_legacy_snapsets":0,"num_large_omap_objects":0,"num_objects_manifest":0,"num_omap_bytes":0,"num_omap_keys":0,"num_objects_repaired":0},"store_stats":{"total":0,"available":0,"internally_reserved":0,"allocated":2969600,"data_stored":2951840,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},"log_size":132,"ondisk_log_size":132,"up":3,"acting":3,"num_store_stats":5}],"osd_stats":[{"osd":7,"up_from":36,"seq":154618822677,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32168,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708888,"statfs":{"total":95990841344,"available":95957901312,"internally_reserved":0,"allocated":995328,"data_stored":749971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1590,"internal_metadata":31914442},"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":[]},{"osd":6,"up_from":32,"seq":137438953496,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27420,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713636,"statfs":{"total":95990841344,"available":95962763264,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1594,"internal_metadata":27654598},"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":[]},{"osd":5,"up_from":32,"seq":137438953496,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31584,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709472,"statfs":{"total":95990841344,"available":95958499328,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":4,"up_from":25,"seq":107374182423,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31588,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709468,"statfs":{"total":95990841344,"available":95958495232,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":3,"up_from":25,"seq":107374182423,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":28004,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713052,"statfs":{"total":95990841344,"available":95962165248,"internally_reserved":0,"allocated":995328,"data_stored":749971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1592,"internal_metadata":27654600},"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":[]},{"osd":2,"up_from":20,"seq":85899345945,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":27420,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":27006,"kb_avail":93713636,"statfs":{"total":95990841344,"available":95962763264,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":27654597},"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":[]},{"osd":1,"up_from":20,"seq":85899345946,"num_pgs":0,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":0,"kb":93741056,"kb_used":31580,"kb_used_data":392,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93709476,"statfs":{"total":95990841344,"available":95958503424,"internally_reserved":0,"allocated":401408,"data_stored":159603,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]},{"osd":0,"up_from":16,"seq":68719476764,"num_pgs":1,"num_osds":1,"num_per_pool_osds":1,"num_per_pool_omap_osds":1,"kb":93741056,"kb_used":32160,"kb_used_data":972,"kb_used_omap":1,"kb_used_meta":31166,"kb_avail":93708896,"statfs":{"total":95990841344,"available":95957909504,"internally_reserved":0,"allocated":995328,"data_stored":749971,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":1595,"internal_metadata":31914437},"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":[]}],"pool_statfs":[{"poolid":1,"osd":0,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":1,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":2,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":3,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0},{"poolid":1,"osd":7,"total":0,"available":0,"internally_reserved":0,"allocated":593920,"data_stored":590368,"data_compressed":0,"data_compressed_allocated":0,"data_compressed_original":0,"omap_allocated":0,"internal_metadata":0}]}} 2024-09-21T11:57:25.664 INFO:tasks.cephadm.ceph_manager.ceph:clean! 2024-09-21T11:57:25.664 INFO:tasks.ceph:Waiting until ceph cluster ceph is healthy... 2024-09-21T11:57:25.664 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy 2024-09-21T11:57:25.664 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph health --format=json 2024-09-21T11:57:26.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:26 smithi195 bash[25267]: audit 2024-09-21T11:57:24.962151+0000 mgr.smithi078.aqnwdz (mgr.14203) 194 : audit [DBG] from='client.14482 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:57:26.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:26 smithi195 bash[25267]: audit 2024-09-21T11:57:24.962151+0000 mgr.smithi078.aqnwdz (mgr.14203) 194 : audit [DBG] from='client.14482 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:57:26.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:26 smithi078 bash[20010]: audit 2024-09-21T11:57:24.962151+0000 mgr.smithi078.aqnwdz (mgr.14203) 194 : audit [DBG] from='client.14482 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:57:26.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:26 smithi078 bash[20010]: audit 2024-09-21T11:57:24.962151+0000 mgr.smithi078.aqnwdz (mgr.14203) 194 : audit [DBG] from='client.14482 -' entity='client.admin' cmd=[{"prefix": "pg dump", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:57:27.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:27 smithi195 bash[25267]: cluster 2024-09-21T11:57:25.451453+0000 mgr.smithi078.aqnwdz (mgr.14203) 195 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:27.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:27 smithi195 bash[25267]: cluster 2024-09-21T11:57:25.451453+0000 mgr.smithi078.aqnwdz (mgr.14203) 195 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:27.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:27 smithi078 bash[20010]: cluster 2024-09-21T11:57:25.451453+0000 mgr.smithi078.aqnwdz (mgr.14203) 195 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:27.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:27 smithi078 bash[20010]: cluster 2024-09-21T11:57:25.451453+0000 mgr.smithi078.aqnwdz (mgr.14203) 195 : cluster [DBG] pgmap v160: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:29 smithi195 bash[25267]: cluster 2024-09-21T11:57:27.452093+0000 mgr.smithi078.aqnwdz (mgr.14203) 196 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:29 smithi195 bash[25267]: cluster 2024-09-21T11:57:27.452093+0000 mgr.smithi078.aqnwdz (mgr.14203) 196 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:29.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:29 smithi078 bash[20010]: cluster 2024-09-21T11:57:27.452093+0000 mgr.smithi078.aqnwdz (mgr.14203) 196 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:29.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:29 smithi078 bash[20010]: cluster 2024-09-21T11:57:27.452093+0000 mgr.smithi078.aqnwdz (mgr.14203) 196 : cluster [DBG] pgmap v161: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:30.484 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:31 smithi195 bash[25267]: cluster 2024-09-21T11:57:29.452694+0000 mgr.smithi078.aqnwdz (mgr.14203) 197 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:31 smithi195 bash[25267]: cluster 2024-09-21T11:57:29.452694+0000 mgr.smithi078.aqnwdz (mgr.14203) 197 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:31.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:31 smithi078 bash[20010]: cluster 2024-09-21T11:57:29.452694+0000 mgr.smithi078.aqnwdz (mgr.14203) 197 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:31 smithi078 bash[20010]: cluster 2024-09-21T11:57:29.452694+0000 mgr.smithi078.aqnwdz (mgr.14203) 197 : cluster [DBG] pgmap v162: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:31.972 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:57:31.972 INFO:teuthology.orchestra.run.smithi078.stdout:{"status":"HEALTH_OK","checks":{},"mutes":[]} 2024-09-21T11:57:32.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:32 smithi195 bash[25267]: audit 2024-09-21T11:57:31.729901+0000 mon.smithi078 (mon.0) 738 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:32.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:32 smithi195 bash[25267]: audit 2024-09-21T11:57:31.729901+0000 mon.smithi078 (mon.0) 738 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:32.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:32 smithi195 bash[25267]: audit 2024-09-21T11:57:31.972095+0000 mon.smithi078 (mon.0) 739 : audit [DBG] from='client.? 172.21.15.78:0/3290619261' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-21T11:57:32.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:32 smithi195 bash[25267]: audit 2024-09-21T11:57:31.972095+0000 mon.smithi078 (mon.0) 739 : audit [DBG] from='client.? 172.21.15.78:0/3290619261' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-21T11:57:32.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:32 smithi078 bash[20010]: audit 2024-09-21T11:57:31.729901+0000 mon.smithi078 (mon.0) 738 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:32.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:32 smithi078 bash[20010]: audit 2024-09-21T11:57:31.729901+0000 mon.smithi078 (mon.0) 738 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:32.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:32 smithi078 bash[20010]: audit 2024-09-21T11:57:31.972095+0000 mon.smithi078 (mon.0) 739 : audit [DBG] from='client.? 172.21.15.78:0/3290619261' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-21T11:57:32.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:32 smithi078 bash[20010]: audit 2024-09-21T11:57:31.972095+0000 mon.smithi078 (mon.0) 739 : audit [DBG] from='client.? 172.21.15.78:0/3290619261' entity='client.admin' cmd={"prefix": "health", "format": "json"} : dispatch 2024-09-21T11:57:32.639 INFO:tasks.cephadm.ceph_manager.ceph:wait_until_healthy done 2024-09-21T11:57:32.639 INFO:tasks.cephadm:Setup complete, yielding 2024-09-21T11:57:32.640 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T11:57:32.650 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:57:32.650 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch status' 2024-09-21T11:57:33.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:33 smithi195 bash[25267]: cluster 2024-09-21T11:57:31.453246+0000 mgr.smithi078.aqnwdz (mgr.14203) 198 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:33.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:33 smithi195 bash[25267]: cluster 2024-09-21T11:57:31.453246+0000 mgr.smithi078.aqnwdz (mgr.14203) 198 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:33.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:33 smithi078 bash[20010]: cluster 2024-09-21T11:57:31.453246+0000 mgr.smithi078.aqnwdz (mgr.14203) 198 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:33.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:33 smithi078 bash[20010]: cluster 2024-09-21T11:57:31.453246+0000 mgr.smithi078.aqnwdz (mgr.14203) 198 : cluster [DBG] pgmap v163: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:35.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:35 smithi195 bash[25267]: cluster 2024-09-21T11:57:33.453858+0000 mgr.smithi078.aqnwdz (mgr.14203) 199 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:35.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:35 smithi195 bash[25267]: cluster 2024-09-21T11:57:33.453858+0000 mgr.smithi078.aqnwdz (mgr.14203) 199 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:35.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:35 smithi078 bash[20010]: cluster 2024-09-21T11:57:33.453858+0000 mgr.smithi078.aqnwdz (mgr.14203) 199 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:35.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:35 smithi078 bash[20010]: cluster 2024-09-21T11:57:33.453858+0000 mgr.smithi078.aqnwdz (mgr.14203) 199 : cluster [DBG] pgmap v164: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:37.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:37 smithi195 bash[25267]: cluster 2024-09-21T11:57:35.454369+0000 mgr.smithi078.aqnwdz (mgr.14203) 200 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:37.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:37 smithi195 bash[25267]: cluster 2024-09-21T11:57:35.454369+0000 mgr.smithi078.aqnwdz (mgr.14203) 200 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:37.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:37 smithi078 bash[20010]: cluster 2024-09-21T11:57:35.454369+0000 mgr.smithi078.aqnwdz (mgr.14203) 200 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:37.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:37 smithi078 bash[20010]: cluster 2024-09-21T11:57:35.454369+0000 mgr.smithi078.aqnwdz (mgr.14203) 200 : cluster [DBG] pgmap v165: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:37.459 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:38.739 INFO:teuthology.orchestra.run.smithi078.stdout:Backend: cephadm 2024-09-21T11:57:38.739 INFO:teuthology.orchestra.run.smithi078.stdout:Available: Yes 2024-09-21T11:57:38.740 INFO:teuthology.orchestra.run.smithi078.stdout:Paused: No 2024-09-21T11:57:39.348 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:39 smithi078 bash[20010]: cluster 2024-09-21T11:57:37.454890+0000 mgr.smithi078.aqnwdz (mgr.14203) 201 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:39.349 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:39 smithi078 bash[20010]: cluster 2024-09-21T11:57:37.454890+0000 mgr.smithi078.aqnwdz (mgr.14203) 201 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:39.350 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ps' 2024-09-21T11:57:39.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:39 smithi195 bash[25267]: cluster 2024-09-21T11:57:37.454890+0000 mgr.smithi078.aqnwdz (mgr.14203) 201 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:39.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:39 smithi195 bash[25267]: cluster 2024-09-21T11:57:37.454890+0000 mgr.smithi078.aqnwdz (mgr.14203) 201 : cluster [DBG] pgmap v166: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:40.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:40 smithi195 bash[25267]: audit 2024-09-21T11:57:38.739218+0000 mgr.smithi078.aqnwdz (mgr.14203) 202 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:40.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:40 smithi195 bash[25267]: audit 2024-09-21T11:57:38.739218+0000 mgr.smithi078.aqnwdz (mgr.14203) 202 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:40.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:40 smithi195 bash[25267]: audit 2024-09-21T11:57:39.231158+0000 mon.smithi078 (mon.0) 740 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:57:40.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:40 smithi195 bash[25267]: audit 2024-09-21T11:57:39.231158+0000 mon.smithi078 (mon.0) 740 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:57:40.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:40 smithi078 bash[20010]: audit 2024-09-21T11:57:38.739218+0000 mgr.smithi078.aqnwdz (mgr.14203) 202 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:40.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:40 smithi078 bash[20010]: audit 2024-09-21T11:57:38.739218+0000 mgr.smithi078.aqnwdz (mgr.14203) 202 : audit [DBG] from='client.14490 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:40.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:40 smithi078 bash[20010]: audit 2024-09-21T11:57:39.231158+0000 mon.smithi078 (mon.0) 740 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:57:40.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:40 smithi078 bash[20010]: audit 2024-09-21T11:57:39.231158+0000 mon.smithi078 (mon.0) 740 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:57:41.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:41 smithi195 bash[25267]: cluster 2024-09-21T11:57:39.455302+0000 mgr.smithi078.aqnwdz (mgr.14203) 203 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:41.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:41 smithi195 bash[25267]: cluster 2024-09-21T11:57:39.455302+0000 mgr.smithi078.aqnwdz (mgr.14203) 203 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:41.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:41 smithi078 bash[20010]: cluster 2024-09-21T11:57:39.455302+0000 mgr.smithi078.aqnwdz (mgr.14203) 203 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:41.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:41 smithi078 bash[20010]: cluster 2024-09-21T11:57:39.455302+0000 mgr.smithi078.aqnwdz (mgr.14203) 203 : cluster [DBG] pgmap v167: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:43 smithi195 bash[25267]: cluster 2024-09-21T11:57:41.455862+0000 mgr.smithi078.aqnwdz (mgr.14203) 204 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:43 smithi195 bash[25267]: cluster 2024-09-21T11:57:41.455862+0000 mgr.smithi078.aqnwdz (mgr.14203) 204 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:43.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:43 smithi078 bash[20010]: cluster 2024-09-21T11:57:41.455862+0000 mgr.smithi078.aqnwdz (mgr.14203) 204 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:43.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:43 smithi078 bash[20010]: cluster 2024-09-21T11:57:41.455862+0000 mgr.smithi078.aqnwdz (mgr.14203) 204 : cluster [DBG] pgmap v168: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:44.153 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:45.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:45 smithi078 bash[20010]: cluster 2024-09-21T11:57:43.456416+0000 mgr.smithi078.aqnwdz (mgr.14203) 205 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:45.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:45 smithi078 bash[20010]: cluster 2024-09-21T11:57:43.456416+0000 mgr.smithi078.aqnwdz (mgr.14203) 205 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:45.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:45 smithi078 bash[20010]: audit 2024-09-21T11:57:44.770373+0000 mon.smithi078 (mon.0) 741 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:45.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:45 smithi078 bash[20010]: audit 2024-09-21T11:57:44.770373+0000 mon.smithi078 (mon.0) 741 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:45.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:45 smithi078 bash[20010]: audit 2024-09-21T11:57:44.781444+0000 mon.smithi078 (mon.0) 742 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:45.320 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:45 smithi078 bash[20010]: audit 2024-09-21T11:57:44.781444+0000 mon.smithi078 (mon.0) 742 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:45.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:45 smithi195 bash[25267]: cluster 2024-09-21T11:57:43.456416+0000 mgr.smithi078.aqnwdz (mgr.14203) 205 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:45.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:45 smithi195 bash[25267]: cluster 2024-09-21T11:57:43.456416+0000 mgr.smithi078.aqnwdz (mgr.14203) 205 : cluster [DBG] pgmap v169: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:45.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:45 smithi195 bash[25267]: audit 2024-09-21T11:57:44.770373+0000 mon.smithi078 (mon.0) 741 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:45.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:45 smithi195 bash[25267]: audit 2024-09-21T11:57:44.770373+0000 mon.smithi078 (mon.0) 741 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:45.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:45 smithi195 bash[25267]: audit 2024-09-21T11:57:44.781444+0000 mon.smithi078 (mon.0) 742 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:45.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:45 smithi195 bash[25267]: audit 2024-09-21T11:57:44.781444+0000 mon.smithi078 (mon.0) 742 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:45.695 INFO:teuthology.orchestra.run.smithi078.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-21T11:57:45.695 INFO:teuthology.orchestra.run.smithi078.stdout:alertmanager.smithi078 smithi078 *:9093,9094 running (3m) 0s ago 5m 14.2M - 0.27.0 11f11916f8cd bf5549b4e5b2 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:ceph-exporter.smithi078 smithi078 *:9926 running (5m) 0s ago 5m 8827k - 19.3.0-5103-g5c1cdc3c 8f4d013db793 9bd005c187a1 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:ceph-exporter.smithi195 smithi195 *:9926 running (4m) 0s ago 4m 6095k - 19.3.0-5103-g5c1cdc3c 8f4d013db793 0fef9f0e4125 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:crash.smithi078 smithi078 running (5m) 0s ago 5m 7243k - 19.3.0-5103-g5c1cdc3c 8f4d013db793 ece3dc1bdaae 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:crash.smithi195 smithi195 running (4m) 0s ago 4m 7216k - 19.3.0-5103-g5c1cdc3c 8f4d013db793 11d6410f23a4 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:grafana.smithi078 smithi078 *:3000 running (3m) 0s ago 5m 67.5M - 10.4.8 5aad1d7cf004 3835009c351d 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:mgr.smithi078.aqnwdz smithi078 *:9283,8765,8443 running (7m) 0s ago 7m 503M - 19.3.0-5103-g5c1cdc3c 8f4d013db793 9e97d089c85c 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:mgr.smithi195.wpaqjn smithi195 *:8443,9283,8765 running (4m) 0s ago 4m 439M - 19.3.0-5103-g5c1cdc3c 8f4d013db793 3d0ed27cfd9f 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:mon.smithi078 smithi078 running (7m) 0s ago 7m 49.2M 2048M 19.3.0-5103-g5c1cdc3c 8f4d013db793 3270f7a14fed 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:mon.smithi195 smithi195 running (4m) 0s ago 4m 41.5M 2048M 19.3.0-5103-g5c1cdc3c 8f4d013db793 6616a2482b5c 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:node-exporter.smithi078 smithi078 *:9100 running (5m) 0s ago 5m 8391k - 1.7.0 72c9c2088986 7f8e22488549 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:node-exporter.smithi195 smithi195 *:9100 running (4m) 0s ago 4m 8336k - 1.7.0 72c9c2088986 3c72b351e096 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:osd.0 smithi195 running (2m) 0s ago 2m 46.1M 3772M 19.3.0-5103-g5c1cdc3c 8f4d013db793 79eaf507b8d8 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:osd.1 smithi078 running (2m) 0s ago 2m 46.9M 3004M 19.3.0-5103-g5c1cdc3c 8f4d013db793 d5b59f64f675 2024-09-21T11:57:45.696 INFO:teuthology.orchestra.run.smithi078.stdout:osd.2 smithi195 running (2m) 0s ago 2m 37.2M 3772M 19.3.0-5103-g5c1cdc3c 8f4d013db793 925682ca9105 2024-09-21T11:57:45.697 INFO:teuthology.orchestra.run.smithi078.stdout:osd.3 smithi078 running (2m) 0s ago 2m 38.8M 3004M 19.3.0-5103-g5c1cdc3c 8f4d013db793 6b4dabca9fb5 2024-09-21T11:57:45.697 INFO:teuthology.orchestra.run.smithi078.stdout:osd.4 smithi195 running (2m) 0s ago 2m 41.9M 3772M 19.3.0-5103-g5c1cdc3c 8f4d013db793 962345eae944 2024-09-21T11:57:45.697 INFO:teuthology.orchestra.run.smithi078.stdout:osd.5 smithi078 running (2m) 0s ago 2m 42.4M 3004M 19.3.0-5103-g5c1cdc3c 8f4d013db793 2434742cd9f9 2024-09-21T11:57:45.697 INFO:teuthology.orchestra.run.smithi078.stdout:osd.6 smithi195 running (2m) 0s ago 2m 34.9M 3772M 19.3.0-5103-g5c1cdc3c 8f4d013db793 a56fa1902866 2024-09-21T11:57:45.697 INFO:teuthology.orchestra.run.smithi078.stdout:osd.7 smithi078 running (2m) 0s ago 2m 45.2M 3004M 19.3.0-5103-g5c1cdc3c 8f4d013db793 00812fa1e224 2024-09-21T11:57:45.697 INFO:teuthology.orchestra.run.smithi078.stdout:prometheus.smithi078 smithi078 *:9095 running (3m) 0s ago 4m 44.8M - 2.51.0 1d3b7f56885b de85f8d16956 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.072663+0000 mon.smithi078 (mon.0) 743 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.072663+0000 mon.smithi078 (mon.0) 743 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.077640+0000 mon.smithi078 (mon.0) 744 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.077640+0000 mon.smithi078 (mon.0) 744 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.698541+0000 mon.smithi078 (mon.0) 745 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.698541+0000 mon.smithi078 (mon.0) 745 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.700107+0000 mon.smithi078 (mon.0) 746 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.700107+0000 mon.smithi078 (mon.0) 746 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.705997+0000 mon.smithi078 (mon.0) 747 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.705997+0000 mon.smithi078 (mon.0) 747 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.708887+0000 mon.smithi078 (mon.0) 748 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:57:46.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:46 smithi195 bash[25267]: audit 2024-09-21T11:57:45.708887+0000 mon.smithi078 (mon.0) 748 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.072663+0000 mon.smithi078 (mon.0) 743 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.072663+0000 mon.smithi078 (mon.0) 743 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.077640+0000 mon.smithi078 (mon.0) 744 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.077640+0000 mon.smithi078 (mon.0) 744 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.698541+0000 mon.smithi078 (mon.0) 745 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.698541+0000 mon.smithi078 (mon.0) 745 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.700107+0000 mon.smithi078 (mon.0) 746 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.700107+0000 mon.smithi078 (mon.0) 746 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.705997+0000 mon.smithi078 (mon.0) 747 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.705997+0000 mon.smithi078 (mon.0) 747 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:57:46.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.708887+0000 mon.smithi078 (mon.0) 748 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:57:46.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:46 smithi078 bash[20010]: audit 2024-09-21T11:57:45.708887+0000 mon.smithi078 (mon.0) 748 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:57:46.523 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ls' 2024-09-21T11:57:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:47 smithi195 bash[25267]: cluster 2024-09-21T11:57:45.456819+0000 mgr.smithi078.aqnwdz (mgr.14203) 206 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:47 smithi195 bash[25267]: cluster 2024-09-21T11:57:45.456819+0000 mgr.smithi078.aqnwdz (mgr.14203) 206 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:47 smithi195 bash[25267]: audit 2024-09-21T11:57:45.647457+0000 mgr.smithi078.aqnwdz (mgr.14203) 207 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:47 smithi195 bash[25267]: audit 2024-09-21T11:57:45.647457+0000 mgr.smithi078.aqnwdz (mgr.14203) 207 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:47 smithi195 bash[25267]: audit 2024-09-21T11:57:46.730013+0000 mon.smithi078 (mon.0) 749 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:47.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:47 smithi195 bash[25267]: audit 2024-09-21T11:57:46.730013+0000 mon.smithi078 (mon.0) 749 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:47 smithi078 bash[20010]: cluster 2024-09-21T11:57:45.456819+0000 mgr.smithi078.aqnwdz (mgr.14203) 206 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:47 smithi078 bash[20010]: cluster 2024-09-21T11:57:45.456819+0000 mgr.smithi078.aqnwdz (mgr.14203) 206 : cluster [DBG] pgmap v170: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:47 smithi078 bash[20010]: audit 2024-09-21T11:57:45.647457+0000 mgr.smithi078.aqnwdz (mgr.14203) 207 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:47 smithi078 bash[20010]: audit 2024-09-21T11:57:45.647457+0000 mgr.smithi078.aqnwdz (mgr.14203) 207 : audit [DBG] from='client.14494 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:47 smithi078 bash[20010]: audit 2024-09-21T11:57:46.730013+0000 mon.smithi078 (mon.0) 749 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:47 smithi078 bash[20010]: audit 2024-09-21T11:57:46.730013+0000 mon.smithi078 (mon.0) 749 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:57:49.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:49 smithi195 bash[25267]: cluster 2024-09-21T11:57:47.457335+0000 mgr.smithi078.aqnwdz (mgr.14203) 208 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:49.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:49 smithi195 bash[25267]: cluster 2024-09-21T11:57:47.457335+0000 mgr.smithi078.aqnwdz (mgr.14203) 208 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:49.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:49 smithi078 bash[20010]: cluster 2024-09-21T11:57:47.457335+0000 mgr.smithi078.aqnwdz (mgr.14203) 208 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:49.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:49 smithi078 bash[20010]: cluster 2024-09-21T11:57:47.457335+0000 mgr.smithi078.aqnwdz (mgr.14203) 208 : cluster [DBG] pgmap v171: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:51.339 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:51.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:51 smithi195 bash[25267]: cluster 2024-09-21T11:57:49.457900+0000 mgr.smithi078.aqnwdz (mgr.14203) 209 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:51.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:51 smithi195 bash[25267]: cluster 2024-09-21T11:57:49.457900+0000 mgr.smithi078.aqnwdz (mgr.14203) 209 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:51.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:51 smithi078 bash[20010]: cluster 2024-09-21T11:57:49.457900+0000 mgr.smithi078.aqnwdz (mgr.14203) 209 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:51.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:51 smithi078 bash[20010]: cluster 2024-09-21T11:57:49.457900+0000 mgr.smithi078.aqnwdz (mgr.14203) 209 : cluster [DBG] pgmap v172: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:52.847 INFO:teuthology.orchestra.run.smithi078.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-21T11:57:52.847 INFO:teuthology.orchestra.run.smithi078.stdout:alertmanager ?:9093,9094 1/1 7s ago 6m count:1 2024-09-21T11:57:52.847 INFO:teuthology.orchestra.run.smithi078.stdout:ceph-exporter ?:9926 2/2 8s ago 6m * 2024-09-21T11:57:52.848 INFO:teuthology.orchestra.run.smithi078.stdout:crash 2/2 8s ago 6m * 2024-09-21T11:57:52.848 INFO:teuthology.orchestra.run.smithi078.stdout:grafana ?:3000 1/1 7s ago 6m count:1 2024-09-21T11:57:52.848 INFO:teuthology.orchestra.run.smithi078.stdout:mgr 2/2 8s ago 6m count:2 2024-09-21T11:57:52.848 INFO:teuthology.orchestra.run.smithi078.stdout:mon 2/2 8s ago 5m smithi078:172.21.15.78=smithi078;smithi195:172.21.15.195=smithi195;count:2 2024-09-21T11:57:52.848 INFO:teuthology.orchestra.run.smithi078.stdout:node-exporter ?:9100 2/2 8s ago 6m * 2024-09-21T11:57:52.848 INFO:teuthology.orchestra.run.smithi078.stdout:osd.all-available-devices 8 8s ago 3m * 2024-09-21T11:57:52.848 INFO:teuthology.orchestra.run.smithi078.stdout:prometheus ?:9095 1/1 7s ago 6m count:1 2024-09-21T11:57:53.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:53 smithi078 bash[20010]: cluster 2024-09-21T11:57:51.458302+0000 mgr.smithi078.aqnwdz (mgr.14203) 210 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:53.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:53 smithi078 bash[20010]: cluster 2024-09-21T11:57:51.458302+0000 mgr.smithi078.aqnwdz (mgr.14203) 210 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:53 smithi195 bash[25267]: cluster 2024-09-21T11:57:51.458302+0000 mgr.smithi078.aqnwdz (mgr.14203) 210 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:53 smithi195 bash[25267]: cluster 2024-09-21T11:57:51.458302+0000 mgr.smithi078.aqnwdz (mgr.14203) 210 : cluster [DBG] pgmap v173: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:53.557 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch host ls' 2024-09-21T11:57:54.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:54 smithi195 bash[25267]: audit 2024-09-21T11:57:52.833381+0000 mgr.smithi078.aqnwdz (mgr.14203) 211 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:54.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:54 smithi195 bash[25267]: audit 2024-09-21T11:57:52.833381+0000 mgr.smithi078.aqnwdz (mgr.14203) 211 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:54.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:54 smithi078 bash[20010]: audit 2024-09-21T11:57:52.833381+0000 mgr.smithi078.aqnwdz (mgr.14203) 211 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:54.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:54 smithi078 bash[20010]: audit 2024-09-21T11:57:52.833381+0000 mgr.smithi078.aqnwdz (mgr.14203) 211 : audit [DBG] from='client.14498 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:57:55.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:55 smithi195 bash[25267]: cluster 2024-09-21T11:57:53.458823+0000 mgr.smithi078.aqnwdz (mgr.14203) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:55.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:55 smithi195 bash[25267]: cluster 2024-09-21T11:57:53.458823+0000 mgr.smithi078.aqnwdz (mgr.14203) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:55.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:55 smithi078 bash[20010]: cluster 2024-09-21T11:57:53.458823+0000 mgr.smithi078.aqnwdz (mgr.14203) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:55.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:55 smithi078 bash[20010]: cluster 2024-09-21T11:57:53.458823+0000 mgr.smithi078.aqnwdz (mgr.14203) 212 : cluster [DBG] pgmap v174: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:57.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:57 smithi078 bash[20010]: cluster 2024-09-21T11:57:55.459403+0000 mgr.smithi078.aqnwdz (mgr.14203) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:57.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:57 smithi078 bash[20010]: cluster 2024-09-21T11:57:55.459403+0000 mgr.smithi078.aqnwdz (mgr.14203) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:57.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:57 smithi195 bash[25267]: cluster 2024-09-21T11:57:55.459403+0000 mgr.smithi078.aqnwdz (mgr.14203) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:57.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:57 smithi195 bash[25267]: cluster 2024-09-21T11:57:55.459403+0000 mgr.smithi078.aqnwdz (mgr.14203) 213 : cluster [DBG] pgmap v175: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:58.366 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:57:59.378 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:59 smithi078 bash[20010]: cluster 2024-09-21T11:57:57.459965+0000 mgr.smithi078.aqnwdz (mgr.14203) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:59.379 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:57:59 smithi078 bash[20010]: cluster 2024-09-21T11:57:57.459965+0000 mgr.smithi078.aqnwdz (mgr.14203) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:59.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:59 smithi195 bash[25267]: cluster 2024-09-21T11:57:57.459965+0000 mgr.smithi078.aqnwdz (mgr.14203) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:59.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:57:59 smithi195 bash[25267]: cluster 2024-09-21T11:57:57.459965+0000 mgr.smithi078.aqnwdz (mgr.14203) 214 : cluster [DBG] pgmap v176: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:57:59.689 INFO:teuthology.orchestra.run.smithi078.stdout:HOST ADDR LABELS STATUS 2024-09-21T11:57:59.726 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 172.21.15.78 2024-09-21T11:57:59.726 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 172.21.15.195 2024-09-21T11:57:59.726 INFO:teuthology.orchestra.run.smithi078.stdout:2 hosts in cluster 2024-09-21T11:58:00.489 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch device ls' 2024-09-21T11:58:01.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:01 smithi078 bash[20010]: cluster 2024-09-21T11:57:59.460333+0000 mgr.smithi078.aqnwdz (mgr.14203) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:01.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:01 smithi078 bash[20010]: cluster 2024-09-21T11:57:59.460333+0000 mgr.smithi078.aqnwdz (mgr.14203) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:01.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:01 smithi078 bash[20010]: audit 2024-09-21T11:57:59.688037+0000 mgr.smithi078.aqnwdz (mgr.14203) 216 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:01.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:01 smithi078 bash[20010]: audit 2024-09-21T11:57:59.688037+0000 mgr.smithi078.aqnwdz (mgr.14203) 216 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:01.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:01 smithi195 bash[25267]: cluster 2024-09-21T11:57:59.460333+0000 mgr.smithi078.aqnwdz (mgr.14203) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:01.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:01 smithi195 bash[25267]: cluster 2024-09-21T11:57:59.460333+0000 mgr.smithi078.aqnwdz (mgr.14203) 215 : cluster [DBG] pgmap v177: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:01.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:01 smithi195 bash[25267]: audit 2024-09-21T11:57:59.688037+0000 mgr.smithi078.aqnwdz (mgr.14203) 216 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:01.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:01 smithi195 bash[25267]: audit 2024-09-21T11:57:59.688037+0000 mgr.smithi078.aqnwdz (mgr.14203) 216 : audit [DBG] from='client.14502 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:02 smithi078 bash[20010]: audit 2024-09-21T11:58:01.731001+0000 mon.smithi078 (mon.0) 750 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:02 smithi078 bash[20010]: audit 2024-09-21T11:58:01.731001+0000 mon.smithi078 (mon.0) 750 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:02.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:02 smithi195 bash[25267]: audit 2024-09-21T11:58:01.731001+0000 mon.smithi078 (mon.0) 750 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:02.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:02 smithi195 bash[25267]: audit 2024-09-21T11:58:01.731001+0000 mon.smithi078 (mon.0) 750 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:03.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:03 smithi078 bash[20010]: cluster 2024-09-21T11:58:01.460949+0000 mgr.smithi078.aqnwdz (mgr.14203) 217 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:03.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:03 smithi078 bash[20010]: cluster 2024-09-21T11:58:01.460949+0000 mgr.smithi078.aqnwdz (mgr.14203) 217 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:03.583 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:03 smithi195 bash[25267]: cluster 2024-09-21T11:58:01.460949+0000 mgr.smithi078.aqnwdz (mgr.14203) 217 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:03.583 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:03 smithi195 bash[25267]: cluster 2024-09-21T11:58:01.460949+0000 mgr.smithi078.aqnwdz (mgr.14203) 217 : cluster [DBG] pgmap v178: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:05.297 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:58:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:05 smithi078 bash[20010]: cluster 2024-09-21T11:58:03.461552+0000 mgr.smithi078.aqnwdz (mgr.14203) 218 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:05 smithi078 bash[20010]: cluster 2024-09-21T11:58:03.461552+0000 mgr.smithi078.aqnwdz (mgr.14203) 218 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:05.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:05 smithi195 bash[25267]: cluster 2024-09-21T11:58:03.461552+0000 mgr.smithi078.aqnwdz (mgr.14203) 218 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:05.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:05 smithi195 bash[25267]: cluster 2024-09-21T11:58:03.461552+0000 mgr.smithi078.aqnwdz (mgr.14203) 218 : cluster [DBG] pgmap v179: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:06.677 INFO:teuthology.orchestra.run.smithi078.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-21T11:58:06.677 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400QR400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-09-21T11:58:06.677 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme1n1 ssd Linux_3f63300798c5ee4d979a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:06.677 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme2n1 ssd Linux_32c2c76587d995c6ad06 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:06.677 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme3n1 ssd Linux_32a593f9f6d5d6d7d15a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:06.677 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme4n1 ssd Linux_1274239096e2f34517fd 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:06.678 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB751300FS480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-09-21T11:58:06.678 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme1n1 ssd Linux_33c055dd37b61d262f61 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:06.678 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme2n1 ssd Linux_da5d43f7b8c40fe8e6f0 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:06.678 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme3n1 ssd Linux_cb23693c7b1cac6408fc 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:06.678 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme4n1 ssd Linux_e74dc35d8d342433196f 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:07.389 INFO:teuthology.run_tasks:Running task vip... 2024-09-21T11:58:07.400 INFO:tasks.vip:Allocating static IPs for each host... 2024-09-21T11:58:07.400 INFO:tasks.vip:peername 172.21.15.78 2024-09-21T11:58:07.403 INFO:tasks.vip:172.21.15.78 in 172.21.0.0/20, pos 3917 2024-09-21T11:58:07.406 INFO:tasks.vip:smithi078.front.sepia.ceph.com static 10.0.15.78, vnet 10.0.0.0/16 2024-09-21T11:58:07.407 INFO:tasks.vip:VIPs are [IPv4Address('10.0.31.78')] 2024-09-21T11:58:07.407 DEBUG:teuthology.orchestra.run.smithi078:> sudo ip route ls 2024-09-21T11:58:07.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:07 smithi078 bash[20010]: cluster 2024-09-21T11:58:05.462152+0000 mgr.smithi078.aqnwdz (mgr.14203) 219 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:07.408 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:07 smithi078 bash[20010]: cluster 2024-09-21T11:58:05.462152+0000 mgr.smithi078.aqnwdz (mgr.14203) 219 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:07.419 INFO:teuthology.orchestra.run.smithi078.stdout:default via 172.21.15.254 dev enp3s0f1 2024-09-21T11:58:07.419 INFO:teuthology.orchestra.run.smithi078.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.78 metric 100 2024-09-21T11:58:07.420 INFO:teuthology.orchestra.run.smithi078.stdout:158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.78 metric 100 2024-09-21T11:58:07.420 INFO:teuthology.orchestra.run.smithi078.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-21T11:58:07.420 INFO:teuthology.orchestra.run.smithi078.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.78 metric 100 2024-09-21T11:58:07.420 INFO:teuthology.orchestra.run.smithi078.stdout:172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.78 metric 100 2024-09-21T11:58:07.420 INFO:teuthology.orchestra.run.smithi078.stdout:172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.78 metric 100 2024-09-21T11:58:07.420 INFO:teuthology.orchestra.run.smithi078.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.78 metric 100 2024-09-21T11:58:07.421 INFO:tasks.vip:Configuring 10.0.15.78 on smithi078.front.sepia.ceph.com iface enp3s0f1... 2024-09-21T11:58:07.421 DEBUG:teuthology.orchestra.run.smithi078:> sudo ip addr add 10.0.15.78/16 dev enp3s0f1 2024-09-21T11:58:07.474 INFO:tasks.vip:peername 172.21.15.195 2024-09-21T11:58:07.477 INFO:tasks.vip:172.21.15.195 in 172.21.0.0/20, pos 4034 2024-09-21T11:58:07.481 INFO:tasks.vip:smithi195.front.sepia.ceph.com static 10.0.15.195, vnet 10.0.0.0/16 2024-09-21T11:58:07.481 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip route ls 2024-09-21T11:58:07.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:07 smithi195 bash[25267]: cluster 2024-09-21T11:58:05.462152+0000 mgr.smithi078.aqnwdz (mgr.14203) 219 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:07.492 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:07 smithi195 bash[25267]: cluster 2024-09-21T11:58:05.462152+0000 mgr.smithi078.aqnwdz (mgr.14203) 219 : cluster [DBG] pgmap v180: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:07.495 INFO:teuthology.orchestra.run.smithi195.stdout:default via 172.21.15.254 dev enp3s0f1 2024-09-21T11:58:07.495 INFO:teuthology.orchestra.run.smithi195.stdout:default via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.195 metric 100 2024-09-21T11:58:07.496 INFO:teuthology.orchestra.run.smithi195.stdout:158.69.67.47 via 172.21.15.254 dev enp3s0f1 proto dhcp src 172.21.15.195 metric 100 2024-09-21T11:58:07.496 INFO:teuthology.orchestra.run.smithi195.stdout:172.17.0.0/16 dev docker0 proto kernel scope link src 172.17.0.1 linkdown 2024-09-21T11:58:07.496 INFO:teuthology.orchestra.run.smithi195.stdout:172.21.0.0/20 dev enp3s0f1 proto kernel scope link src 172.21.15.195 metric 100 2024-09-21T11:58:07.496 INFO:teuthology.orchestra.run.smithi195.stdout:172.21.0.1 dev enp3s0f1 proto dhcp scope link src 172.21.15.195 metric 100 2024-09-21T11:58:07.496 INFO:teuthology.orchestra.run.smithi195.stdout:172.21.0.2 dev enp3s0f1 proto dhcp scope link src 172.21.15.195 metric 100 2024-09-21T11:58:07.496 INFO:teuthology.orchestra.run.smithi195.stdout:172.21.15.254 dev enp3s0f1 proto dhcp scope link src 172.21.15.195 metric 100 2024-09-21T11:58:07.497 INFO:tasks.vip:Configuring 10.0.15.195 on smithi195.front.sepia.ceph.com iface enp3s0f1... 2024-09-21T11:58:07.497 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip addr add 10.0.15.195/16 dev enp3s0f1 2024-09-21T11:58:07.554 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T11:58:07.568 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:58:07.569 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch device ls --refresh' 2024-09-21T11:58:08.583 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:08 smithi195 bash[25267]: audit 2024-09-21T11:58:06.669337+0000 mgr.smithi078.aqnwdz (mgr.14203) 220 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:08.583 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:08 smithi195 bash[25267]: audit 2024-09-21T11:58:06.669337+0000 mgr.smithi078.aqnwdz (mgr.14203) 220 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:08.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:08 smithi078 bash[20010]: audit 2024-09-21T11:58:06.669337+0000 mgr.smithi078.aqnwdz (mgr.14203) 220 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:08.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:08 smithi078 bash[20010]: audit 2024-09-21T11:58:06.669337+0000 mgr.smithi078.aqnwdz (mgr.14203) 220 : audit [DBG] from='client.14506 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:09.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:09 smithi195 bash[25267]: cluster 2024-09-21T11:58:07.462681+0000 mgr.smithi078.aqnwdz (mgr.14203) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:09.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:09 smithi195 bash[25267]: cluster 2024-09-21T11:58:07.462681+0000 mgr.smithi078.aqnwdz (mgr.14203) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:09.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:09 smithi078 bash[20010]: cluster 2024-09-21T11:58:07.462681+0000 mgr.smithi078.aqnwdz (mgr.14203) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:09.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:09 smithi078 bash[20010]: cluster 2024-09-21T11:58:07.462681+0000 mgr.smithi078.aqnwdz (mgr.14203) 221 : cluster [DBG] pgmap v181: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:11.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:11 smithi195 bash[25267]: cluster 2024-09-21T11:58:09.463243+0000 mgr.smithi078.aqnwdz (mgr.14203) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:11.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:11 smithi195 bash[25267]: cluster 2024-09-21T11:58:09.463243+0000 mgr.smithi078.aqnwdz (mgr.14203) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:11.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:11 smithi078 bash[20010]: cluster 2024-09-21T11:58:09.463243+0000 mgr.smithi078.aqnwdz (mgr.14203) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:11.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:11 smithi078 bash[20010]: cluster 2024-09-21T11:58:09.463243+0000 mgr.smithi078.aqnwdz (mgr.14203) 222 : cluster [DBG] pgmap v182: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:12.375 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:58:13.556 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:13 smithi078 bash[20010]: cluster 2024-09-21T11:58:11.463834+0000 mgr.smithi078.aqnwdz (mgr.14203) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:13.557 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:13 smithi078 bash[20010]: cluster 2024-09-21T11:58:11.463834+0000 mgr.smithi078.aqnwdz (mgr.14203) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:13.583 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:13 smithi195 bash[25267]: cluster 2024-09-21T11:58:11.463834+0000 mgr.smithi078.aqnwdz (mgr.14203) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:13.583 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:13 smithi195 bash[25267]: cluster 2024-09-21T11:58:11.463834+0000 mgr.smithi078.aqnwdz (mgr.14203) 223 : cluster [DBG] pgmap v183: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:13.917 INFO:teuthology.orchestra.run.smithi078.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-21T11:58:13.917 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400QR400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-09-21T11:58:13.917 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme1n1 ssd Linux_3f63300798c5ee4d979a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:13.918 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme2n1 ssd Linux_32c2c76587d995c6ad06 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:13.918 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme3n1 ssd Linux_32a593f9f6d5d6d7d15a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:13.918 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme4n1 ssd Linux_1274239096e2f34517fd 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:13.918 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB751300FS480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-09-21T11:58:13.918 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme1n1 ssd Linux_33c055dd37b61d262f61 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:13.918 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme2n1 ssd Linux_da5d43f7b8c40fe8e6f0 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:13.918 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme3n1 ssd Linux_cb23693c7b1cac6408fc 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:13.918 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme4n1 ssd Linux_e74dc35d8d342433196f 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T11:58:14.313 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:14 smithi078 bash[20010]: audit 2024-09-21T11:58:13.918525+0000 mon.smithi078 (mon.0) 751 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:58:14.313 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:14 smithi078 bash[20010]: audit 2024-09-21T11:58:13.918525+0000 mon.smithi078 (mon.0) 751 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:58:14.558 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-21T11:58:14.568 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:58:14.568 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-21T11:58:14.580 INFO:teuthology.orchestra.run.smithi078.stderr:+ systemctl stop nfs-server 2024-09-21T11:58:14.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:14 smithi195 bash[25267]: audit 2024-09-21T11:58:13.918525+0000 mon.smithi078 (mon.0) 751 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:58:14.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:14 smithi195 bash[25267]: audit 2024-09-21T11:58:13.918525+0000 mon.smithi078 (mon.0) 751 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:58:14.716 INFO:tasks.vip:Running commands on role host.b host ubuntu@smithi195.front.sepia.ceph.com 2024-09-21T11:58:14.716 DEBUG:teuthology.orchestra.run.smithi195:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'systemctl stop nfs-server' 2024-09-21T11:58:14.729 INFO:teuthology.orchestra.run.smithi195.stderr:+ systemctl stop nfs-server 2024-09-21T11:58:14.854 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T11:58:14.872 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:58:14.873 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch apply rgw foorgw --port 8800' 2024-09-21T11:58:15.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:15 smithi195 bash[25267]: cluster 2024-09-21T11:58:13.464392+0000 mgr.smithi078.aqnwdz (mgr.14203) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:15.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:15 smithi195 bash[25267]: cluster 2024-09-21T11:58:13.464392+0000 mgr.smithi078.aqnwdz (mgr.14203) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:15.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:15 smithi195 bash[25267]: audit 2024-09-21T11:58:13.914184+0000 mgr.smithi078.aqnwdz (mgr.14203) 225 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:15.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:15 smithi195 bash[25267]: audit 2024-09-21T11:58:13.914184+0000 mgr.smithi078.aqnwdz (mgr.14203) 225 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:15.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:15 smithi078 bash[20010]: cluster 2024-09-21T11:58:13.464392+0000 mgr.smithi078.aqnwdz (mgr.14203) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:15.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:15 smithi078 bash[20010]: cluster 2024-09-21T11:58:13.464392+0000 mgr.smithi078.aqnwdz (mgr.14203) 224 : cluster [DBG] pgmap v184: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:15.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:15 smithi078 bash[20010]: audit 2024-09-21T11:58:13.914184+0000 mgr.smithi078.aqnwdz (mgr.14203) 225 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:15.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:15 smithi078 bash[20010]: audit 2024-09-21T11:58:13.914184+0000 mgr.smithi078.aqnwdz (mgr.14203) 225 : audit [DBG] from='client.14510 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "refresh": true, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:17.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:17 smithi195 bash[25267]: cluster 2024-09-21T11:58:15.464955+0000 mgr.smithi078.aqnwdz (mgr.14203) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:17.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:17 smithi195 bash[25267]: cluster 2024-09-21T11:58:15.464955+0000 mgr.smithi078.aqnwdz (mgr.14203) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:17.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:17 smithi195 bash[25267]: audit 2024-09-21T11:58:16.731634+0000 mon.smithi078 (mon.0) 752 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:17.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:17 smithi195 bash[25267]: audit 2024-09-21T11:58:16.731634+0000 mon.smithi078 (mon.0) 752 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:17.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:17 smithi078 bash[20010]: cluster 2024-09-21T11:58:15.464955+0000 mgr.smithi078.aqnwdz (mgr.14203) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:17.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:17 smithi078 bash[20010]: cluster 2024-09-21T11:58:15.464955+0000 mgr.smithi078.aqnwdz (mgr.14203) 226 : cluster [DBG] pgmap v185: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:17.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:17 smithi078 bash[20010]: audit 2024-09-21T11:58:16.731634+0000 mon.smithi078 (mon.0) 752 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:17.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:17 smithi078 bash[20010]: audit 2024-09-21T11:58:16.731634+0000 mon.smithi078 (mon.0) 752 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:18.977 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:58:19.361 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:19 smithi078 bash[20010]: cluster 2024-09-21T11:58:17.465688+0000 mgr.smithi078.aqnwdz (mgr.14203) 227 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:19.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:19 smithi195 bash[25267]: cluster 2024-09-21T11:58:17.465688+0000 mgr.smithi078.aqnwdz (mgr.14203) 227 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:19.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:19 smithi195 bash[25267]: cluster 2024-09-21T11:58:17.465688+0000 mgr.smithi078.aqnwdz (mgr.14203) 227 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:19.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:19 smithi078 bash[20010]: cluster 2024-09-21T11:58:17.465688+0000 mgr.smithi078.aqnwdz (mgr.14203) 227 : cluster [DBG] pgmap v186: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:20.601 INFO:teuthology.orchestra.run.smithi078.stdout:Scheduled rgw.foorgw update... 2024-09-21T11:58:20.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.428827+0000 mon.smithi078 (mon.0) 753 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.428827+0000 mon.smithi078 (mon.0) 753 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.434083+0000 mon.smithi078 (mon.0) 754 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.434083+0000 mon.smithi078 (mon.0) 754 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: cluster 2024-09-21T11:58:19.466057+0000 mgr.smithi078.aqnwdz (mgr.14203) 228 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:20.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: cluster 2024-09-21T11:58:19.466057+0000 mgr.smithi078.aqnwdz (mgr.14203) 228 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:20.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.782134+0000 mon.smithi078 (mon.0) 755 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.613 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.782134+0000 mon.smithi078 (mon.0) 755 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.786899+0000 mon.smithi078 (mon.0) 756 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.786899+0000 mon.smithi078 (mon.0) 756 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.898253+0000 mon.smithi078 (mon.0) 757 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.898253+0000 mon.smithi078 (mon.0) 757 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.907417+0000 mon.smithi078 (mon.0) 758 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:19.907417+0000 mon.smithi078 (mon.0) 758 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:20.248897+0000 mon.smithi078 (mon.0) 759 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:20.248897+0000 mon.smithi078 (mon.0) 759 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:20.253956+0000 mon.smithi078 (mon.0) 760 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:20 smithi078 bash[20010]: audit 2024-09-21T11:58:20.253956+0000 mon.smithi078 (mon.0) 760 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.428827+0000 mon.smithi078 (mon.0) 753 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.428827+0000 mon.smithi078 (mon.0) 753 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.434083+0000 mon.smithi078 (mon.0) 754 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.434083+0000 mon.smithi078 (mon.0) 754 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: cluster 2024-09-21T11:58:19.466057+0000 mgr.smithi078.aqnwdz (mgr.14203) 228 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: cluster 2024-09-21T11:58:19.466057+0000 mgr.smithi078.aqnwdz (mgr.14203) 228 : cluster [DBG] pgmap v187: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.782134+0000 mon.smithi078 (mon.0) 755 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.782134+0000 mon.smithi078 (mon.0) 755 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.786899+0000 mon.smithi078 (mon.0) 756 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.786899+0000 mon.smithi078 (mon.0) 756 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.898253+0000 mon.smithi078 (mon.0) 757 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.898253+0000 mon.smithi078 (mon.0) 757 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.907417+0000 mon.smithi078 (mon.0) 758 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:19.907417+0000 mon.smithi078 (mon.0) 758 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:20.248897+0000 mon.smithi078 (mon.0) 759 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:20.248897+0000 mon.smithi078 (mon.0) 759 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:20.253956+0000 mon.smithi078 (mon.0) 760 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:20.870 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:20 smithi195 bash[25267]: audit 2024-09-21T11:58:20.253956+0000 mon.smithi078 (mon.0) 760 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:21.262 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph nfs cluster create foo --ingress --virtual-ip 10.0.31.78/16' 2024-09-21T11:58:21.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:21 smithi195 bash[25267]: audit 2024-09-21T11:58:20.592389+0000 mgr.smithi078.aqnwdz (mgr.14203) 229 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:21.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:21 smithi195 bash[25267]: audit 2024-09-21T11:58:20.592389+0000 mgr.smithi078.aqnwdz (mgr.14203) 229 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:21.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:21 smithi195 bash[25267]: cephadm 2024-09-21T11:58:20.595314+0000 mgr.smithi078.aqnwdz (mgr.14203) 230 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T11:58:21.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:21 smithi195 bash[25267]: cephadm 2024-09-21T11:58:20.595314+0000 mgr.smithi078.aqnwdz (mgr.14203) 230 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T11:58:21.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:21 smithi195 bash[25267]: audit 2024-09-21T11:58:20.600965+0000 mon.smithi078 (mon.0) 761 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:21.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:21 smithi195 bash[25267]: audit 2024-09-21T11:58:20.600965+0000 mon.smithi078 (mon.0) 761 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:21.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:21 smithi078 bash[20010]: audit 2024-09-21T11:58:20.592389+0000 mgr.smithi078.aqnwdz (mgr.14203) 229 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:21.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:21 smithi078 bash[20010]: audit 2024-09-21T11:58:20.592389+0000 mgr.smithi078.aqnwdz (mgr.14203) 229 : audit [DBG] from='client.14514 -' entity='client.admin' cmd=[{"prefix": "orch apply rgw", "svc_id": "foorgw", "port": 8800, "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:21.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:21 smithi078 bash[20010]: cephadm 2024-09-21T11:58:20.595314+0000 mgr.smithi078.aqnwdz (mgr.14203) 230 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T11:58:21.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:21 smithi078 bash[20010]: cephadm 2024-09-21T11:58:20.595314+0000 mgr.smithi078.aqnwdz (mgr.14203) 230 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T11:58:21.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:21 smithi078 bash[20010]: audit 2024-09-21T11:58:20.600965+0000 mon.smithi078 (mon.0) 761 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:21.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:21 smithi078 bash[20010]: audit 2024-09-21T11:58:20.600965+0000 mon.smithi078 (mon.0) 761 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:22.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:22 smithi195 bash[25267]: cluster 2024-09-21T11:58:21.466415+0000 mgr.smithi078.aqnwdz (mgr.14203) 231 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:22.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:22 smithi195 bash[25267]: cluster 2024-09-21T11:58:21.466415+0000 mgr.smithi078.aqnwdz (mgr.14203) 231 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:22.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:22 smithi078 bash[20010]: cluster 2024-09-21T11:58:21.466415+0000 mgr.smithi078.aqnwdz (mgr.14203) 231 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:22.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:22 smithi078 bash[20010]: cluster 2024-09-21T11:58:21.466415+0000 mgr.smithi078.aqnwdz (mgr.14203) 231 : cluster [DBG] pgmap v188: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:24.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:24 smithi195 bash[25267]: cluster 2024-09-21T11:58:23.466962+0000 mgr.smithi078.aqnwdz (mgr.14203) 232 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:24.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:24 smithi195 bash[25267]: cluster 2024-09-21T11:58:23.466962+0000 mgr.smithi078.aqnwdz (mgr.14203) 232 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:24 smithi078 bash[20010]: cluster 2024-09-21T11:58:23.466962+0000 mgr.smithi078.aqnwdz (mgr.14203) 232 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:24 smithi078 bash[20010]: cluster 2024-09-21T11:58:23.466962+0000 mgr.smithi078.aqnwdz (mgr.14203) 232 : cluster [DBG] pgmap v189: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:25.333 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:58:26.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:26 smithi195 bash[25267]: cluster 2024-09-21T11:58:25.467574+0000 mgr.smithi078.aqnwdz (mgr.14203) 233 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:26.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:26 smithi195 bash[25267]: cluster 2024-09-21T11:58:25.467574+0000 mgr.smithi078.aqnwdz (mgr.14203) 233 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:26.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:26 smithi078 bash[20010]: cluster 2024-09-21T11:58:25.467574+0000 mgr.smithi078.aqnwdz (mgr.14203) 233 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:26.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:26 smithi078 bash[20010]: cluster 2024-09-21T11:58:25.467574+0000 mgr.smithi078.aqnwdz (mgr.14203) 233 : cluster [DBG] pgmap v190: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:27.886 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:27 smithi078 bash[20010]: audit 2024-09-21T11:58:27.269729+0000 mon.smithi078 (mon.0) 762 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:58:27.887 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:27 smithi078 bash[20010]: audit 2024-09-21T11:58:27.269729+0000 mon.smithi078 (mon.0) 762 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:58:28.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:27 smithi195 bash[25267]: audit 2024-09-21T11:58:27.269729+0000 mon.smithi078 (mon.0) 762 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:58:28.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:27 smithi195 bash[25267]: audit 2024-09-21T11:58:27.269729+0000 mon.smithi078 (mon.0) 762 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true} : dispatch 2024-09-21T11:58:28.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: audit 2024-09-21T11:58:27.266723+0000 mgr.smithi078.aqnwdz (mgr.14203) 234 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.78/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:28.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: audit 2024-09-21T11:58:27.266723+0000 mgr.smithi078.aqnwdz (mgr.14203) 234 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.78/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:28.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: cluster 2024-09-21T11:58:27.468135+0000 mgr.smithi078.aqnwdz (mgr.14203) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:28.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: cluster 2024-09-21T11:58:27.468135+0000 mgr.smithi078.aqnwdz (mgr.14203) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:28.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: audit 2024-09-21T11:58:27.628944+0000 mon.smithi078 (mon.0) 763 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-21T11:58:28.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: audit 2024-09-21T11:58:27.628944+0000 mon.smithi078 (mon.0) 763 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-21T11:58:28.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: cluster 2024-09-21T11:58:27.636444+0000 mon.smithi078 (mon.0) 764 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-21T11:58:28.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: cluster 2024-09-21T11:58:27.636444+0000 mon.smithi078 (mon.0) 764 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-21T11:58:28.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: audit 2024-09-21T11:58:27.638454+0000 mon.smithi078 (mon.0) 765 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-21T11:58:28.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:28 smithi195 bash[25267]: audit 2024-09-21T11:58:27.638454+0000 mon.smithi078 (mon.0) 765 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-21T11:58:28.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: audit 2024-09-21T11:58:27.266723+0000 mgr.smithi078.aqnwdz (mgr.14203) 234 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.78/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:28.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: audit 2024-09-21T11:58:27.266723+0000 mgr.smithi078.aqnwdz (mgr.14203) 234 : audit [DBG] from='client.14518 -' entity='client.admin' cmd=[{"prefix": "nfs cluster create", "cluster_id": "foo", "ingress": true, "virtual_ip": "10.0.31.78/16", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:58:28.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: cluster 2024-09-21T11:58:27.468135+0000 mgr.smithi078.aqnwdz (mgr.14203) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:28.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: cluster 2024-09-21T11:58:27.468135+0000 mgr.smithi078.aqnwdz (mgr.14203) 235 : cluster [DBG] pgmap v191: 1 pgs: 1 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:28.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: audit 2024-09-21T11:58:27.628944+0000 mon.smithi078 (mon.0) 763 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-21T11:58:28.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: audit 2024-09-21T11:58:27.628944+0000 mon.smithi078 (mon.0) 763 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool create", "pool": ".nfs", "yes_i_really_mean_it": true}]': finished 2024-09-21T11:58:28.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: cluster 2024-09-21T11:58:27.636444+0000 mon.smithi078 (mon.0) 764 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-21T11:58:28.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: cluster 2024-09-21T11:58:27.636444+0000 mon.smithi078 (mon.0) 764 : cluster [DBG] osdmap e41: 8 total, 8 up, 8 in 2024-09-21T11:58:28.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: audit 2024-09-21T11:58:27.638454+0000 mon.smithi078 (mon.0) 765 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-21T11:58:28.905 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:28 smithi078 bash[20010]: audit 2024-09-21T11:58:27.638454+0000 mon.smithi078 (mon.0) 765 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"} : dispatch 2024-09-21T11:58:29.683 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-21T11:58:29.692 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:58:29.693 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'dnf install -y python3-boto3 || apt install -y python3-boto3' 2024-09-21T11:58:29.703 INFO:teuthology.orchestra.run.smithi078.stderr:+ dnf install -y python3-boto3 2024-09-21T11:58:29.703 INFO:teuthology.orchestra.run.smithi078.stderr:bash: line 1: dnf: command not found 2024-09-21T11:58:29.704 INFO:teuthology.orchestra.run.smithi078.stderr:+ apt install -y python3-boto3 2024-09-21T11:58:29.707 INFO:teuthology.orchestra.run.smithi078.stderr: 2024-09-21T11:58:29.707 INFO:teuthology.orchestra.run.smithi078.stderr:WARNING: apt does not have a stable CLI interface. Use with caution in scripts. 2024-09-21T11:58:29.707 INFO:teuthology.orchestra.run.smithi078.stderr: 2024-09-21T11:58:29.750 INFO:teuthology.orchestra.run.smithi078.stdout:Reading package lists... 2024-09-21T11:58:29.979 INFO:teuthology.orchestra.run.smithi078.stdout:Building dependency tree... 2024-09-21T11:58:29.980 INFO:teuthology.orchestra.run.smithi078.stdout:Reading state information... 2024-09-21T11:58:30.025 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: audit 2024-09-21T11:58:28.631844+0000 mon.smithi078 (mon.0) 766 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: audit 2024-09-21T11:58:28.631844+0000 mon.smithi078 (mon.0) 766 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: cluster 2024-09-21T11:58:28.640810+0000 mon.smithi078 (mon.0) 767 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: cluster 2024-09-21T11:58:28.640810+0000 mon.smithi078 (mon.0) 767 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: cephadm 2024-09-21T11:58:28.681749+0000 mgr.smithi078.aqnwdz (mgr.14203) 236 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: cephadm 2024-09-21T11:58:28.681749+0000 mgr.smithi078.aqnwdz (mgr.14203) 236 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: audit 2024-09-21T11:58:28.686044+0000 mon.smithi078 (mon.0) 768 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: audit 2024-09-21T11:58:28.686044+0000 mon.smithi078 (mon.0) 768 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: cephadm 2024-09-21T11:58:28.687839+0000 mgr.smithi078.aqnwdz (mgr.14203) 237 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: cephadm 2024-09-21T11:58:28.687839+0000 mgr.smithi078.aqnwdz (mgr.14203) 237 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: audit 2024-09-21T11:58:28.693587+0000 mon.smithi078 (mon.0) 769 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:30.026 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:29 smithi195 bash[25267]: audit 2024-09-21T11:58:28.693587+0000 mon.smithi078 (mon.0) 769 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:30.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: audit 2024-09-21T11:58:28.631844+0000 mon.smithi078 (mon.0) 766 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-21T11:58:30.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: audit 2024-09-21T11:58:28.631844+0000 mon.smithi078 (mon.0) 766 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pool application enable", "pool": ".nfs", "app": "nfs"}]': finished 2024-09-21T11:58:30.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: cluster 2024-09-21T11:58:28.640810+0000 mon.smithi078 (mon.0) 767 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-21T11:58:30.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: cluster 2024-09-21T11:58:28.640810+0000 mon.smithi078 (mon.0) 767 : cluster [DBG] osdmap e42: 8 total, 8 up, 8 in 2024-09-21T11:58:30.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: cephadm 2024-09-21T11:58:28.681749+0000 mgr.smithi078.aqnwdz (mgr.14203) 236 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-21T11:58:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: cephadm 2024-09-21T11:58:28.681749+0000 mgr.smithi078.aqnwdz (mgr.14203) 236 : cephadm [INF] Saving service nfs.foo spec with placement count:1 2024-09-21T11:58:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: audit 2024-09-21T11:58:28.686044+0000 mon.smithi078 (mon.0) 768 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: audit 2024-09-21T11:58:28.686044+0000 mon.smithi078 (mon.0) 768 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: cephadm 2024-09-21T11:58:28.687839+0000 mgr.smithi078.aqnwdz (mgr.14203) 237 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-21T11:58:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: cephadm 2024-09-21T11:58:28.687839+0000 mgr.smithi078.aqnwdz (mgr.14203) 237 : cephadm [INF] Saving service ingress.nfs.foo spec with placement count:2 2024-09-21T11:58:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: audit 2024-09-21T11:58:28.693587+0000 mon.smithi078 (mon.0) 769 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:29 smithi078 bash[20010]: audit 2024-09-21T11:58:28.693587+0000 mon.smithi078 (mon.0) 769 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:30.192 INFO:teuthology.orchestra.run.smithi078.stdout:The following packages were automatically installed and are no longer required: 2024-09-21T11:58:30.192 INFO:teuthology.orchestra.run.smithi078.stdout: libboost-iostreams1.74.0 libboost-thread1.74.0 libgfapi0 libgfrpc0 libgfxdr0 2024-09-21T11:58:30.192 INFO:teuthology.orchestra.run.smithi078.stdout: libglusterfs0 libiscsi7 libpmemobj1 libpython2-dev libpython2-stdlib 2024-09-21T11:58:30.192 INFO:teuthology.orchestra.run.smithi078.stdout: libpython2.7 libpython2.7-dev libpython2.7-minimal libpython2.7-stdlib 2024-09-21T11:58:30.193 INFO:teuthology.orchestra.run.smithi078.stdout: linux-image-5.4.0-135-generic linux-modules-5.4.0-135-generic python2 2024-09-21T11:58:30.193 INFO:teuthology.orchestra.run.smithi078.stdout: python2-dev python2-minimal python2.7 python2.7-dev python2.7-minimal 2024-09-21T11:58:30.193 INFO:teuthology.orchestra.run.smithi078.stdout:Use 'sudo apt autoremove' to remove them. 2024-09-21T11:58:30.195 INFO:teuthology.orchestra.run.smithi078.stdout:The following additional packages will be installed: 2024-09-21T11:58:30.195 INFO:teuthology.orchestra.run.smithi078.stdout: python3-botocore python3-certifi python3-idna python3-jmespath 2024-09-21T11:58:30.195 INFO:teuthology.orchestra.run.smithi078.stdout: python3-requests python3-s3transfer python3-urllib3 2024-09-21T11:58:30.196 INFO:teuthology.orchestra.run.smithi078.stdout:Suggested packages: 2024-09-21T11:58:30.196 INFO:teuthology.orchestra.run.smithi078.stdout: python3-openssl python3-socks python-requests-doc 2024-09-21T11:58:30.226 INFO:teuthology.orchestra.run.smithi078.stdout:The following NEW packages will be installed: 2024-09-21T11:58:30.226 INFO:teuthology.orchestra.run.smithi078.stdout: python3-boto3 python3-botocore python3-certifi python3-idna python3-jmespath 2024-09-21T11:58:30.226 INFO:teuthology.orchestra.run.smithi078.stdout: python3-requests python3-s3transfer python3-urllib3 2024-09-21T11:58:30.409 INFO:teuthology.orchestra.run.smithi078.stdout:0 upgraded, 8 newly installed, 0 to remove and 332 not upgraded. 2024-09-21T11:58:30.458 INFO:teuthology.orchestra.run.smithi078.stdout:Need to get 4,999 kB of archives. 2024-09-21T11:58:30.458 INFO:teuthology.orchestra.run.smithi078.stdout:After this operation, 66.9 MB of additional disk space will be used. 2024-09-21T11:58:30.458 INFO:teuthology.orchestra.run.smithi078.stdout:Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-jmespath all 0.10.0-1 [21.7 kB] 2024-09-21T11:58:30.581 INFO:teuthology.orchestra.run.smithi078.stdout:Get:2 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-urllib3 all 1.26.5-1~exp1ubuntu0.1 [98.2 kB] 2024-09-21T11:58:30.756 INFO:teuthology.orchestra.run.smithi078.stdout:Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 python3-certifi all 2020.6.20-1 [150 kB] 2024-09-21T11:58:30.856 INFO:teuthology.orchestra.run.smithi078.stdout:Get:4 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-idna all 3.3-1ubuntu0.1 [52.1 kB] 2024-09-21T11:58:30.877 INFO:teuthology.orchestra.run.smithi078.stdout:Get:5 http://archive.ubuntu.com/ubuntu jammy-updates/main amd64 python3-requests all 2.25.1+dfsg-2ubuntu0.1 [48.8 kB] 2024-09-21T11:58:30.893 INFO:teuthology.orchestra.run.smithi078.stdout:Get:6 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-botocore all 1.23.34+repack-1 [4,508 kB] 2024-09-21T11:58:31.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:30 smithi195 bash[25267]: cluster 2024-09-21T11:58:29.468863+0000 mgr.smithi078.aqnwdz (mgr.14203) 238 : cluster [DBG] pgmap v194: 33 pgs: 2 creating+peering, 21 unknown, 10 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:31.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:30 smithi195 bash[25267]: cluster 2024-09-21T11:58:29.468863+0000 mgr.smithi078.aqnwdz (mgr.14203) 238 : cluster [DBG] pgmap v194: 33 pgs: 2 creating+peering, 21 unknown, 10 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:31.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:30 smithi195 bash[25267]: cluster 2024-09-21T11:58:29.651877+0000 mon.smithi078 (mon.0) 770 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-21T11:58:31.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:30 smithi195 bash[25267]: cluster 2024-09-21T11:58:29.651877+0000 mon.smithi078 (mon.0) 770 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-21T11:58:31.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:30 smithi195 bash[25267]: audit 2024-09-21T11:58:30.556127+0000 mon.smithi078 (mon.0) 771 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:31.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:30 smithi195 bash[25267]: audit 2024-09-21T11:58:30.556127+0000 mon.smithi078 (mon.0) 771 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:31.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:30 smithi195 bash[25267]: audit 2024-09-21T11:58:30.565317+0000 mon.smithi078 (mon.0) 772 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:31.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:30 smithi195 bash[25267]: audit 2024-09-21T11:58:30.565317+0000 mon.smithi078 (mon.0) 772 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:31.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:30 smithi078 bash[20010]: cluster 2024-09-21T11:58:29.468863+0000 mgr.smithi078.aqnwdz (mgr.14203) 238 : cluster [DBG] pgmap v194: 33 pgs: 2 creating+peering, 21 unknown, 10 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:31.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:30 smithi078 bash[20010]: cluster 2024-09-21T11:58:29.468863+0000 mgr.smithi078.aqnwdz (mgr.14203) 238 : cluster [DBG] pgmap v194: 33 pgs: 2 creating+peering, 21 unknown, 10 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:31.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:30 smithi078 bash[20010]: cluster 2024-09-21T11:58:29.651877+0000 mon.smithi078 (mon.0) 770 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-21T11:58:31.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:30 smithi078 bash[20010]: cluster 2024-09-21T11:58:29.651877+0000 mon.smithi078 (mon.0) 770 : cluster [DBG] osdmap e43: 8 total, 8 up, 8 in 2024-09-21T11:58:31.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:30 smithi078 bash[20010]: audit 2024-09-21T11:58:30.556127+0000 mon.smithi078 (mon.0) 771 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:31.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:30 smithi078 bash[20010]: audit 2024-09-21T11:58:30.556127+0000 mon.smithi078 (mon.0) 771 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:31.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:30 smithi078 bash[20010]: audit 2024-09-21T11:58:30.565317+0000 mon.smithi078 (mon.0) 772 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:31.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:30 smithi078 bash[20010]: audit 2024-09-21T11:58:30.565317+0000 mon.smithi078 (mon.0) 772 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:31.197 INFO:teuthology.orchestra.run.smithi078.stdout:Get:7 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-s3transfer all 0.5.0-1 [51.5 kB] 2024-09-21T11:58:31.199 INFO:teuthology.orchestra.run.smithi078.stdout:Get:8 http://archive.ubuntu.com/ubuntu jammy/universe amd64 python3-boto3 all 1.20.34+dfsg-1 [68.0 kB] 2024-09-21T11:58:31.510 INFO:teuthology.orchestra.run.smithi078.stderr:debconf: unable to initialize frontend: Dialog 2024-09-21T11:58:31.510 INFO:teuthology.orchestra.run.smithi078.stderr:debconf: (Dialog frontend will not work on a dumb terminal, an emacs shell buffer, or without a controlling terminal.) 2024-09-21T11:58:31.510 INFO:teuthology.orchestra.run.smithi078.stderr:debconf: falling back to frontend: Readline 2024-09-21T11:58:31.536 INFO:teuthology.orchestra.run.smithi078.stderr:debconf: unable to initialize frontend: Readline 2024-09-21T11:58:31.536 INFO:teuthology.orchestra.run.smithi078.stderr:debconf: (This frontend requires a controlling tty.) 2024-09-21T11:58:31.536 INFO:teuthology.orchestra.run.smithi078.stderr:debconf: falling back to frontend: Teletype 2024-09-21T11:58:31.540 INFO:teuthology.orchestra.run.smithi078.stderr:dpkg-preconfigure: unable to re-open stdin: 2024-09-21T11:58:31.574 INFO:teuthology.orchestra.run.smithi078.stdout:Fetched 4,999 kB in 1s (5,181 kB/s) 2024-09-21T11:58:32.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:31 smithi195 bash[25267]: cluster 2024-09-21T11:58:30.708002+0000 mon.smithi078 (mon.0) 773 : cluster [DBG] mgrmap e21: smithi078.aqnwdz(active, since 5m), standbys: smithi195.wpaqjn 2024-09-21T11:58:32.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:31 smithi195 bash[25267]: cluster 2024-09-21T11:58:30.708002+0000 mon.smithi078 (mon.0) 773 : cluster [DBG] mgrmap e21: smithi078.aqnwdz(active, since 5m), standbys: smithi195.wpaqjn 2024-09-21T11:58:32.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:31 smithi078 bash[20010]: cluster 2024-09-21T11:58:30.708002+0000 mon.smithi078 (mon.0) 773 : cluster [DBG] mgrmap e21: smithi078.aqnwdz(active, since 5m), standbys: smithi195.wpaqjn 2024-09-21T11:58:32.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:31 smithi078 bash[20010]: cluster 2024-09-21T11:58:30.708002+0000 mon.smithi078 (mon.0) 773 : cluster [DBG] mgrmap e21: smithi078.aqnwdz(active, since 5m), standbys: smithi195.wpaqjn 2024-09-21T11:58:32.165 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package python3-jmespath. 2024-09-21T11:58:32.274 INFO:teuthology.orchestra.run.smithi078.stdout:(Reading database ... (Reading database ... 5% (Reading database ... 10% (Reading database ... 15% (Reading database ... 20% (Reading database ... 25% (Reading database ... 30% (Reading database ... 35% (Reading database ... 40% (Reading database ... 45% (Reading database ... 50% (Reading database ... 55% (Reading database ... 60% (Reading database ... 65% (Reading database ... 70% (Reading database ... 75% (Reading database ... 80% (Reading database ... 85% (Reading database ... 90% (Reading database ... 95% (Reading database ... 100% (Reading database ... 165990 files and directories currently installed.) 2024-09-21T11:58:32.280 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../0-python3-jmespath_0.10.0-1_all.deb ... 2024-09-21T11:58:32.322 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking python3-jmespath (0.10.0-1) ... 2024-09-21T11:58:32.643 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package python3-urllib3. 2024-09-21T11:58:32.669 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../1-python3-urllib3_1.26.5-1~exp1ubuntu0.1_all.deb ... 2024-09-21T11:58:32.709 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-21T11:58:33.038 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package python3-certifi. 2024-09-21T11:58:33.064 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../2-python3-certifi_2020.6.20-1_all.deb ... 2024-09-21T11:58:33.104 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking python3-certifi (2020.6.20-1) ... 2024-09-21T11:58:33.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: cluster 2024-09-21T11:58:31.469523+0000 mgr.smithi078.aqnwdz (mgr.14203) 239 : cluster [DBG] pgmap v196: 33 pgs: 2 creating+peering, 11 unknown, 20 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:33.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: cluster 2024-09-21T11:58:31.469523+0000 mgr.smithi078.aqnwdz (mgr.14203) 239 : cluster [DBG] pgmap v196: 33 pgs: 2 creating+peering, 11 unknown, 20 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:33.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:31.731963+0000 mon.smithi078 (mon.0) 774 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:33.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:31.731963+0000 mon.smithi078 (mon.0) 774 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:33.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.268041+0000 mon.smithi078 (mon.0) 775 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.268041+0000 mon.smithi078 (mon.0) 775 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.280626+0000 mon.smithi078 (mon.0) 776 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.280626+0000 mon.smithi078 (mon.0) 776 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.282651+0000 mon.smithi078 (mon.0) 777 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.282651+0000 mon.smithi078 (mon.0) 777 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.283949+0000 mon.smithi078 (mon.0) 778 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:58:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.283949+0000 mon.smithi078 (mon.0) 778 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:58:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.292698+0000 mon.smithi078 (mon.0) 779 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.292698+0000 mon.smithi078 (mon.0) 779 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.295938+0000 mon.smithi078 (mon.0) 780 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:58:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.295938+0000 mon.smithi078 (mon.0) 780 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:58:33.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.306178+0000 mon.smithi078 (mon.0) 781 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.rsgiag", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.306178+0000 mon.smithi078 (mon.0) 781 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.rsgiag", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.310339+0000 mon.smithi078 (mon.0) 782 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.rsgiag", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.310339+0000 mon.smithi078 (mon.0) 782 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.rsgiag", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.320155+0000 mon.smithi078 (mon.0) 783 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.320155+0000 mon.smithi078 (mon.0) 783 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.121 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.323606+0000 mon.smithi078 (mon.0) 784 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:33.122 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:32 smithi195 bash[25267]: audit 2024-09-21T11:58:32.323606+0000 mon.smithi078 (mon.0) 784 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:33.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: cluster 2024-09-21T11:58:31.469523+0000 mgr.smithi078.aqnwdz (mgr.14203) 239 : cluster [DBG] pgmap v196: 33 pgs: 2 creating+peering, 11 unknown, 20 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:33.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: cluster 2024-09-21T11:58:31.469523+0000 mgr.smithi078.aqnwdz (mgr.14203) 239 : cluster [DBG] pgmap v196: 33 pgs: 2 creating+peering, 11 unknown, 20 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:33.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:31.731963+0000 mon.smithi078 (mon.0) 774 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:33.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:31.731963+0000 mon.smithi078 (mon.0) 774 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:33.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.268041+0000 mon.smithi078 (mon.0) 775 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.268041+0000 mon.smithi078 (mon.0) 775 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.280626+0000 mon.smithi078 (mon.0) 776 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.280626+0000 mon.smithi078 (mon.0) 776 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.282651+0000 mon.smithi078 (mon.0) 777 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.282651+0000 mon.smithi078 (mon.0) 777 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.283949+0000 mon.smithi078 (mon.0) 778 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.283949+0000 mon.smithi078 (mon.0) 778 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.292698+0000 mon.smithi078 (mon.0) 779 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.292698+0000 mon.smithi078 (mon.0) 779 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.295938+0000 mon.smithi078 (mon.0) 780 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.295938+0000 mon.smithi078 (mon.0) 780 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.306178+0000 mon.smithi078 (mon.0) 781 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.rsgiag", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.306178+0000 mon.smithi078 (mon.0) 781 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.rsgiag", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.310339+0000 mon.smithi078 (mon.0) 782 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.rsgiag", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.310339+0000 mon.smithi078 (mon.0) 782 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi195.rsgiag", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.320155+0000 mon.smithi078 (mon.0) 783 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.320155+0000 mon.smithi078 (mon.0) 783 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:33.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.323606+0000 mon.smithi078 (mon.0) 784 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:33.157 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:32 smithi078 bash[20010]: audit 2024-09-21T11:58:32.323606+0000 mon.smithi078 (mon.0) 784 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:33.424 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package python3-idna. 2024-09-21T11:58:33.454 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../3-python3-idna_3.3-1ubuntu0.1_all.deb ... 2024-09-21T11:58:33.483 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking python3-idna (3.3-1ubuntu0.1) ... 2024-09-21T11:58:33.803 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package python3-requests. 2024-09-21T11:58:33.830 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../4-python3-requests_2.25.1+dfsg-2ubuntu0.1_all.deb ... 2024-09-21T11:58:33.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:33 smithi195 bash[25267]: cephadm 2024-09-21T11:58:32.325062+0000 mgr.smithi078.aqnwdz (mgr.14203) 240 : cephadm [INF] Deploying daemon rgw.foorgw.smithi195.rsgiag on smithi195 2024-09-21T11:58:33.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:33 smithi195 bash[25267]: cephadm 2024-09-21T11:58:32.325062+0000 mgr.smithi078.aqnwdz (mgr.14203) 240 : cephadm [INF] Deploying daemon rgw.foorgw.smithi195.rsgiag on smithi195 2024-09-21T11:58:33.869 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-21T11:58:34.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:33 smithi078 bash[20010]: cephadm 2024-09-21T11:58:32.325062+0000 mgr.smithi078.aqnwdz (mgr.14203) 240 : cephadm [INF] Deploying daemon rgw.foorgw.smithi195.rsgiag on smithi195 2024-09-21T11:58:34.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:33 smithi078 bash[20010]: cephadm 2024-09-21T11:58:32.325062+0000 mgr.smithi078.aqnwdz (mgr.14203) 240 : cephadm [INF] Deploying daemon rgw.foorgw.smithi195.rsgiag on smithi195 2024-09-21T11:58:34.181 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package python3-botocore. 2024-09-21T11:58:34.208 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../5-python3-botocore_1.23.34+repack-1_all.deb ... 2024-09-21T11:58:34.247 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking python3-botocore (1.23.34+repack-1) ... 2024-09-21T11:58:34.940 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:34 smithi195 bash[25267]: cluster 2024-09-21T11:58:33.470184+0000 mgr.smithi078.aqnwdz (mgr.14203) 241 : cluster [DBG] pgmap v197: 33 pgs: 33 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:34.940 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:34 smithi195 bash[25267]: cluster 2024-09-21T11:58:33.470184+0000 mgr.smithi078.aqnwdz (mgr.14203) 241 : cluster [DBG] pgmap v197: 33 pgs: 33 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:34.941 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:34 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:58:35.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:34 smithi078 bash[20010]: cluster 2024-09-21T11:58:33.470184+0000 mgr.smithi078.aqnwdz (mgr.14203) 241 : cluster [DBG] pgmap v197: 33 pgs: 33 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:35.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:34 smithi078 bash[20010]: cluster 2024-09-21T11:58:33.470184+0000 mgr.smithi078.aqnwdz (mgr.14203) 241 : cluster [DBG] pgmap v197: 33 pgs: 33 active+clean; 577 KiB data, 236 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:35.282 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:35 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:58:35.686 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package python3-s3transfer. 2024-09-21T11:58:35.714 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../6-python3-s3transfer_0.5.0-1_all.deb ... 2024-09-21T11:58:35.744 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking python3-s3transfer (0.5.0-1) ... 2024-09-21T11:58:36.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.222692+0000 mon.smithi078 (mon.0) 785 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.222692+0000 mon.smithi078 (mon.0) 785 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.232901+0000 mon.smithi078 (mon.0) 786 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.232901+0000 mon.smithi078 (mon.0) 786 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.240622+0000 mon.smithi078 (mon.0) 787 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.240622+0000 mon.smithi078 (mon.0) 787 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.241961+0000 mon.smithi078 (mon.0) 788 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi078.vfczdr", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.241961+0000 mon.smithi078 (mon.0) 788 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi078.vfczdr", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.245258+0000 mon.smithi078 (mon.0) 789 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi078.vfczdr", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.245258+0000 mon.smithi078 (mon.0) 789 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi078.vfczdr", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.255256+0000 mon.smithi078 (mon.0) 790 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.255256+0000 mon.smithi078 (mon.0) 790 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.259114+0000 mon.smithi078 (mon.0) 791 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:36.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:36 smithi195 bash[25267]: audit 2024-09-21T11:58:35.259114+0000 mon.smithi078 (mon.0) 791 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:36.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.222692+0000 mon.smithi078 (mon.0) 785 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.222692+0000 mon.smithi078 (mon.0) 785 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.232901+0000 mon.smithi078 (mon.0) 786 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.232901+0000 mon.smithi078 (mon.0) 786 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.240622+0000 mon.smithi078 (mon.0) 787 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.240622+0000 mon.smithi078 (mon.0) 787 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.241961+0000 mon.smithi078 (mon.0) 788 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi078.vfczdr", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.241961+0000 mon.smithi078 (mon.0) 788 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi078.vfczdr", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.245258+0000 mon.smithi078 (mon.0) 789 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi078.vfczdr", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.245258+0000 mon.smithi078 (mon.0) 789 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.rgw.foorgw.smithi078.vfczdr", "caps": ["mon", "allow *", "mgr", "allow rw", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.255256+0000 mon.smithi078 (mon.0) 790 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.255256+0000 mon.smithi078 (mon.0) 790 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.259114+0000 mon.smithi078 (mon.0) 791 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:36.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:36 smithi078 bash[20010]: audit 2024-09-21T11:58:35.259114+0000 mon.smithi078 (mon.0) 791 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:36.867 INFO:teuthology.orchestra.run.smithi078.stdout:Selecting previously unselected package python3-boto3. 2024-09-21T11:58:36.894 INFO:teuthology.orchestra.run.smithi078.stdout:Preparing to unpack .../7-python3-boto3_1.20.34+dfsg-1_all.deb ... 2024-09-21T11:58:37.088 INFO:teuthology.orchestra.run.smithi078.stdout:Unpacking python3-boto3 (1.20.34+dfsg-1) ... 2024-09-21T11:58:37.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:37 smithi195 bash[25267]: cephadm 2024-09-21T11:58:35.260917+0000 mgr.smithi078.aqnwdz (mgr.14203) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi078.vfczdr on smithi078 2024-09-21T11:58:37.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:37 smithi195 bash[25267]: cephadm 2024-09-21T11:58:35.260917+0000 mgr.smithi078.aqnwdz (mgr.14203) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi078.vfczdr on smithi078 2024-09-21T11:58:37.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:37 smithi195 bash[25267]: cluster 2024-09-21T11:58:35.470990+0000 mgr.smithi078.aqnwdz (mgr.14203) 243 : cluster [DBG] pgmap v198: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:37.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:37 smithi195 bash[25267]: cluster 2024-09-21T11:58:35.470990+0000 mgr.smithi078.aqnwdz (mgr.14203) 243 : cluster [DBG] pgmap v198: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:37.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:37 smithi078 bash[20010]: cephadm 2024-09-21T11:58:35.260917+0000 mgr.smithi078.aqnwdz (mgr.14203) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi078.vfczdr on smithi078 2024-09-21T11:58:37.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:37 smithi078 bash[20010]: cephadm 2024-09-21T11:58:35.260917+0000 mgr.smithi078.aqnwdz (mgr.14203) 242 : cephadm [INF] Deploying daemon rgw.foorgw.smithi078.vfczdr on smithi078 2024-09-21T11:58:37.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:37 smithi078 bash[20010]: cluster 2024-09-21T11:58:35.470990+0000 mgr.smithi078.aqnwdz (mgr.14203) 243 : cluster [DBG] pgmap v198: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:37.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:37 smithi078 bash[20010]: cluster 2024-09-21T11:58:35.470990+0000 mgr.smithi078.aqnwdz (mgr.14203) 243 : cluster [DBG] pgmap v198: 33 pgs: 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:37.720 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up python3-certifi (2020.6.20-1) ... 2024-09-21T11:58:38.062 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up python3-jmespath (0.10.0-1) ... 2024-09-21T11:58:38.347 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:38 smithi078 bash[20010]: cluster 2024-09-21T11:58:37.262548+0000 mon.smithi078 (mon.0) 792 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-21T11:58:38.585 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:38 smithi195 bash[25267]: cluster 2024-09-21T11:58:37.262548+0000 mon.smithi078 (mon.0) 792 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-21T11:58:38.585 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:38 smithi195 bash[25267]: cluster 2024-09-21T11:58:37.262548+0000 mon.smithi078 (mon.0) 792 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-21T11:58:38.586 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:38 smithi195 bash[25267]: audit 2024-09-21T11:58:37.265963+0000 mon.smithi195 (mon.1) 21 : audit [INF] from='client.? 172.21.15.195:0/1444955270' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T11:58:38.586 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:38 smithi195 bash[25267]: audit 2024-09-21T11:58:37.265963+0000 mon.smithi195 (mon.1) 21 : audit [INF] from='client.? 172.21.15.195:0/1444955270' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T11:58:38.586 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:38 smithi195 bash[25267]: audit 2024-09-21T11:58:37.270347+0000 mon.smithi078 (mon.0) 793 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T11:58:38.586 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:38 smithi195 bash[25267]: audit 2024-09-21T11:58:37.270347+0000 mon.smithi078 (mon.0) 793 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T11:58:38.586 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:38 smithi195 bash[25267]: cluster 2024-09-21T11:58:37.471885+0000 mgr.smithi078.aqnwdz (mgr.14203) 244 : cluster [DBG] pgmap v200: 65 pgs: 9 creating+peering, 23 unknown, 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:38.586 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:38 smithi195 bash[25267]: cluster 2024-09-21T11:58:37.471885+0000 mgr.smithi078.aqnwdz (mgr.14203) 244 : cluster [DBG] pgmap v200: 65 pgs: 9 creating+peering, 23 unknown, 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:38.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:38 smithi078 bash[20010]: cluster 2024-09-21T11:58:37.262548+0000 mon.smithi078 (mon.0) 792 : cluster [DBG] osdmap e44: 8 total, 8 up, 8 in 2024-09-21T11:58:38.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:38 smithi078 bash[20010]: audit 2024-09-21T11:58:37.265963+0000 mon.smithi195 (mon.1) 21 : audit [INF] from='client.? 172.21.15.195:0/1444955270' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T11:58:38.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:38 smithi078 bash[20010]: audit 2024-09-21T11:58:37.265963+0000 mon.smithi195 (mon.1) 21 : audit [INF] from='client.? 172.21.15.195:0/1444955270' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T11:58:38.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:38 smithi078 bash[20010]: audit 2024-09-21T11:58:37.270347+0000 mon.smithi078 (mon.0) 793 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T11:58:38.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:38 smithi078 bash[20010]: audit 2024-09-21T11:58:37.270347+0000 mon.smithi078 (mon.0) 793 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"} : dispatch 2024-09-21T11:58:38.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:38 smithi078 bash[20010]: cluster 2024-09-21T11:58:37.471885+0000 mgr.smithi078.aqnwdz (mgr.14203) 244 : cluster [DBG] pgmap v200: 65 pgs: 9 creating+peering, 23 unknown, 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:38.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:38 smithi078 bash[20010]: cluster 2024-09-21T11:58:37.471885+0000 mgr.smithi078.aqnwdz (mgr.14203) 244 : cluster [DBG] pgmap v200: 65 pgs: 9 creating+peering, 23 unknown, 33 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T11:58:38.935 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up python3-idna (3.3-1ubuntu0.1) ... 2024-09-21T11:58:39.427 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up python3-urllib3 (1.26.5-1~exp1ubuntu0.1) ... 2024-09-21T11:58:39.531 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:39 smithi078 bash[20010]: cluster 2024-09-21T11:58:38.256994+0000 mon.smithi078 (mon.0) 794 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T11:58:39.531 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:39 smithi078 bash[20010]: cluster 2024-09-21T11:58:38.256994+0000 mon.smithi078 (mon.0) 794 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T11:58:39.531 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:39 smithi078 bash[20010]: audit 2024-09-21T11:58:38.265979+0000 mon.smithi078 (mon.0) 795 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-21T11:58:39.531 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:39 smithi078 bash[20010]: audit 2024-09-21T11:58:38.265979+0000 mon.smithi078 (mon.0) 795 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-21T11:58:39.531 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:39 smithi078 bash[20010]: cluster 2024-09-21T11:58:38.275176+0000 mon.smithi078 (mon.0) 796 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-21T11:58:39.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:39 smithi078 bash[20010]: cluster 2024-09-21T11:58:38.275176+0000 mon.smithi078 (mon.0) 796 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-21T11:58:39.532 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:39 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:58:39.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:39 smithi195 bash[25267]: cluster 2024-09-21T11:58:38.256994+0000 mon.smithi078 (mon.0) 794 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T11:58:39.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:39 smithi195 bash[25267]: cluster 2024-09-21T11:58:38.256994+0000 mon.smithi078 (mon.0) 794 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T11:58:39.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:39 smithi195 bash[25267]: audit 2024-09-21T11:58:38.265979+0000 mon.smithi078 (mon.0) 795 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-21T11:58:39.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:39 smithi195 bash[25267]: audit 2024-09-21T11:58:38.265979+0000 mon.smithi078 (mon.0) 795 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": ".rgw.root","app": "rgw"}]': finished 2024-09-21T11:58:39.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:39 smithi195 bash[25267]: cluster 2024-09-21T11:58:38.275176+0000 mon.smithi078 (mon.0) 796 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-21T11:58:39.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:39 smithi195 bash[25267]: cluster 2024-09-21T11:58:38.275176+0000 mon.smithi078 (mon.0) 796 : cluster [DBG] osdmap e45: 8 total, 8 up, 8 in 2024-09-21T11:58:39.721 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up python3-requests (2.25.1+dfsg-2ubuntu0.1) ... 2024-09-21T11:58:39.798 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:39 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:58:40.487 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up python3-botocore (1.23.34+repack-1) ... 2024-09-21T11:58:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cluster 2024-09-21T11:58:39.275909+0000 mon.smithi078 (mon.0) 797 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cluster 2024-09-21T11:58:39.275909+0000 mon.smithi078 (mon.0) 797 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.281883+0000 mon.smithi195 (mon.1) 22 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.281883+0000 mon.smithi195 (mon.1) 22 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.285397+0000 mon.smithi078 (mon.0) 798 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.285397+0000 mon.smithi078 (mon.0) 798 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cluster 2024-09-21T11:58:39.472497+0000 mgr.smithi078.aqnwdz (mgr.14203) 245 : cluster [DBG] pgmap v203: 97 pgs: 14 creating+peering, 40 unknown, 43 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cluster 2024-09-21T11:58:39.472497+0000 mgr.smithi078.aqnwdz (mgr.14203) 245 : cluster [DBG] pgmap v203: 97 pgs: 14 creating+peering, 40 unknown, 43 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.848890+0000 mon.smithi078 (mon.0) 799 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.848890+0000 mon.smithi078 (mon.0) 799 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.854390+0000 mon.smithi078 (mon.0) 800 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.854390+0000 mon.smithi078 (mon.0) 800 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.861355+0000 mon.smithi078 (mon.0) 801 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.861355+0000 mon.smithi078 (mon.0) 801 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:39.862376+0000 mgr.smithi078.aqnwdz (mgr.14203) 246 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T11:58:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:39.862376+0000 mgr.smithi078.aqnwdz (mgr.14203) 246 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T11:58:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.868261+0000 mon.smithi078 (mon.0) 802 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.868261+0000 mon.smithi078 (mon.0) 802 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.874215+0000 mon.smithi078 (mon.0) 803 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.874215+0000 mon.smithi078 (mon.0) 803 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.881096+0000 mon.smithi078 (mon.0) 804 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.881096+0000 mon.smithi078 (mon.0) 804 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:39.881658+0000 mgr.smithi078.aqnwdz (mgr.14203) 247 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi078.umrlrv 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:39.881658+0000 mgr.smithi078.aqnwdz (mgr.14203) 247 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi078.umrlrv 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.881928+0000 mon.smithi078 (mon.0) 805 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.881928+0000 mon.smithi078 (mon.0) 805 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.884031+0000 mon.smithi078 (mon.0) 806 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.884031+0000 mon.smithi078 (mon.0) 806 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:39.886725+0000 mgr.smithi078.aqnwdz (mgr.14203) 248 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:39.886725+0000 mgr.smithi078.aqnwdz (mgr.14203) 248 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.887003+0000 mon.smithi078 (mon.0) 807 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.887003+0000 mon.smithi078 (mon.0) 807 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-21T11:58:40.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.888892+0000 mon.smithi078 (mon.0) 808 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.888892+0000 mon.smithi078 (mon.0) 808 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.891673+0000 mon.smithi078 (mon.0) 809 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.891673+0000 mon.smithi078 (mon.0) 809 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.948148+0000 mon.smithi078 (mon.0) 810 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.948148+0000 mon.smithi078 (mon.0) 810 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.950464+0000 mon.smithi078 (mon.0) 811 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:39.950464+0000 mon.smithi078 (mon.0) 811 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:40.014163+0000 mgr.smithi078.aqnwdz (mgr.14203) 249 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:40.014163+0000 mgr.smithi078.aqnwdz (mgr.14203) 249 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:40.014274+0000 mgr.smithi078.aqnwdz (mgr.14203) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi078.umrlrv-rgw 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:40.014274+0000 mgr.smithi078.aqnwdz (mgr.14203) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi078.umrlrv-rgw 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:40.014681+0000 mon.smithi078 (mon.0) 812 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:40.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:40.014681+0000 mon.smithi078 (mon.0) 812 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:40.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:40.016575+0000 mon.smithi078 (mon.0) 813 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:40.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:40.016575+0000 mon.smithi078 (mon.0) 813 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:40.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:40.019066+0000 mgr.smithi078.aqnwdz (mgr.14203) 251 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi078.umrlrv's ganesha conf is defaulting to empty 2024-09-21T11:58:40.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:40.019066+0000 mgr.smithi078.aqnwdz (mgr.14203) 251 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi078.umrlrv's ganesha conf is defaulting to empty 2024-09-21T11:58:40.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:40.024761+0000 mon.smithi078 (mon.0) 814 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:40.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: audit 2024-09-21T11:58:40.024761+0000 mon.smithi078 (mon.0) 814 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:40.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:40.025976+0000 mgr.smithi078.aqnwdz (mgr.14203) 252 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi078.umrlrv on smithi078 2024-09-21T11:58:40.623 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:40 smithi195 bash[25267]: cephadm 2024-09-21T11:58:40.025976+0000 mgr.smithi078.aqnwdz (mgr.14203) 252 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi078.umrlrv on smithi078 2024-09-21T11:58:40.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cluster 2024-09-21T11:58:39.275909+0000 mon.smithi078 (mon.0) 797 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-21T11:58:40.683 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cluster 2024-09-21T11:58:39.275909+0000 mon.smithi078 (mon.0) 797 : cluster [DBG] osdmap e46: 8 total, 8 up, 8 in 2024-09-21T11:58:40.683 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.281883+0000 mon.smithi195 (mon.1) 22 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T11:58:40.683 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.281883+0000 mon.smithi195 (mon.1) 22 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.285397+0000 mon.smithi078 (mon.0) 798 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.285397+0000 mon.smithi078 (mon.0) 798 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"} : dispatch 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cluster 2024-09-21T11:58:39.472497+0000 mgr.smithi078.aqnwdz (mgr.14203) 245 : cluster [DBG] pgmap v203: 97 pgs: 14 creating+peering, 40 unknown, 43 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cluster 2024-09-21T11:58:39.472497+0000 mgr.smithi078.aqnwdz (mgr.14203) 245 : cluster [DBG] pgmap v203: 97 pgs: 14 creating+peering, 40 unknown, 43 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.848890+0000 mon.smithi078 (mon.0) 799 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.848890+0000 mon.smithi078 (mon.0) 799 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.854390+0000 mon.smithi078 (mon.0) 800 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.854390+0000 mon.smithi078 (mon.0) 800 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.861355+0000 mon.smithi078 (mon.0) 801 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.861355+0000 mon.smithi078 (mon.0) 801 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:39.862376+0000 mgr.smithi078.aqnwdz (mgr.14203) 246 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:39.862376+0000 mgr.smithi078.aqnwdz (mgr.14203) 246 : cephadm [INF] Saving service rgw.foorgw spec with placement count:2 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.868261+0000 mon.smithi078 (mon.0) 802 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.684 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.868261+0000 mon.smithi078 (mon.0) 802 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.685 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.874215+0000 mon.smithi078 (mon.0) 803 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.685 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.874215+0000 mon.smithi078 (mon.0) 803 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.685 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.881096+0000 mon.smithi078 (mon.0) 804 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.685 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.881096+0000 mon.smithi078 (mon.0) 804 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:40.685 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:39.881658+0000 mgr.smithi078.aqnwdz (mgr.14203) 247 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi078.umrlrv 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:39.881658+0000 mgr.smithi078.aqnwdz (mgr.14203) 247 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi078.umrlrv 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.881928+0000 mon.smithi078 (mon.0) 805 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.881928+0000 mon.smithi078 (mon.0) 805 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]} : dispatch 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.884031+0000 mon.smithi078 (mon.0) 806 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.884031+0000 mon.smithi078 (mon.0) 806 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv", "caps": ["mon", "allow r", "osd", "allow rw pool=.nfs namespace=foo"]}]': finished 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:39.886725+0000 mgr.smithi078.aqnwdz (mgr.14203) 248 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:39.886725+0000 mgr.smithi078.aqnwdz (mgr.14203) 248 : cephadm [INF] Ensuring nfs.foo.0 is in the ganesha grace table 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.887003+0000 mon.smithi078 (mon.0) 807 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.887003+0000 mon.smithi078 (mon.0) 807 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]} : dispatch 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.888892+0000 mon.smithi078 (mon.0) 808 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.888892+0000 mon.smithi078 (mon.0) 808 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.mgr.nfs.grace.nfs.foo", "caps": ["mon", "allow r", "osd", "allow rwx pool .nfs"]}]': finished 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.891673+0000 mon.smithi078 (mon.0) 809 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:40.686 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.891673+0000 mon.smithi078 (mon.0) 809 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.948148+0000 mon.smithi078 (mon.0) 810 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.948148+0000 mon.smithi078 (mon.0) 810 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"} : dispatch 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.950464+0000 mon.smithi078 (mon.0) 811 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:39.950464+0000 mon.smithi078 (mon.0) 811 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.mgr.nfs.grace.nfs.foo"}]': finished 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:40.014163+0000 mgr.smithi078.aqnwdz (mgr.14203) 249 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:40.014163+0000 mgr.smithi078.aqnwdz (mgr.14203) 249 : cephadm [INF] Rados config object exists: conf-nfs.foo 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:40.014274+0000 mgr.smithi078.aqnwdz (mgr.14203) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi078.umrlrv-rgw 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:40.014274+0000 mgr.smithi078.aqnwdz (mgr.14203) 250 : cephadm [INF] Creating key for client.nfs.foo.0.0.smithi078.umrlrv-rgw 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:40.014681+0000 mon.smithi078 (mon.0) 812 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:40.014681+0000 mon.smithi078 (mon.0) 812 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]} : dispatch 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:40.016575+0000 mon.smithi078 (mon.0) 813 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:40.016575+0000 mon.smithi078 (mon.0) 813 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth get-or-create", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw", "caps": ["mon", "allow r", "osd", "allow rwx tag rgw *=*"]}]': finished 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:40.019066+0000 mgr.smithi078.aqnwdz (mgr.14203) 251 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi078.umrlrv's ganesha conf is defaulting to empty 2024-09-21T11:58:40.687 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:40.019066+0000 mgr.smithi078.aqnwdz (mgr.14203) 251 : cephadm [WRN] Bind address in nfs.foo.0.0.smithi078.umrlrv's ganesha conf is defaulting to empty 2024-09-21T11:58:40.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:40.024761+0000 mon.smithi078 (mon.0) 814 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:40.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: audit 2024-09-21T11:58:40.024761+0000 mon.smithi078 (mon.0) 814 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:58:40.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:40.025976+0000 mgr.smithi078.aqnwdz (mgr.14203) 252 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi078.umrlrv on smithi078 2024-09-21T11:58:40.688 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:40 smithi078 bash[20010]: cephadm 2024-09-21T11:58:40.025976+0000 mgr.smithi078.aqnwdz (mgr.14203) 252 : cephadm [INF] Deploying daemon nfs.foo.0.0.smithi078.umrlrv on smithi078 2024-09-21T11:58:41.235 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up python3-s3transfer (0.5.0-1) ... 2024-09-21T11:58:41.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:41 smithi195 bash[25267]: audit 2024-09-21T11:58:40.291344+0000 mon.smithi078 (mon.0) 815 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-21T11:58:41.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:41 smithi195 bash[25267]: audit 2024-09-21T11:58:40.291344+0000 mon.smithi078 (mon.0) 815 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-21T11:58:41.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:41 smithi195 bash[25267]: cluster 2024-09-21T11:58:40.298281+0000 mon.smithi078 (mon.0) 816 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-21T11:58:41.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:41 smithi195 bash[25267]: cluster 2024-09-21T11:58:40.298281+0000 mon.smithi078 (mon.0) 816 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-21T11:58:41.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:41 smithi078 bash[20010]: audit 2024-09-21T11:58:40.291344+0000 mon.smithi078 (mon.0) 815 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-21T11:58:41.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:41 smithi078 bash[20010]: audit 2024-09-21T11:58:40.291344+0000 mon.smithi078 (mon.0) 815 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.log","app": "rgw"}]': finished 2024-09-21T11:58:41.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:41 smithi078 bash[20010]: cluster 2024-09-21T11:58:40.298281+0000 mon.smithi078 (mon.0) 816 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-21T11:58:41.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:41 smithi078 bash[20010]: cluster 2024-09-21T11:58:40.298281+0000 mon.smithi078 (mon.0) 816 : cluster [DBG] osdmap e47: 8 total, 8 up, 8 in 2024-09-21T11:58:41.983 INFO:teuthology.orchestra.run.smithi078.stdout:Setting up python3-boto3 (1.20.34+dfsg-1) ... 2024-09-21T11:58:42.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: cluster 2024-09-21T11:58:41.307862+0000 mon.smithi078 (mon.0) 817 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-21T11:58:42.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: cluster 2024-09-21T11:58:41.307862+0000 mon.smithi078 (mon.0) 817 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-21T11:58:42.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: audit 2024-09-21T11:58:41.312736+0000 mon.smithi195 (mon.1) 23 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T11:58:42.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: audit 2024-09-21T11:58:41.312736+0000 mon.smithi195 (mon.1) 23 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T11:58:42.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: audit 2024-09-21T11:58:41.315295+0000 mon.smithi078 (mon.0) 818 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T11:58:42.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: audit 2024-09-21T11:58:41.315295+0000 mon.smithi078 (mon.0) 818 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T11:58:42.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: cluster 2024-09-21T11:58:41.473277+0000 mgr.smithi078.aqnwdz (mgr.14203) 253 : cluster [DBG] pgmap v206: 129 pgs: 23 creating+peering, 55 unknown, 51 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 511 B/s wr, 1 op/s 2024-09-21T11:58:42.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: cluster 2024-09-21T11:58:41.473277+0000 mgr.smithi078.aqnwdz (mgr.14203) 253 : cluster [DBG] pgmap v206: 129 pgs: 23 creating+peering, 55 unknown, 51 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 511 B/s wr, 1 op/s 2024-09-21T11:58:42.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: audit 2024-09-21T11:58:41.775353+0000 mon.smithi078 (mon.0) 819 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:42.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:42 smithi195 bash[25267]: audit 2024-09-21T11:58:41.775353+0000 mon.smithi078 (mon.0) 819 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:42.619 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: cluster 2024-09-21T11:58:41.307862+0000 mon.smithi078 (mon.0) 817 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-21T11:58:42.620 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: cluster 2024-09-21T11:58:41.307862+0000 mon.smithi078 (mon.0) 817 : cluster [DBG] osdmap e48: 8 total, 8 up, 8 in 2024-09-21T11:58:42.620 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: audit 2024-09-21T11:58:41.312736+0000 mon.smithi195 (mon.1) 23 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T11:58:42.620 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: audit 2024-09-21T11:58:41.312736+0000 mon.smithi195 (mon.1) 23 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T11:58:42.620 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: audit 2024-09-21T11:58:41.315295+0000 mon.smithi078 (mon.0) 818 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T11:58:42.620 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: audit 2024-09-21T11:58:41.315295+0000 mon.smithi078 (mon.0) 818 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"} : dispatch 2024-09-21T11:58:42.620 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: cluster 2024-09-21T11:58:41.473277+0000 mgr.smithi078.aqnwdz (mgr.14203) 253 : cluster [DBG] pgmap v206: 129 pgs: 23 creating+peering, 55 unknown, 51 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 511 B/s wr, 1 op/s 2024-09-21T11:58:42.620 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: cluster 2024-09-21T11:58:41.473277+0000 mgr.smithi078.aqnwdz (mgr.14203) 253 : cluster [DBG] pgmap v206: 129 pgs: 23 creating+peering, 55 unknown, 51 active+clean; 577 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 511 B/s wr, 1 op/s 2024-09-21T11:58:42.620 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: audit 2024-09-21T11:58:41.775353+0000 mon.smithi078 (mon.0) 819 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:42.620 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:42 smithi078 bash[20010]: audit 2024-09-21T11:58:41.775353+0000 mon.smithi078 (mon.0) 819 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:42.751 DEBUG:teuthology.orchestra.run.smithi078:> 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-09-21T11:58:42.805 INFO:teuthology.orchestra.run.smithi078.stderr:+ /home/ubuntu/cephtest/cephadm shell radosgw-admin user create --uid foouser --display-name foo 2024-09-21T11:58:43.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:43 smithi195 bash[25267]: audit 2024-09-21T11:58:42.311547+0000 mon.smithi078 (mon.0) 820 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-21T11:58:43.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:43 smithi195 bash[25267]: audit 2024-09-21T11:58:42.311547+0000 mon.smithi078 (mon.0) 820 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-21T11:58:43.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:43 smithi195 bash[25267]: cluster 2024-09-21T11:58:42.316300+0000 mon.smithi078 (mon.0) 821 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-21T11:58:43.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:43 smithi195 bash[25267]: cluster 2024-09-21T11:58:42.316300+0000 mon.smithi078 (mon.0) 821 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-21T11:58:43.639 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:43 smithi078 bash[20010]: audit 2024-09-21T11:58:42.311547+0000 mon.smithi078 (mon.0) 820 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-21T11:58:43.639 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:43 smithi078 bash[20010]: audit 2024-09-21T11:58:42.311547+0000 mon.smithi078 (mon.0) 820 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.control","app": "rgw"}]': finished 2024-09-21T11:58:43.639 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:43 smithi078 bash[20010]: cluster 2024-09-21T11:58:42.316300+0000 mon.smithi078 (mon.0) 821 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-21T11:58:43.639 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:43 smithi078 bash[20010]: cluster 2024-09-21T11:58:42.316300+0000 mon.smithi078 (mon.0) 821 : cluster [DBG] osdmap e49: 8 total, 8 up, 8 in 2024-09-21T11:58:44.292 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: cluster 2024-09-21T11:58:43.324286+0000 mon.smithi078 (mon.0) 822 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: cluster 2024-09-21T11:58:43.324286+0000 mon.smithi078 (mon.0) 822 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:43.328356+0000 mon.smithi195 (mon.1) 24 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:43.328356+0000 mon.smithi195 (mon.1) 24 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:43.334875+0000 mon.smithi078 (mon.0) 823 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:43.334875+0000 mon.smithi078 (mon.0) 823 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:43.414814+0000 mon.smithi078 (mon.0) 824 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:43.414814+0000 mon.smithi078 (mon.0) 824 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: cluster 2024-09-21T11:58:43.474056+0000 mgr.smithi078.aqnwdz (mgr.14203) 254 : cluster [DBG] pgmap v209: 161 pgs: 16 creating+peering, 63 unknown, 82 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.5 KiB/s wr, 5 op/s 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: cluster 2024-09-21T11:58:43.474056+0000 mgr.smithi078.aqnwdz (mgr.14203) 254 : cluster [DBG] pgmap v209: 161 pgs: 16 creating+peering, 63 unknown, 82 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.5 KiB/s wr, 5 op/s 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.317582+0000 mon.smithi078 (mon.0) 825 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.317582+0000 mon.smithi078 (mon.0) 825 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T11:58:44.571 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.317701+0000 mon.smithi078 (mon.0) 826 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.317701+0000 mon.smithi078 (mon.0) 826 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: cluster 2024-09-21T11:58:44.322085+0000 mon.smithi078 (mon.0) 827 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: cluster 2024-09-21T11:58:44.322085+0000 mon.smithi078 (mon.0) 827 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.327689+0000 mon.smithi195 (mon.1) 25 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.327689+0000 mon.smithi195 (mon.1) 25 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.329511+0000 mon.smithi078 (mon.0) 828 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.329511+0000 mon.smithi078 (mon.0) 828 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.329865+0000 mon.smithi078 (mon.0) 829 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 bash[20010]: audit 2024-09-21T11:58:44.329865+0000 mon.smithi078 (mon.0) 829 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.572 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:44 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:58:44.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: cluster 2024-09-21T11:58:43.324286+0000 mon.smithi078 (mon.0) 822 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-21T11:58:44.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: cluster 2024-09-21T11:58:43.324286+0000 mon.smithi078 (mon.0) 822 : cluster [DBG] osdmap e50: 8 total, 8 up, 8 in 2024-09-21T11:58:44.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:43.328356+0000 mon.smithi195 (mon.1) 24 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:43.328356+0000 mon.smithi195 (mon.1) 24 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:43.334875+0000 mon.smithi078 (mon.0) 823 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:43.334875+0000 mon.smithi078 (mon.0) 823 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:43.414814+0000 mon.smithi078 (mon.0) 824 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:43.414814+0000 mon.smithi078 (mon.0) 824 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"} : dispatch 2024-09-21T11:58:44.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: cluster 2024-09-21T11:58:43.474056+0000 mgr.smithi078.aqnwdz (mgr.14203) 254 : cluster [DBG] pgmap v209: 161 pgs: 16 creating+peering, 63 unknown, 82 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.5 KiB/s wr, 5 op/s 2024-09-21T11:58:44.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: cluster 2024-09-21T11:58:43.474056+0000 mgr.smithi078.aqnwdz (mgr.14203) 254 : cluster [DBG] pgmap v209: 161 pgs: 16 creating+peering, 63 unknown, 82 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.5 KiB/s wr, 5 op/s 2024-09-21T11:58:44.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.317582+0000 mon.smithi078 (mon.0) 825 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T11:58:44.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.317582+0000 mon.smithi078 (mon.0) 825 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T11:58:44.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.317701+0000 mon.smithi078 (mon.0) 826 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T11:58:44.620 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.317701+0000 mon.smithi078 (mon.0) 826 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.meta","app": "rgw"}]': finished 2024-09-21T11:58:44.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: cluster 2024-09-21T11:58:44.322085+0000 mon.smithi078 (mon.0) 827 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-21T11:58:44.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: cluster 2024-09-21T11:58:44.322085+0000 mon.smithi078 (mon.0) 827 : cluster [DBG] osdmap e51: 8 total, 8 up, 8 in 2024-09-21T11:58:44.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.327689+0000 mon.smithi195 (mon.1) 25 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.327689+0000 mon.smithi195 (mon.1) 25 : audit [INF] from='client.? 172.21.15.195:0/4285350522' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.329511+0000 mon.smithi078 (mon.0) 828 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.329511+0000 mon.smithi078 (mon.0) 828 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.621 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.329865+0000 mon.smithi078 (mon.0) 829 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:44.622 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:44 smithi195 bash[25267]: audit 2024-09-21T11:58:44.329865+0000 mon.smithi078 (mon.0) 829 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:58:45.870 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.621292+0000 mon.smithi078 (mon.0) 830 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.870 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.621292+0000 mon.smithi078 (mon.0) 830 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.870 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.626968+0000 mon.smithi078 (mon.0) 831 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.870 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.626968+0000 mon.smithi078 (mon.0) 831 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.870 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.631667+0000 mon.smithi078 (mon.0) 832 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.870 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.631667+0000 mon.smithi078 (mon.0) 832 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.870 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.667266+0000 mon.smithi078 (mon.0) 833 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.870 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.667266+0000 mon.smithi078 (mon.0) 833 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.675055+0000 mon.smithi078 (mon.0) 834 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:44.675055+0000 mon.smithi078 (mon.0) 834 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: cephadm 2024-09-21T11:58:44.690967+0000 mgr.smithi078.aqnwdz (mgr.14203) 255 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi078.ljdayf on smithi078 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: cephadm 2024-09-21T11:58:44.690967+0000 mgr.smithi078.aqnwdz (mgr.14203) 255 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi078.ljdayf on smithi078 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:45.319804+0000 mon.smithi078 (mon.0) 835 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:45.319804+0000 mon.smithi078 (mon.0) 835 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:45.319873+0000 mon.smithi078 (mon.0) 836 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: audit 2024-09-21T11:58:45.319873+0000 mon.smithi078 (mon.0) 836 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: cluster 2024-09-21T11:58:45.322547+0000 mon.smithi078 (mon.0) 837 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-21T11:58:45.871 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:45 smithi078 bash[20010]: cluster 2024-09-21T11:58:45.322547+0000 mon.smithi078 (mon.0) 837 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-21T11:58:46.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.621292+0000 mon.smithi078 (mon.0) 830 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.621292+0000 mon.smithi078 (mon.0) 830 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.626968+0000 mon.smithi078 (mon.0) 831 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.626968+0000 mon.smithi078 (mon.0) 831 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.631667+0000 mon.smithi078 (mon.0) 832 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.631667+0000 mon.smithi078 (mon.0) 832 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.667266+0000 mon.smithi078 (mon.0) 833 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.667266+0000 mon.smithi078 (mon.0) 833 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.675055+0000 mon.smithi078 (mon.0) 834 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:44.675055+0000 mon.smithi078 (mon.0) 834 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: cephadm 2024-09-21T11:58:44.690967+0000 mgr.smithi078.aqnwdz (mgr.14203) 255 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi078.ljdayf on smithi078 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: cephadm 2024-09-21T11:58:44.690967+0000 mgr.smithi078.aqnwdz (mgr.14203) 255 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi078.ljdayf on smithi078 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:45.319804+0000 mon.smithi078 (mon.0) 835 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:45.319804+0000 mon.smithi078 (mon.0) 835 : audit [INF] from='client.? ' entity='client.rgw.foorgw.smithi195.rsgiag' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:45.319873+0000 mon.smithi078 (mon.0) 836 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: audit 2024-09-21T11:58:45.319873+0000 mon.smithi078 (mon.0) 836 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.meta", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:58:46.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: cluster 2024-09-21T11:58:45.322547+0000 mon.smithi078 (mon.0) 837 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-21T11:58:46.120 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:45 smithi195 bash[25267]: cluster 2024-09-21T11:58:45.322547+0000 mon.smithi078 (mon.0) 837 : cluster [DBG] osdmap e52: 8 total, 8 up, 8 in 2024-09-21T11:58:46.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:46 smithi078 bash[20010]: cluster 2024-09-21T11:58:45.474546+0000 mgr.smithi078.aqnwdz (mgr.14203) 256 : cluster [DBG] pgmap v212: 161 pgs: 16 creating+peering, 14 unknown, 131 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.7 KiB/s wr, 6 op/s 2024-09-21T11:58:46.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:46 smithi078 bash[20010]: cluster 2024-09-21T11:58:45.474546+0000 mgr.smithi078.aqnwdz (mgr.14203) 256 : cluster [DBG] pgmap v212: 161 pgs: 16 creating+peering, 14 unknown, 131 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.7 KiB/s wr, 6 op/s 2024-09-21T11:58:46.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:46 smithi078 bash[20010]: cluster 2024-09-21T11:58:46.319858+0000 mon.smithi078 (mon.0) 838 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T11:58:46.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:46 smithi078 bash[20010]: cluster 2024-09-21T11:58:46.319858+0000 mon.smithi078 (mon.0) 838 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T11:58:46.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:46 smithi078 bash[20010]: cluster 2024-09-21T11:58:46.319906+0000 mon.smithi078 (mon.0) 839 : cluster [INF] Cluster is now healthy 2024-09-21T11:58:46.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:46 smithi078 bash[20010]: cluster 2024-09-21T11:58:46.319906+0000 mon.smithi078 (mon.0) 839 : cluster [INF] Cluster is now healthy 2024-09-21T11:58:47.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:46 smithi195 bash[25267]: cluster 2024-09-21T11:58:45.474546+0000 mgr.smithi078.aqnwdz (mgr.14203) 256 : cluster [DBG] pgmap v212: 161 pgs: 16 creating+peering, 14 unknown, 131 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.7 KiB/s wr, 6 op/s 2024-09-21T11:58:47.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:46 smithi195 bash[25267]: cluster 2024-09-21T11:58:45.474546+0000 mgr.smithi078.aqnwdz (mgr.14203) 256 : cluster [DBG] pgmap v212: 161 pgs: 16 creating+peering, 14 unknown, 131 active+clean; 578 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 3.5 KiB/s rd, 1.7 KiB/s wr, 6 op/s 2024-09-21T11:58:47.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:46 smithi195 bash[25267]: cluster 2024-09-21T11:58:46.319858+0000 mon.smithi078 (mon.0) 838 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T11:58:47.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:46 smithi195 bash[25267]: cluster 2024-09-21T11:58:46.319858+0000 mon.smithi078 (mon.0) 838 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T11:58:47.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:46 smithi195 bash[25267]: cluster 2024-09-21T11:58:46.319906+0000 mon.smithi078 (mon.0) 839 : cluster [INF] Cluster is now healthy 2024-09-21T11:58:47.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:46 smithi195 bash[25267]: cluster 2024-09-21T11:58:46.319906+0000 mon.smithi078 (mon.0) 839 : cluster [INF] Cluster is now healthy 2024-09-21T11:58:47.575 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring fsid 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T11:58:47.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:47 smithi078 bash[20010]: audit 2024-09-21T11:58:46.732668+0000 mon.smithi078 (mon.0) 840 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:47.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:47 smithi078 bash[20010]: audit 2024-09-21T11:58:46.732668+0000 mon.smithi078 (mon.0) 840 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:47.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:47 smithi078 bash[20010]: audit 2024-09-21T11:58:46.787017+0000 mon.smithi078 (mon.0) 841 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:47.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:47 smithi078 bash[20010]: audit 2024-09-21T11:58:46.787017+0000 mon.smithi078 (mon.0) 841 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:48.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:47 smithi195 bash[25267]: audit 2024-09-21T11:58:46.732668+0000 mon.smithi078 (mon.0) 840 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:48.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:47 smithi195 bash[25267]: audit 2024-09-21T11:58:46.732668+0000 mon.smithi078 (mon.0) 840 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:58:48.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:47 smithi195 bash[25267]: audit 2024-09-21T11:58:46.787017+0000 mon.smithi078 (mon.0) 841 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:48.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:47 smithi195 bash[25267]: audit 2024-09-21T11:58:46.787017+0000 mon.smithi078 (mon.0) 841 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:48.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:48 smithi195 bash[25267]: cluster 2024-09-21T11:58:47.475186+0000 mgr.smithi078.aqnwdz (mgr.14203) 257 : cluster [DBG] pgmap v213: 161 pgs: 9 creating+peering, 3 unknown, 149 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 34 KiB/s rd, 2.3 KiB/s wr, 66 op/s 2024-09-21T11:58:48.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:48 smithi195 bash[25267]: cluster 2024-09-21T11:58:47.475186+0000 mgr.smithi078.aqnwdz (mgr.14203) 257 : cluster [DBG] pgmap v213: 161 pgs: 9 creating+peering, 3 unknown, 149 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 34 KiB/s rd, 2.3 KiB/s wr, 66 op/s 2024-09-21T11:58:49.056 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:48 smithi078 bash[20010]: cluster 2024-09-21T11:58:47.475186+0000 mgr.smithi078.aqnwdz (mgr.14203) 257 : cluster [DBG] pgmap v213: 161 pgs: 9 creating+peering, 3 unknown, 149 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 34 KiB/s rd, 2.3 KiB/s wr, 66 op/s 2024-09-21T11:58:49.057 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:48 smithi078 bash[20010]: cluster 2024-09-21T11:58:47.475186+0000 mgr.smithi078.aqnwdz (mgr.14203) 257 : cluster [DBG] pgmap v213: 161 pgs: 9 creating+peering, 3 unknown, 149 active+clean; 579 KiB data, 237 MiB used, 715 GiB / 715 GiB avail; 34 KiB/s rd, 2.3 KiB/s wr, 66 op/s 2024-09-21T11:58:51.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:50 smithi195 bash[25267]: cluster 2024-09-21T11:58:49.476362+0000 mgr.smithi078.aqnwdz (mgr.14203) 258 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 581 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 113 KiB/s rd, 5.0 KiB/s wr, 220 op/s 2024-09-21T11:58:51.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:50 smithi195 bash[25267]: cluster 2024-09-21T11:58:49.476362+0000 mgr.smithi078.aqnwdz (mgr.14203) 258 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 581 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 113 KiB/s rd, 5.0 KiB/s wr, 220 op/s 2024-09-21T11:58:51.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:50 smithi078 bash[20010]: cluster 2024-09-21T11:58:49.476362+0000 mgr.smithi078.aqnwdz (mgr.14203) 258 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 581 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 113 KiB/s rd, 5.0 KiB/s wr, 220 op/s 2024-09-21T11:58:51.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:50 smithi078 bash[20010]: cluster 2024-09-21T11:58:49.476362+0000 mgr.smithi078.aqnwdz (mgr.14203) 258 : cluster [DBG] pgmap v214: 161 pgs: 161 active+clean; 581 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 113 KiB/s rd, 5.0 KiB/s wr, 220 op/s 2024-09-21T11:58:51.691 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:58:52.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:52 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:58:52.972 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:52 smithi078 bash[20010]: cluster 2024-09-21T11:58:51.477443+0000 mgr.smithi078.aqnwdz (mgr.14203) 259 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 128 KiB/s rd, 5.2 KiB/s wr, 249 op/s 2024-09-21T11:58:52.972 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:52 smithi078 bash[20010]: cluster 2024-09-21T11:58:51.477443+0000 mgr.smithi078.aqnwdz (mgr.14203) 259 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 128 KiB/s rd, 5.2 KiB/s wr, 249 op/s 2024-09-21T11:58:52.972 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:52 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:58:53.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:52 smithi195 bash[25267]: cluster 2024-09-21T11:58:51.477443+0000 mgr.smithi078.aqnwdz (mgr.14203) 259 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 128 KiB/s rd, 5.2 KiB/s wr, 249 op/s 2024-09-21T11:58:53.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:52 smithi195 bash[25267]: cluster 2024-09-21T11:58:51.477443+0000 mgr.smithi078.aqnwdz (mgr.14203) 259 : cluster [DBG] pgmap v215: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 128 KiB/s rd, 5.2 KiB/s wr, 249 op/s 2024-09-21T11:58:54.311 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:54 smithi078 bash[20010]: audit 2024-09-21T11:58:53.021662+0000 mon.smithi078 (mon.0) 842 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.311 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:54 smithi078 bash[20010]: audit 2024-09-21T11:58:53.021662+0000 mon.smithi078 (mon.0) 842 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.311 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:54 smithi078 bash[20010]: audit 2024-09-21T11:58:53.027355+0000 mon.smithi078 (mon.0) 843 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:54 smithi078 bash[20010]: audit 2024-09-21T11:58:53.027355+0000 mon.smithi078 (mon.0) 843 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:54 smithi078 bash[20010]: audit 2024-09-21T11:58:53.032181+0000 mon.smithi078 (mon.0) 844 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:54 smithi078 bash[20010]: audit 2024-09-21T11:58:53.032181+0000 mon.smithi078 (mon.0) 844 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:54 smithi078 bash[20010]: cephadm 2024-09-21T11:58:53.034857+0000 mgr.smithi078.aqnwdz (mgr.14203) 260 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.tzoruw on smithi195 2024-09-21T11:58:54.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:54 smithi078 bash[20010]: cephadm 2024-09-21T11:58:53.034857+0000 mgr.smithi078.aqnwdz (mgr.14203) 260 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.tzoruw on smithi195 2024-09-21T11:58:54.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:54 smithi195 bash[25267]: audit 2024-09-21T11:58:53.021662+0000 mon.smithi078 (mon.0) 842 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:54 smithi195 bash[25267]: audit 2024-09-21T11:58:53.021662+0000 mon.smithi078 (mon.0) 842 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:54 smithi195 bash[25267]: audit 2024-09-21T11:58:53.027355+0000 mon.smithi078 (mon.0) 843 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:54 smithi195 bash[25267]: audit 2024-09-21T11:58:53.027355+0000 mon.smithi078 (mon.0) 843 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:54 smithi195 bash[25267]: audit 2024-09-21T11:58:53.032181+0000 mon.smithi078 (mon.0) 844 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:54 smithi195 bash[25267]: audit 2024-09-21T11:58:53.032181+0000 mon.smithi078 (mon.0) 844 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:54 smithi195 bash[25267]: cephadm 2024-09-21T11:58:53.034857+0000 mgr.smithi078.aqnwdz (mgr.14203) 260 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.tzoruw on smithi195 2024-09-21T11:58:54.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:54 smithi195 bash[25267]: cephadm 2024-09-21T11:58:53.034857+0000 mgr.smithi078.aqnwdz (mgr.14203) 260 : cephadm [INF] Deploying daemon haproxy.nfs.foo.smithi195.tzoruw on smithi195 2024-09-21T11:58:55.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:55 smithi195 bash[25267]: cluster 2024-09-21T11:58:53.478334+0000 mgr.smithi078.aqnwdz (mgr.14203) 261 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 112 KiB/s rd, 4.3 KiB/s wr, 217 op/s 2024-09-21T11:58:55.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:55 smithi195 bash[25267]: cluster 2024-09-21T11:58:53.478334+0000 mgr.smithi078.aqnwdz (mgr.14203) 261 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 112 KiB/s rd, 4.3 KiB/s wr, 217 op/s 2024-09-21T11:58:55.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:55 smithi078 bash[20010]: cluster 2024-09-21T11:58:53.478334+0000 mgr.smithi078.aqnwdz (mgr.14203) 261 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 112 KiB/s rd, 4.3 KiB/s wr, 217 op/s 2024-09-21T11:58:55.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:55 smithi078 bash[20010]: cluster 2024-09-21T11:58:53.478334+0000 mgr.smithi078.aqnwdz (mgr.14203) 261 : cluster [DBG] pgmap v216: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 112 KiB/s rd, 4.3 KiB/s wr, 217 op/s 2024-09-21T11:58:56.821 INFO:teuthology.orchestra.run.smithi078.stderr:Using ceph image with id '8f4d013db793' and tag '5c1cdc3c470dae78e91a0ed2bcf13509a046d301' created on 2024-09-21 10:03:08 +0000 UTC 2024-09-21T11:58:56.821 INFO:teuthology.orchestra.run.smithi078.stderr:quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph@sha256:3855b8c483c85027fea24c112434955a9e8e6f629214baaca7b99a8fabb55472 2024-09-21T11:58:57.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:57 smithi195 bash[25267]: cluster 2024-09-21T11:58:55.479773+0000 mgr.smithi078.aqnwdz (mgr.14203) 262 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s rd, 3.8 KiB/s wr, 195 op/s 2024-09-21T11:58:57.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:57 smithi195 bash[25267]: cluster 2024-09-21T11:58:55.479773+0000 mgr.smithi078.aqnwdz (mgr.14203) 262 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s rd, 3.8 KiB/s wr, 195 op/s 2024-09-21T11:58:57.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:57 smithi195 bash[25267]: audit 2024-09-21T11:58:56.805363+0000 mon.smithi078 (mon.0) 845 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:57.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:57 smithi195 bash[25267]: audit 2024-09-21T11:58:56.805363+0000 mon.smithi078 (mon.0) 845 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:57.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:57 smithi078 bash[20010]: cluster 2024-09-21T11:58:55.479773+0000 mgr.smithi078.aqnwdz (mgr.14203) 262 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s rd, 3.8 KiB/s wr, 195 op/s 2024-09-21T11:58:57.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:57 smithi078 bash[20010]: cluster 2024-09-21T11:58:55.479773+0000 mgr.smithi078.aqnwdz (mgr.14203) 262 : cluster [DBG] pgmap v217: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 100 KiB/s rd, 3.8 KiB/s wr, 195 op/s 2024-09-21T11:58:57.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:57 smithi078 bash[20010]: audit 2024-09-21T11:58:56.805363+0000 mon.smithi078 (mon.0) 845 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:57.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:57 smithi078 bash[20010]: audit 2024-09-21T11:58:56.805363+0000 mon.smithi078 (mon.0) 845 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:58:58.884 INFO:teuthology.run_tasks:Running task python... 2024-09-21T11:58:58.894 INFO:tasks.python:Running python on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:58:58.894 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-09-21T11:58:58.894 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-21T11:58:59.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:59 smithi078 bash[20010]: cluster 2024-09-21T11:58:57.481014+0000 mgr.smithi078.aqnwdz (mgr.14203) 263 : cluster [DBG] pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 KiB/s rd, 3.2 KiB/s wr, 165 op/s 2024-09-21T11:58:59.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:58:59 smithi078 bash[20010]: cluster 2024-09-21T11:58:57.481014+0000 mgr.smithi078.aqnwdz (mgr.14203) 263 : cluster [DBG] pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 KiB/s rd, 3.2 KiB/s wr, 165 op/s 2024-09-21T11:58:59.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:59 smithi195 bash[25267]: cluster 2024-09-21T11:58:57.481014+0000 mgr.smithi078.aqnwdz (mgr.14203) 263 : cluster [DBG] pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 KiB/s rd, 3.2 KiB/s wr, 165 op/s 2024-09-21T11:58:59.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:58:59 smithi195 bash[25267]: cluster 2024-09-21T11:58:57.481014+0000 mgr.smithi078.aqnwdz (mgr.14203) 263 : cluster [DBG] pgmap v218: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 85 KiB/s rd, 3.2 KiB/s wr, 165 op/s 2024-09-21T11:59:01.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:01 smithi195 bash[25267]: cluster 2024-09-21T11:58:59.482253+0000 mgr.smithi078.aqnwdz (mgr.14203) 264 : cluster [DBG] pgmap v219: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s rd, 2.9 KiB/s wr, 139 op/s 2024-09-21T11:59:01.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:01 smithi195 bash[25267]: cluster 2024-09-21T11:58:59.482253+0000 mgr.smithi078.aqnwdz (mgr.14203) 264 : cluster [DBG] pgmap v219: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s rd, 2.9 KiB/s wr, 139 op/s 2024-09-21T11:59:01.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:01 smithi195 bash[25267]: cluster 2024-09-21T11:59:00.059946+0000 mon.smithi078 (mon.0) 846 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-21T11:59:01.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:01 smithi195 bash[25267]: cluster 2024-09-21T11:59:00.059946+0000 mon.smithi078 (mon.0) 846 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-21T11:59:01.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:01 smithi195 bash[25267]: audit 2024-09-21T11:59:00.061383+0000 mon.smithi078 (mon.0) 847 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-21T11:59:01.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:01 smithi195 bash[25267]: audit 2024-09-21T11:59:00.061383+0000 mon.smithi078 (mon.0) 847 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-21T11:59:01.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:01 smithi078 bash[20010]: cluster 2024-09-21T11:58:59.482253+0000 mgr.smithi078.aqnwdz (mgr.14203) 264 : cluster [DBG] pgmap v219: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s rd, 2.9 KiB/s wr, 139 op/s 2024-09-21T11:59:01.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:01 smithi078 bash[20010]: cluster 2024-09-21T11:58:59.482253+0000 mgr.smithi078.aqnwdz (mgr.14203) 264 : cluster [DBG] pgmap v219: 161 pgs: 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 72 KiB/s rd, 2.9 KiB/s wr, 139 op/s 2024-09-21T11:59:01.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:01 smithi078 bash[20010]: cluster 2024-09-21T11:59:00.059946+0000 mon.smithi078 (mon.0) 846 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-21T11:59:01.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:01 smithi078 bash[20010]: cluster 2024-09-21T11:59:00.059946+0000 mon.smithi078 (mon.0) 846 : cluster [DBG] osdmap e53: 8 total, 8 up, 8 in 2024-09-21T11:59:01.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:01 smithi078 bash[20010]: audit 2024-09-21T11:59:00.061383+0000 mon.smithi078 (mon.0) 847 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-21T11:59:01.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:01 smithi078 bash[20010]: audit 2024-09-21T11:59:00.061383+0000 mon.smithi078 (mon.0) 847 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"} : dispatch 2024-09-21T11:59:01.794 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:01 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:59:02.075 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:01 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:59:02.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:02 smithi195 bash[25267]: audit 2024-09-21T11:59:01.056075+0000 mon.smithi078 (mon.0) 848 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-21T11:59:02.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:02 smithi195 bash[25267]: audit 2024-09-21T11:59:01.056075+0000 mon.smithi078 (mon.0) 848 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-21T11:59:02.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:02 smithi195 bash[25267]: cluster 2024-09-21T11:59:01.063754+0000 mon.smithi078 (mon.0) 849 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-21T11:59:02.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:02 smithi195 bash[25267]: cluster 2024-09-21T11:59:01.063754+0000 mon.smithi078 (mon.0) 849 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-21T11:59:02.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:02 smithi195 bash[25267]: audit 2024-09-21T11:59:01.075812+0000 mon.smithi078 (mon.0) 850 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:59:02.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:02 smithi195 bash[25267]: audit 2024-09-21T11:59:01.075812+0000 mon.smithi078 (mon.0) 850 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:59:02.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:02 smithi195 bash[25267]: audit 2024-09-21T11:59:01.732744+0000 mon.smithi078 (mon.0) 851 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:02.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:02 smithi195 bash[25267]: audit 2024-09-21T11:59:01.732744+0000 mon.smithi078 (mon.0) 851 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:02 smithi078 bash[20010]: audit 2024-09-21T11:59:01.056075+0000 mon.smithi078 (mon.0) 848 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-21T11:59:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:02 smithi078 bash[20010]: audit 2024-09-21T11:59:01.056075+0000 mon.smithi078 (mon.0) 848 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.index","app": "rgw"}]': finished 2024-09-21T11:59:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:02 smithi078 bash[20010]: cluster 2024-09-21T11:59:01.063754+0000 mon.smithi078 (mon.0) 849 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-21T11:59:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:02 smithi078 bash[20010]: cluster 2024-09-21T11:59:01.063754+0000 mon.smithi078 (mon.0) 849 : cluster [DBG] osdmap e54: 8 total, 8 up, 8 in 2024-09-21T11:59:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:02 smithi078 bash[20010]: audit 2024-09-21T11:59:01.075812+0000 mon.smithi078 (mon.0) 850 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:59:02.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:02 smithi078 bash[20010]: audit 2024-09-21T11:59:01.075812+0000 mon.smithi078 (mon.0) 850 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"} : dispatch 2024-09-21T11:59:02.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:02 smithi078 bash[20010]: audit 2024-09-21T11:59:01.732744+0000 mon.smithi078 (mon.0) 851 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:02.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:02 smithi078 bash[20010]: audit 2024-09-21T11:59:01.732744+0000 mon.smithi078 (mon.0) 851 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:03.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cluster 2024-09-21T11:59:01.483021+0000 mgr.smithi078.aqnwdz (mgr.14203) 265 : cluster [DBG] pgmap v222: 193 pgs: 5 creating+peering, 27 unknown, 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 639 B/s rd, 127 B/s wr, 0 op/s 2024-09-21T11:59:03.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cluster 2024-09-21T11:59:01.483021+0000 mgr.smithi078.aqnwdz (mgr.14203) 265 : cluster [DBG] pgmap v222: 193 pgs: 5 creating+peering, 27 unknown, 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 639 B/s rd, 127 B/s wr, 0 op/s 2024-09-21T11:59:03.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.074920+0000 mon.smithi078 (mon.0) 852 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:59:03.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.074920+0000 mon.smithi078 (mon.0) 852 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:59:03.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cluster 2024-09-21T11:59:02.083641+0000 mon.smithi078 (mon.0) 853 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-21T11:59:03.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cluster 2024-09-21T11:59:02.083641+0000 mon.smithi078 (mon.0) 853 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-21T11:59:03.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.137370+0000 mon.smithi078 (mon.0) 854 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.137370+0000 mon.smithi078 (mon.0) 854 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.143622+0000 mon.smithi078 (mon.0) 855 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.143622+0000 mon.smithi078 (mon.0) 855 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.148524+0000 mon.smithi078 (mon.0) 856 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.148524+0000 mon.smithi078 (mon.0) 856 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.154125+0000 mon.smithi078 (mon.0) 857 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: audit 2024-09-21T11:59:02.154125+0000 mon.smithi078 (mon.0) 857 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cephadm 2024-09-21T11:59:02.154860+0000 mgr.smithi078.aqnwdz (mgr.14203) 266 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi078 interface enp3s0f1 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cephadm 2024-09-21T11:59:02.154860+0000 mgr.smithi078.aqnwdz (mgr.14203) 266 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi078 interface enp3s0f1 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cephadm 2024-09-21T11:59:02.155017+0000 mgr.smithi078.aqnwdz (mgr.14203) 267 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi195 interface enp3s0f1 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cephadm 2024-09-21T11:59:02.155017+0000 mgr.smithi078.aqnwdz (mgr.14203) 267 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi195 interface enp3s0f1 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cephadm 2024-09-21T11:59:02.163229+0000 mgr.smithi078.aqnwdz (mgr.14203) 268 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi078.ntdtvm on smithi078 2024-09-21T11:59:03.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:03 smithi195 bash[25267]: cephadm 2024-09-21T11:59:02.163229+0000 mgr.smithi078.aqnwdz (mgr.14203) 268 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi078.ntdtvm on smithi078 2024-09-21T11:59:03.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cluster 2024-09-21T11:59:01.483021+0000 mgr.smithi078.aqnwdz (mgr.14203) 265 : cluster [DBG] pgmap v222: 193 pgs: 5 creating+peering, 27 unknown, 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 639 B/s rd, 127 B/s wr, 0 op/s 2024-09-21T11:59:03.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cluster 2024-09-21T11:59:01.483021+0000 mgr.smithi078.aqnwdz (mgr.14203) 265 : cluster [DBG] pgmap v222: 193 pgs: 5 creating+peering, 27 unknown, 161 active+clean; 582 KiB data, 238 MiB used, 715 GiB / 715 GiB avail; 639 B/s rd, 127 B/s wr, 0 op/s 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.074920+0000 mon.smithi078 (mon.0) 852 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.074920+0000 mon.smithi078 (mon.0) 852 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.index", "var": "pg_autoscale_bias", "val": "4"}]': finished 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cluster 2024-09-21T11:59:02.083641+0000 mon.smithi078 (mon.0) 853 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cluster 2024-09-21T11:59:02.083641+0000 mon.smithi078 (mon.0) 853 : cluster [DBG] osdmap e55: 8 total, 8 up, 8 in 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.137370+0000 mon.smithi078 (mon.0) 854 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.137370+0000 mon.smithi078 (mon.0) 854 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.143622+0000 mon.smithi078 (mon.0) 855 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.143622+0000 mon.smithi078 (mon.0) 855 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.148524+0000 mon.smithi078 (mon.0) 856 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.148524+0000 mon.smithi078 (mon.0) 856 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.154125+0000 mon.smithi078 (mon.0) 857 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: audit 2024-09-21T11:59:02.154125+0000 mon.smithi078 (mon.0) 857 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cephadm 2024-09-21T11:59:02.154860+0000 mgr.smithi078.aqnwdz (mgr.14203) 266 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi078 interface enp3s0f1 2024-09-21T11:59:03.406 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cephadm 2024-09-21T11:59:02.154860+0000 mgr.smithi078.aqnwdz (mgr.14203) 266 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi078 interface enp3s0f1 2024-09-21T11:59:03.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cephadm 2024-09-21T11:59:02.155017+0000 mgr.smithi078.aqnwdz (mgr.14203) 267 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi195 interface enp3s0f1 2024-09-21T11:59:03.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cephadm 2024-09-21T11:59:02.155017+0000 mgr.smithi078.aqnwdz (mgr.14203) 267 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi195 interface enp3s0f1 2024-09-21T11:59:03.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cephadm 2024-09-21T11:59:02.163229+0000 mgr.smithi078.aqnwdz (mgr.14203) 268 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi078.ntdtvm on smithi078 2024-09-21T11:59:03.407 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:03 smithi078 bash[20010]: cephadm 2024-09-21T11:59:02.163229+0000 mgr.smithi078.aqnwdz (mgr.14203) 268 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi078.ntdtvm on smithi078 2024-09-21T11:59:04.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:04 smithi195 bash[25267]: cluster 2024-09-21T11:59:03.085998+0000 mon.smithi078 (mon.0) 858 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-21T11:59:04.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:04 smithi195 bash[25267]: cluster 2024-09-21T11:59:03.085998+0000 mon.smithi078 (mon.0) 858 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-21T11:59:04.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:04 smithi195 bash[25267]: audit 2024-09-21T11:59:03.108229+0000 mon.smithi078 (mon.0) 859 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-21T11:59:04.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:04 smithi195 bash[25267]: audit 2024-09-21T11:59:03.108229+0000 mon.smithi078 (mon.0) 859 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-21T11:59:04.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:04 smithi195 bash[25267]: audit 2024-09-21T11:59:04.081113+0000 mon.smithi078 (mon.0) 860 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-21T11:59:04.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:04 smithi195 bash[25267]: audit 2024-09-21T11:59:04.081113+0000 mon.smithi078 (mon.0) 860 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-21T11:59:04.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:04 smithi195 bash[25267]: cluster 2024-09-21T11:59:04.089603+0000 mon.smithi078 (mon.0) 861 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-21T11:59:04.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:04 smithi195 bash[25267]: cluster 2024-09-21T11:59:04.089603+0000 mon.smithi078 (mon.0) 861 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-21T11:59:04.392 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:04 smithi078 bash[20010]: cluster 2024-09-21T11:59:03.085998+0000 mon.smithi078 (mon.0) 858 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-21T11:59:04.393 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:04 smithi078 bash[20010]: cluster 2024-09-21T11:59:03.085998+0000 mon.smithi078 (mon.0) 858 : cluster [DBG] osdmap e56: 8 total, 8 up, 8 in 2024-09-21T11:59:04.393 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:04 smithi078 bash[20010]: audit 2024-09-21T11:59:03.108229+0000 mon.smithi078 (mon.0) 859 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-21T11:59:04.393 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:04 smithi078 bash[20010]: audit 2024-09-21T11:59:03.108229+0000 mon.smithi078 (mon.0) 859 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"} : dispatch 2024-09-21T11:59:04.393 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:04 smithi078 bash[20010]: audit 2024-09-21T11:59:04.081113+0000 mon.smithi078 (mon.0) 860 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-21T11:59:04.393 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:04 smithi078 bash[20010]: audit 2024-09-21T11:59:04.081113+0000 mon.smithi078 (mon.0) 860 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool application enable","pool": "default.rgw.buckets.data","app": "rgw"}]': finished 2024-09-21T11:59:04.393 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:04 smithi078 bash[20010]: cluster 2024-09-21T11:59:04.089603+0000 mon.smithi078 (mon.0) 861 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-21T11:59:04.393 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:04 smithi078 bash[20010]: cluster 2024-09-21T11:59:04.089603+0000 mon.smithi078 (mon.0) 861 : cluster [DBG] osdmap e57: 8 total, 8 up, 8 in 2024-09-21T11:59:05.186 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T11:59:05.195 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:59:05.196 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph nfs export create rgw --bucket foobucket --cluster-id foo --pseudo-path /foobucket' 2024-09-21T11:59:05.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: cluster 2024-09-21T11:59:03.484213+0000 mgr.smithi078.aqnwdz (mgr.14203) 269 : cluster [DBG] pgmap v225: 225 pgs: 5 creating+peering, 44 unknown, 176 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 511 B/s wr, 4 op/s 2024-09-21T11:59:05.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: cluster 2024-09-21T11:59:03.484213+0000 mgr.smithi078.aqnwdz (mgr.14203) 269 : cluster [DBG] pgmap v225: 225 pgs: 5 creating+peering, 44 unknown, 176 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 511 B/s wr, 4 op/s 2024-09-21T11:59:05.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: cluster 2024-09-21T11:59:04.094470+0000 mon.smithi078 (mon.0) 862 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T11:59:05.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: cluster 2024-09-21T11:59:04.094470+0000 mon.smithi078 (mon.0) 862 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T11:59:05.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: audit 2024-09-21T11:59:04.104409+0000 mon.smithi078 (mon.0) 863 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-21T11:59:05.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: audit 2024-09-21T11:59:04.104409+0000 mon.smithi078 (mon.0) 863 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-21T11:59:05.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: audit 2024-09-21T11:59:05.100434+0000 mon.smithi078 (mon.0) 864 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-21T11:59:05.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: audit 2024-09-21T11:59:05.100434+0000 mon.smithi078 (mon.0) 864 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-21T11:59:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: cluster 2024-09-21T11:59:05.105576+0000 mon.smithi078 (mon.0) 865 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-21T11:59:05.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:05 smithi195 bash[25267]: cluster 2024-09-21T11:59:05.105576+0000 mon.smithi078 (mon.0) 865 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: cluster 2024-09-21T11:59:03.484213+0000 mgr.smithi078.aqnwdz (mgr.14203) 269 : cluster [DBG] pgmap v225: 225 pgs: 5 creating+peering, 44 unknown, 176 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 511 B/s wr, 4 op/s 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: cluster 2024-09-21T11:59:03.484213+0000 mgr.smithi078.aqnwdz (mgr.14203) 269 : cluster [DBG] pgmap v225: 225 pgs: 5 creating+peering, 44 unknown, 176 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 3.2 KiB/s rd, 511 B/s wr, 4 op/s 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: cluster 2024-09-21T11:59:04.094470+0000 mon.smithi078 (mon.0) 862 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: cluster 2024-09-21T11:59:04.094470+0000 mon.smithi078 (mon.0) 862 : cluster [WRN] Health check failed: 1 pool(s) do not have an application enabled (POOL_APP_NOT_ENABLED) 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: audit 2024-09-21T11:59:04.104409+0000 mon.smithi078 (mon.0) 863 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: audit 2024-09-21T11:59:04.104409+0000 mon.smithi078 (mon.0) 863 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd={"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"} : dispatch 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: audit 2024-09-21T11:59:05.100434+0000 mon.smithi078 (mon.0) 864 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: audit 2024-09-21T11:59:05.100434+0000 mon.smithi078 (mon.0) 864 : audit [INF] from='client.? 172.21.15.78:0/3959539161' entity='client.rgw.foorgw.smithi078.vfczdr' cmd='[{"prefix": "osd pool set", "pool": "default.rgw.buckets.data", "var": "bulk", "val": "true"}]': finished 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: cluster 2024-09-21T11:59:05.105576+0000 mon.smithi078 (mon.0) 865 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-21T11:59:05.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:05 smithi078 bash[20010]: cluster 2024-09-21T11:59:05.105576+0000 mon.smithi078 (mon.0) 865 : cluster [DBG] osdmap e58: 8 total, 8 up, 8 in 2024-09-21T11:59:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:06 smithi195 bash[25267]: cluster 2024-09-21T11:59:06.111282+0000 mon.smithi078 (mon.0) 866 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T11:59:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:06 smithi195 bash[25267]: cluster 2024-09-21T11:59:06.111282+0000 mon.smithi078 (mon.0) 866 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T11:59:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:06 smithi195 bash[25267]: cluster 2024-09-21T11:59:06.111329+0000 mon.smithi078 (mon.0) 867 : cluster [INF] Cluster is now healthy 2024-09-21T11:59:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:06 smithi195 bash[25267]: cluster 2024-09-21T11:59:06.111329+0000 mon.smithi078 (mon.0) 867 : cluster [INF] Cluster is now healthy 2024-09-21T11:59:06.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:06 smithi078 bash[20010]: cluster 2024-09-21T11:59:06.111282+0000 mon.smithi078 (mon.0) 866 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T11:59:06.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:06 smithi078 bash[20010]: cluster 2024-09-21T11:59:06.111282+0000 mon.smithi078 (mon.0) 866 : cluster [INF] Health check cleared: POOL_APP_NOT_ENABLED (was: 1 pool(s) do not have an application enabled) 2024-09-21T11:59:06.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:06 smithi078 bash[20010]: cluster 2024-09-21T11:59:06.111329+0000 mon.smithi078 (mon.0) 867 : cluster [INF] Cluster is now healthy 2024-09-21T11:59:06.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:06 smithi078 bash[20010]: cluster 2024-09-21T11:59:06.111329+0000 mon.smithi078 (mon.0) 867 : cluster [INF] Cluster is now healthy 2024-09-21T11:59:07.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:07 smithi195 bash[25267]: cluster 2024-09-21T11:59:05.484837+0000 mgr.smithi078.aqnwdz (mgr.14203) 270 : cluster [DBG] pgmap v228: 225 pgs: 14 unknown, 211 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.2 KiB/s wr, 9 op/s 2024-09-21T11:59:07.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:07 smithi195 bash[25267]: cluster 2024-09-21T11:59:05.484837+0000 mgr.smithi078.aqnwdz (mgr.14203) 270 : cluster [DBG] pgmap v228: 225 pgs: 14 unknown, 211 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.2 KiB/s wr, 9 op/s 2024-09-21T11:59:07.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:07 smithi078 bash[20010]: cluster 2024-09-21T11:59:05.484837+0000 mgr.smithi078.aqnwdz (mgr.14203) 270 : cluster [DBG] pgmap v228: 225 pgs: 14 unknown, 211 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.2 KiB/s wr, 9 op/s 2024-09-21T11:59:07.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:07 smithi078 bash[20010]: cluster 2024-09-21T11:59:05.484837+0000 mgr.smithi078.aqnwdz (mgr.14203) 270 : cluster [DBG] pgmap v228: 225 pgs: 14 unknown, 211 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 2.5 KiB/s rd, 1.2 KiB/s wr, 9 op/s 2024-09-21T11:59:09.576 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:09 smithi078 bash[20010]: cluster 2024-09-21T11:59:07.486009+0000 mgr.smithi078.aqnwdz (mgr.14203) 271 : cluster [DBG] pgmap v229: 225 pgs: 7 unknown, 218 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 946 B/s wr, 7 op/s 2024-09-21T11:59:09.576 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:09 smithi078 bash[20010]: cluster 2024-09-21T11:59:07.486009+0000 mgr.smithi078.aqnwdz (mgr.14203) 271 : cluster [DBG] pgmap v229: 225 pgs: 7 unknown, 218 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 946 B/s wr, 7 op/s 2024-09-21T11:59:09.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:09 smithi195 bash[25267]: cluster 2024-09-21T11:59:07.486009+0000 mgr.smithi078.aqnwdz (mgr.14203) 271 : cluster [DBG] pgmap v229: 225 pgs: 7 unknown, 218 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 946 B/s wr, 7 op/s 2024-09-21T11:59:09.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:09 smithi195 bash[25267]: cluster 2024-09-21T11:59:07.486009+0000 mgr.smithi078.aqnwdz (mgr.14203) 271 : cluster [DBG] pgmap v229: 225 pgs: 7 unknown, 218 active+clean; 583 KiB data, 242 MiB used, 715 GiB / 715 GiB avail; 1.8 KiB/s rd, 946 B/s wr, 7 op/s 2024-09-21T11:59:10.069 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:59:11.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:11 smithi078 bash[20010]: cluster 2024-09-21T11:59:09.487644+0000 mgr.smithi078.aqnwdz (mgr.14203) 272 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 799 B/s wr, 5 op/s 2024-09-21T11:59:11.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:11 smithi078 bash[20010]: cluster 2024-09-21T11:59:09.487644+0000 mgr.smithi078.aqnwdz (mgr.14203) 272 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 799 B/s wr, 5 op/s 2024-09-21T11:59:11.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:11 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:59:11.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:11 smithi195 bash[25267]: cluster 2024-09-21T11:59:09.487644+0000 mgr.smithi078.aqnwdz (mgr.14203) 272 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 799 B/s wr, 5 op/s 2024-09-21T11:59:11.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:11 smithi195 bash[25267]: cluster 2024-09-21T11:59:09.487644+0000 mgr.smithi078.aqnwdz (mgr.14203) 272 : cluster [DBG] pgmap v230: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 799 B/s wr, 5 op/s 2024-09-21T11:59:11.769 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:11 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:59:12.189 INFO:teuthology.orchestra.run.smithi078.stdout:{ 2024-09-21T11:59:12.189 INFO:teuthology.orchestra.run.smithi078.stdout: "bind": "/foobucket", 2024-09-21T11:59:12.189 INFO:teuthology.orchestra.run.smithi078.stdout: "cluster": "foo", 2024-09-21T11:59:12.189 INFO:teuthology.orchestra.run.smithi078.stdout: "mode": "RW", 2024-09-21T11:59:12.189 INFO:teuthology.orchestra.run.smithi078.stdout: "path": "foobucket", 2024-09-21T11:59:12.189 INFO:teuthology.orchestra.run.smithi078.stdout: "squash": "none" 2024-09-21T11:59:12.189 INFO:teuthology.orchestra.run.smithi078.stdout:} 2024-09-21T11:59:13.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: cluster 2024-09-21T11:59:11.488394+0000 mgr.smithi078.aqnwdz (mgr.14203) 273 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 639 B/s wr, 4 op/s 2024-09-21T11:59:13.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: cluster 2024-09-21T11:59:11.488394+0000 mgr.smithi078.aqnwdz (mgr.14203) 273 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 639 B/s wr, 4 op/s 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: audit 2024-09-21T11:59:11.808300+0000 mon.smithi078 (mon.0) 868 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: audit 2024-09-21T11:59:11.808300+0000 mon.smithi078 (mon.0) 868 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: audit 2024-09-21T11:59:11.813768+0000 mon.smithi078 (mon.0) 869 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: audit 2024-09-21T11:59:11.813768+0000 mon.smithi078 (mon.0) 869 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: audit 2024-09-21T11:59:11.818368+0000 mon.smithi078 (mon.0) 870 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: audit 2024-09-21T11:59:11.818368+0000 mon.smithi078 (mon.0) 870 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: cephadm 2024-09-21T11:59:11.820750+0000 mgr.smithi078.aqnwdz (mgr.14203) 274 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi195 interface enp3s0f1 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: cephadm 2024-09-21T11:59:11.820750+0000 mgr.smithi078.aqnwdz (mgr.14203) 274 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi195 interface enp3s0f1 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: cephadm 2024-09-21T11:59:11.820941+0000 mgr.smithi078.aqnwdz (mgr.14203) 275 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi078 interface enp3s0f1 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: cephadm 2024-09-21T11:59:11.820941+0000 mgr.smithi078.aqnwdz (mgr.14203) 275 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi078 interface enp3s0f1 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: cephadm 2024-09-21T11:59:11.821414+0000 mgr.smithi078.aqnwdz (mgr.14203) 276 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi195.iriyeh on smithi195 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: cephadm 2024-09-21T11:59:11.821414+0000 mgr.smithi078.aqnwdz (mgr.14203) 276 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi195.iriyeh on smithi195 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: audit 2024-09-21T11:59:11.839956+0000 mgr.smithi078.aqnwdz (mgr.14203) 277 : audit [DBG] from='client.14572 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:59:13.119 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:12 smithi195 bash[25267]: audit 2024-09-21T11:59:11.839956+0000 mgr.smithi078.aqnwdz (mgr.14203) 277 : audit [DBG] from='client.14572 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:59:13.234 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: cluster 2024-09-21T11:59:11.488394+0000 mgr.smithi078.aqnwdz (mgr.14203) 273 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 639 B/s wr, 4 op/s 2024-09-21T11:59:13.234 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: cluster 2024-09-21T11:59:11.488394+0000 mgr.smithi078.aqnwdz (mgr.14203) 273 : cluster [DBG] pgmap v231: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 1023 B/s rd, 639 B/s wr, 4 op/s 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: audit 2024-09-21T11:59:11.808300+0000 mon.smithi078 (mon.0) 868 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: audit 2024-09-21T11:59:11.808300+0000 mon.smithi078 (mon.0) 868 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: audit 2024-09-21T11:59:11.813768+0000 mon.smithi078 (mon.0) 869 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: audit 2024-09-21T11:59:11.813768+0000 mon.smithi078 (mon.0) 869 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: audit 2024-09-21T11:59:11.818368+0000 mon.smithi078 (mon.0) 870 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: audit 2024-09-21T11:59:11.818368+0000 mon.smithi078 (mon.0) 870 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: cephadm 2024-09-21T11:59:11.820750+0000 mgr.smithi078.aqnwdz (mgr.14203) 274 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi195 interface enp3s0f1 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: cephadm 2024-09-21T11:59:11.820750+0000 mgr.smithi078.aqnwdz (mgr.14203) 274 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi195 interface enp3s0f1 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: cephadm 2024-09-21T11:59:11.820941+0000 mgr.smithi078.aqnwdz (mgr.14203) 275 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi078 interface enp3s0f1 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: cephadm 2024-09-21T11:59:11.820941+0000 mgr.smithi078.aqnwdz (mgr.14203) 275 : cephadm [INF] 10.0.31.78 is in 10.0.0.0/16 on smithi078 interface enp3s0f1 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: cephadm 2024-09-21T11:59:11.821414+0000 mgr.smithi078.aqnwdz (mgr.14203) 276 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi195.iriyeh on smithi195 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: cephadm 2024-09-21T11:59:11.821414+0000 mgr.smithi078.aqnwdz (mgr.14203) 276 : cephadm [INF] Deploying daemon keepalived.nfs.foo.smithi195.iriyeh on smithi195 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: audit 2024-09-21T11:59:11.839956+0000 mgr.smithi078.aqnwdz (mgr.14203) 277 : audit [DBG] from='client.14572 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:59:13.235 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:12 smithi078 bash[20010]: audit 2024-09-21T11:59:11.839956+0000 mgr.smithi078.aqnwdz (mgr.14203) 277 : audit [DBG] from='client.14572 -' entity='client.admin' cmd=[{"prefix": "nfs export create rgw", "bucket": "foobucket", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:59:13.435 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-21T11:59:13.445 INFO:tasks.cephadm:Waiting for ceph service nfs.foo to start (timeout 300)... 2024-09-21T11:59:13.445 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph orch ls -f json 2024-09-21T11:59:15.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:14 smithi195 bash[25267]: cluster 2024-09-21T11:59:13.489589+0000 mgr.smithi078.aqnwdz (mgr.14203) 278 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.6 KiB/s rd, 653 B/s wr, 9 op/s 2024-09-21T11:59:15.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:14 smithi195 bash[25267]: cluster 2024-09-21T11:59:13.489589+0000 mgr.smithi078.aqnwdz (mgr.14203) 278 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.6 KiB/s rd, 653 B/s wr, 9 op/s 2024-09-21T11:59:15.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:14 smithi078 bash[20010]: cluster 2024-09-21T11:59:13.489589+0000 mgr.smithi078.aqnwdz (mgr.14203) 278 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.6 KiB/s rd, 653 B/s wr, 9 op/s 2024-09-21T11:59:15.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:14 smithi078 bash[20010]: cluster 2024-09-21T11:59:13.489589+0000 mgr.smithi078.aqnwdz (mgr.14203) 278 : cluster [DBG] pgmap v232: 225 pgs: 225 active+clean; 583 KiB data, 243 MiB used, 715 GiB / 715 GiB avail; 5.6 KiB/s rd, 653 B/s wr, 9 op/s 2024-09-21T11:59:17.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:16 smithi195 bash[25267]: cluster 2024-09-21T11:59:15.491306+0000 mgr.smithi078.aqnwdz (mgr.14203) 279 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 591 B/s wr, 16 op/s 2024-09-21T11:59:17.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:16 smithi195 bash[25267]: cluster 2024-09-21T11:59:15.491306+0000 mgr.smithi078.aqnwdz (mgr.14203) 279 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 591 B/s wr, 16 op/s 2024-09-21T11:59:17.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:16 smithi195 bash[25267]: audit 2024-09-21T11:59:16.734570+0000 mon.smithi078 (mon.0) 871 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:17.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:16 smithi195 bash[25267]: audit 2024-09-21T11:59:16.734570+0000 mon.smithi078 (mon.0) 871 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:17.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:16 smithi078 bash[20010]: cluster 2024-09-21T11:59:15.491306+0000 mgr.smithi078.aqnwdz (mgr.14203) 279 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 591 B/s wr, 16 op/s 2024-09-21T11:59:17.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:16 smithi078 bash[20010]: cluster 2024-09-21T11:59:15.491306+0000 mgr.smithi078.aqnwdz (mgr.14203) 279 : cluster [DBG] pgmap v233: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 11 KiB/s rd, 591 B/s wr, 16 op/s 2024-09-21T11:59:17.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:16 smithi078 bash[20010]: audit 2024-09-21T11:59:16.734570+0000 mon.smithi078 (mon.0) 871 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:17.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:16 smithi078 bash[20010]: audit 2024-09-21T11:59:16.734570+0000 mon.smithi078 (mon.0) 871 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:18.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:17 smithi195 bash[25267]: audit 2024-09-21T11:59:16.870756+0000 mon.smithi078 (mon.0) 872 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:18.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:17 smithi195 bash[25267]: audit 2024-09-21T11:59:16.870756+0000 mon.smithi078 (mon.0) 872 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:18.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:17 smithi078 bash[20010]: audit 2024-09-21T11:59:16.870756+0000 mon.smithi078 (mon.0) 872 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:18.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:17 smithi078 bash[20010]: audit 2024-09-21T11:59:16.870756+0000 mon.smithi078 (mon.0) 872 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:18.311 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:59:19.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:18 smithi078 bash[20010]: cluster 2024-09-21T11:59:17.492503+0000 mgr.smithi078.aqnwdz (mgr.14203) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 14 op/s 2024-09-21T11:59:19.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:18 smithi078 bash[20010]: cluster 2024-09-21T11:59:17.492503+0000 mgr.smithi078.aqnwdz (mgr.14203) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 14 op/s 2024-09-21T11:59:19.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:18 smithi195 bash[25267]: cluster 2024-09-21T11:59:17.492503+0000 mgr.smithi078.aqnwdz (mgr.14203) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 14 op/s 2024-09-21T11:59:19.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:18 smithi195 bash[25267]: cluster 2024-09-21T11:59:17.492503+0000 mgr.smithi078.aqnwdz (mgr.14203) 280 : cluster [DBG] pgmap v234: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 14 op/s 2024-09-21T11:59:19.962 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:59:19.962 INFO:teuthology.orchestra.run.smithi078.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-21T11:51:20.009293Z", "last_refresh": "2024-09-21T11:58:19.776448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:53:16.730584Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-21T11:51:11.732320Z", "last_refresh": "2024-09-21T11:58:19.422719Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:20.566885Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-21T11:51:09.635797Z", "last_refresh": "2024-09-21T11:58:19.422842Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-21T11:51:15.871655Z", "last_refresh": "2024-09-21T11:58:19.776544Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:59:11.818586Z 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", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.78/16"}, "status": {"created": "2024-09-21T11:58:28.687850Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.78/16"}}, {"events": ["2024-09-21T11:53:25.472130Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-21T11:51:07.537651Z", "last_refresh": "2024-09-21T11:58:19.423068Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:31.637956Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi078:172.21.15.78=smithi078", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-21T11:52:48.564079Z", "last_refresh": "2024-09-21T11:58:19.423170Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T11:58:44.667716Z 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-09-21T11:58:28.681765Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-21T11:53:21.861547Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-21T11:51:17.852455Z", "last_refresh": "2024-09-21T11:58:19.422947Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:53.601424Z 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-09-21T11:53:53.589983Z", "last_refresh": "2024-09-21T11:58:19.423269Z", "running": 8, "size": 8}}, {"events": ["2024-09-21T11:53:31.647318Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-21T11:51:13.869924Z", "last_refresh": "2024-09-21T11:58:19.776640Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:58:39.874483Z 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-09-21T11:58:39.862394Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-21T11:59:20.647 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-21T11:59:20.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:20 smithi078 bash[20010]: cluster 2024-09-21T11:59:19.493970+0000 mgr.smithi078.aqnwdz (mgr.14203) 281 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 14 op/s 2024-09-21T11:59:20.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:20 smithi078 bash[20010]: cluster 2024-09-21T11:59:19.493970+0000 mgr.smithi078.aqnwdz (mgr.14203) 281 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 14 op/s 2024-09-21T11:59:20.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:20 smithi078 bash[20010]: audit 2024-09-21T11:59:19.955147+0000 mgr.smithi078.aqnwdz (mgr.14203) 282 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:20.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:20 smithi078 bash[20010]: audit 2024-09-21T11:59:19.955147+0000 mgr.smithi078.aqnwdz (mgr.14203) 282 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:21.165 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:20 smithi195 bash[25267]: cluster 2024-09-21T11:59:19.493970+0000 mgr.smithi078.aqnwdz (mgr.14203) 281 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 14 op/s 2024-09-21T11:59:21.165 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:20 smithi195 bash[25267]: cluster 2024-09-21T11:59:19.493970+0000 mgr.smithi078.aqnwdz (mgr.14203) 281 : cluster [DBG] pgmap v235: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 14 op/s 2024-09-21T11:59:21.165 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:20 smithi195 bash[25267]: audit 2024-09-21T11:59:19.955147+0000 mgr.smithi078.aqnwdz (mgr.14203) 282 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:21.165 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:20 smithi195 bash[25267]: audit 2024-09-21T11:59:19.955147+0000 mgr.smithi078.aqnwdz (mgr.14203) 282 : audit [DBG] from='client.14612 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:21.648 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph orch ls -f json 2024-09-21T11:59:22.226 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:59:22.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T11:59:23.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: cluster 2024-09-21T11:59:21.495217+0000 mgr.smithi078.aqnwdz (mgr.14203) 283 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-21T11:59:23.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: cluster 2024-09-21T11:59:21.495217+0000 mgr.smithi078.aqnwdz (mgr.14203) 283 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-21T11:59:23.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.519297+0000 mon.smithi078 (mon.0) 873 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.519297+0000 mon.smithi078 (mon.0) 873 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.529889+0000 mon.smithi078 (mon.0) 874 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.529889+0000 mon.smithi078 (mon.0) 874 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.538656+0000 mon.smithi078 (mon.0) 875 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.538656+0000 mon.smithi078 (mon.0) 875 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.545834+0000 mon.smithi078 (mon.0) 876 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.545834+0000 mon.smithi078 (mon.0) 876 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.595277+0000 mon.smithi078 (mon.0) 877 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:59:23.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:22 smithi078 bash[20010]: audit 2024-09-21T11:59:22.595277+0000 mon.smithi078 (mon.0) 877 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:59:23.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: cluster 2024-09-21T11:59:21.495217+0000 mgr.smithi078.aqnwdz (mgr.14203) 283 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-21T11:59:23.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: cluster 2024-09-21T11:59:21.495217+0000 mgr.smithi078.aqnwdz (mgr.14203) 283 : cluster [DBG] pgmap v236: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-21T11:59:23.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.519297+0000 mon.smithi078 (mon.0) 873 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.519297+0000 mon.smithi078 (mon.0) 873 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.529889+0000 mon.smithi078 (mon.0) 874 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.529889+0000 mon.smithi078 (mon.0) 874 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.538656+0000 mon.smithi078 (mon.0) 875 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.538656+0000 mon.smithi078 (mon.0) 875 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.545834+0000 mon.smithi078 (mon.0) 876 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.545834+0000 mon.smithi078 (mon.0) 876 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:23.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.595277+0000 mon.smithi078 (mon.0) 877 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:59:23.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:22 smithi195 bash[25267]: audit 2024-09-21T11:59:22.595277+0000 mon.smithi078 (mon.0) 877 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:59:25.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:24 smithi078 bash[20010]: cluster 2024-09-21T11:59:23.496674+0000 mgr.smithi078.aqnwdz (mgr.14203) 284 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-21T11:59:25.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:24 smithi078 bash[20010]: cluster 2024-09-21T11:59:23.496674+0000 mgr.smithi078.aqnwdz (mgr.14203) 284 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-21T11:59:25.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:24 smithi195 bash[25267]: cluster 2024-09-21T11:59:23.496674+0000 mgr.smithi078.aqnwdz (mgr.14203) 284 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-21T11:59:25.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:24 smithi195 bash[25267]: cluster 2024-09-21T11:59:23.496674+0000 mgr.smithi078.aqnwdz (mgr.14203) 284 : cluster [DBG] pgmap v237: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 10 KiB/s rd, 341 B/s wr, 13 op/s 2024-09-21T11:59:26.485 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:59:27.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:26 smithi078 bash[20010]: cluster 2024-09-21T11:59:25.497631+0000 mgr.smithi078.aqnwdz (mgr.14203) 285 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 255 B/s wr, 8 op/s 2024-09-21T11:59:27.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:26 smithi078 bash[20010]: cluster 2024-09-21T11:59:25.497631+0000 mgr.smithi078.aqnwdz (mgr.14203) 285 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 255 B/s wr, 8 op/s 2024-09-21T11:59:27.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:26 smithi078 bash[20010]: audit 2024-09-21T11:59:26.882955+0000 mon.smithi078 (mon.0) 878 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:27.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:26 smithi078 bash[20010]: audit 2024-09-21T11:59:26.882955+0000 mon.smithi078 (mon.0) 878 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:27.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:26 smithi195 bash[25267]: cluster 2024-09-21T11:59:25.497631+0000 mgr.smithi078.aqnwdz (mgr.14203) 285 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 255 B/s wr, 8 op/s 2024-09-21T11:59:27.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:26 smithi195 bash[25267]: cluster 2024-09-21T11:59:25.497631+0000 mgr.smithi078.aqnwdz (mgr.14203) 285 : cluster [DBG] pgmap v238: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 6.2 KiB/s rd, 255 B/s wr, 8 op/s 2024-09-21T11:59:27.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:26 smithi195 bash[25267]: audit 2024-09-21T11:59:26.882955+0000 mon.smithi078 (mon.0) 878 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:27.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:26 smithi195 bash[25267]: audit 2024-09-21T11:59:26.882955+0000 mon.smithi078 (mon.0) 878 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:28.091 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:59:28.091 INFO:teuthology.orchestra.run.smithi078.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-21T11:51:20.009293Z", "last_refresh": "2024-09-21T11:58:19.776448Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:53:16.730584Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-21T11:51:11.732320Z", "last_refresh": "2024-09-21T11:58:19.422719Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:20.566885Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-21T11:51:09.635797Z", "last_refresh": "2024-09-21T11:58:19.422842Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-21T11:51:15.871655Z", "last_refresh": "2024-09-21T11:58:19.776544Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:59:22.546325Z 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", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.78/16"}, "status": {"created": "2024-09-21T11:58:28.687850Z", "ports": [2049, 9049], "running": 0, "size": 4, "virtual_ip": "10.0.31.78/16"}}, {"events": ["2024-09-21T11:53:25.472130Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-21T11:51:07.537651Z", "last_refresh": "2024-09-21T11:58:19.423068Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:31.637956Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi078:172.21.15.78=smithi078", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-21T11:52:48.564079Z", "last_refresh": "2024-09-21T11:58:19.423170Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T11:58:44.667716Z 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-09-21T11:58:28.681765Z", "ports": [12049], "running": 0, "size": 1}}, {"events": ["2024-09-21T11:53:21.861547Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-21T11:51:17.852455Z", "last_refresh": "2024-09-21T11:58:19.422947Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:53.601424Z 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-09-21T11:53:53.589983Z", "last_refresh": "2024-09-21T11:58:19.423269Z", "running": 8, "size": 8}}, {"events": ["2024-09-21T11:53:31.647318Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-21T11:51:13.869924Z", "last_refresh": "2024-09-21T11:58:19.776640Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:58:39.874483Z 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-09-21T11:58:39.862394Z", "ports": [8800], "running": 0, "size": 2}}] 2024-09-21T11:59:28.703 INFO:tasks.cephadm:nfs.foo has 0/1 2024-09-21T11:59:29.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: cluster 2024-09-21T11:59:27.498969+0000 mgr.smithi078.aqnwdz (mgr.14203) 286 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-21T11:59:29.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: cluster 2024-09-21T11:59:27.498969+0000 mgr.smithi078.aqnwdz (mgr.14203) 286 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-21T11:59:29.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.086825+0000 mgr.smithi078.aqnwdz (mgr.14203) 287 : audit [DBG] from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:29.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.086825+0000 mgr.smithi078.aqnwdz (mgr.14203) 287 : audit [DBG] from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:29.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.391494+0000 mon.smithi078 (mon.0) 879 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.391494+0000 mon.smithi078 (mon.0) 879 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.396522+0000 mon.smithi078 (mon.0) 880 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.396522+0000 mon.smithi078 (mon.0) 880 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.633332+0000 mon.smithi078 (mon.0) 881 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.633332+0000 mon.smithi078 (mon.0) 881 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.638986+0000 mon.smithi078 (mon.0) 882 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:28 smithi078 bash[20010]: audit 2024-09-21T11:59:28.638986+0000 mon.smithi078 (mon.0) 882 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: cluster 2024-09-21T11:59:27.498969+0000 mgr.smithi078.aqnwdz (mgr.14203) 286 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-21T11:59:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: cluster 2024-09-21T11:59:27.498969+0000 mgr.smithi078.aqnwdz (mgr.14203) 286 : cluster [DBG] pgmap v239: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.2 KiB/s rd, 170 B/s wr, 1 op/s 2024-09-21T11:59:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.086825+0000 mgr.smithi078.aqnwdz (mgr.14203) 287 : audit [DBG] from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.086825+0000 mgr.smithi078.aqnwdz (mgr.14203) 287 : audit [DBG] from='client.14616 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.391494+0000 mon.smithi078 (mon.0) 879 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.391494+0000 mon.smithi078 (mon.0) 879 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.396522+0000 mon.smithi078 (mon.0) 880 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.396522+0000 mon.smithi078 (mon.0) 880 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.633332+0000 mon.smithi078 (mon.0) 881 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.633332+0000 mon.smithi078 (mon.0) 881 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.638986+0000 mon.smithi078 (mon.0) 882 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:28 smithi195 bash[25267]: audit 2024-09-21T11:59:28.638986+0000 mon.smithi078 (mon.0) 882 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:29.704 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph orch ls -f json 2024-09-21T11:59:30.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.233336+0000 mon.smithi078 (mon.0) 883 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.233336+0000 mon.smithi078 (mon.0) 883 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.234908+0000 mon.smithi078 (mon.0) 884 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.234908+0000 mon.smithi078 (mon.0) 884 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.686544+0000 mon.smithi078 (mon.0) 885 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.686544+0000 mon.smithi078 (mon.0) 885 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.693844+0000 mon.smithi078 (mon.0) 886 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.693844+0000 mon.smithi078 (mon.0) 886 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.703107+0000 mon.smithi078 (mon.0) 887 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.703107+0000 mon.smithi078 (mon.0) 887 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.155 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.706513+0000 mon.smithi078 (mon.0) 888 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:59:30.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.706513+0000 mon.smithi078 (mon.0) 888 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:59:30.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.720477+0000 mon.smithi078 (mon.0) 889 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.720477+0000 mon.smithi078 (mon.0) 889 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.831855+0000 mon.smithi078 (mon.0) 890 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:59:30.156 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:29 smithi078 bash[20010]: audit 2024-09-21T11:59:29.831855+0000 mon.smithi078 (mon.0) 890 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:59:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.233336+0000 mon.smithi078 (mon.0) 883 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:59:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.233336+0000 mon.smithi078 (mon.0) 883 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:59:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.234908+0000 mon.smithi078 (mon.0) 884 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:59:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.234908+0000 mon.smithi078 (mon.0) 884 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:59:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.686544+0000 mon.smithi078 (mon.0) 885 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.686544+0000 mon.smithi078 (mon.0) 885 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.693844+0000 mon.smithi078 (mon.0) 886 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.693844+0000 mon.smithi078 (mon.0) 886 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.703107+0000 mon.smithi078 (mon.0) 887 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.703107+0000 mon.smithi078 (mon.0) 887 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.706513+0000 mon.smithi078 (mon.0) 888 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:59:30.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.706513+0000 mon.smithi078 (mon.0) 888 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:59:30.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.720477+0000 mon.smithi078 (mon.0) 889 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.720477+0000 mon.smithi078 (mon.0) 889 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:30.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.831855+0000 mon.smithi078 (mon.0) 890 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:59:30.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:29 smithi195 bash[25267]: audit 2024-09-21T11:59:29.831855+0000 mon.smithi078 (mon.0) 890 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: cephadm 2024-09-21T11:59:29.247467+0000 mgr.smithi078.aqnwdz (mgr.14203) 288 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: cephadm 2024-09-21T11:59:29.247467+0000 mgr.smithi078.aqnwdz (mgr.14203) 288 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: cluster 2024-09-21T11:59:29.499987+0000 mgr.smithi078.aqnwdz (mgr.14203) 289 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: cluster 2024-09-21T11:59:29.499987+0000 mgr.smithi078.aqnwdz (mgr.14203) 289 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: cephadm 2024-09-21T11:59:29.744367+0000 mgr.smithi078.aqnwdz (mgr.14203) 290 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: cephadm 2024-09-21T11:59:29.744367+0000 mgr.smithi078.aqnwdz (mgr.14203) 290 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: audit 2024-09-21T11:59:29.833921+0000 mgr.smithi078.aqnwdz (mgr.14203) 291 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: audit 2024-09-21T11:59:29.833921+0000 mgr.smithi078.aqnwdz (mgr.14203) 291 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: cephadm 2024-09-21T11:59:29.970302+0000 mgr.smithi078.aqnwdz (mgr.14203) 292 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T11:59:31.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: cephadm 2024-09-21T11:59:29.970302+0000 mgr.smithi078.aqnwdz (mgr.14203) 292 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T11:59:31.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: audit 2024-09-21T11:59:30.441850+0000 mon.smithi078 (mon.0) 891 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:59:31.369 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:30 smithi195 bash[25267]: audit 2024-09-21T11:59:30.441850+0000 mon.smithi078 (mon.0) 891 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:59:31.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: cephadm 2024-09-21T11:59:29.247467+0000 mgr.smithi078.aqnwdz (mgr.14203) 288 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T11:59:31.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: cephadm 2024-09-21T11:59:29.247467+0000 mgr.smithi078.aqnwdz (mgr.14203) 288 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T11:59:31.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: cluster 2024-09-21T11:59:29.499987+0000 mgr.smithi078.aqnwdz (mgr.14203) 289 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T11:59:31.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: cluster 2024-09-21T11:59:29.499987+0000 mgr.smithi078.aqnwdz (mgr.14203) 289 : cluster [DBG] pgmap v240: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T11:59:31.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: cephadm 2024-09-21T11:59:29.744367+0000 mgr.smithi078.aqnwdz (mgr.14203) 290 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T11:59:31.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: cephadm 2024-09-21T11:59:29.744367+0000 mgr.smithi078.aqnwdz (mgr.14203) 290 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T11:59:31.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: audit 2024-09-21T11:59:29.833921+0000 mgr.smithi078.aqnwdz (mgr.14203) 291 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:59:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: audit 2024-09-21T11:59:29.833921+0000 mgr.smithi078.aqnwdz (mgr.14203) 291 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:59:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: cephadm 2024-09-21T11:59:29.970302+0000 mgr.smithi078.aqnwdz (mgr.14203) 292 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T11:59:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: cephadm 2024-09-21T11:59:29.970302+0000 mgr.smithi078.aqnwdz (mgr.14203) 292 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T11:59:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: audit 2024-09-21T11:59:30.441850+0000 mon.smithi078 (mon.0) 891 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:59:31.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:30 smithi078 bash[20010]: audit 2024-09-21T11:59:30.441850+0000 mon.smithi078 (mon.0) 891 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "orch prometheus get-credentials"} : dispatch 2024-09-21T11:59:32.056 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:31 smithi078 bash[20010]: audit 2024-09-21T11:59:30.442535+0000 mgr.smithi078.aqnwdz (mgr.14203) 293 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:59:32.056 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:31 smithi078 bash[20010]: audit 2024-09-21T11:59:30.442535+0000 mgr.smithi078.aqnwdz (mgr.14203) 293 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:59:32.056 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:31 smithi078 bash[20010]: audit 2024-09-21T11:59:31.733669+0000 mon.smithi078 (mon.0) 892 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:32.057 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:31 smithi078 bash[20010]: audit 2024-09-21T11:59:31.733669+0000 mon.smithi078 (mon.0) 892 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:32.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:31 smithi195 bash[25267]: audit 2024-09-21T11:59:30.442535+0000 mgr.smithi078.aqnwdz (mgr.14203) 293 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:59:32.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:31 smithi195 bash[25267]: audit 2024-09-21T11:59:30.442535+0000 mgr.smithi078.aqnwdz (mgr.14203) 293 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "orch prometheus get-credentials"}]: dispatch 2024-09-21T11:59:32.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:31 smithi195 bash[25267]: audit 2024-09-21T11:59:31.733669+0000 mon.smithi078 (mon.0) 892 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:32.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:31 smithi195 bash[25267]: audit 2024-09-21T11:59:31.733669+0000 mon.smithi078 (mon.0) 892 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:33.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:32 smithi195 bash[25267]: cluster 2024-09-21T11:59:31.501415+0000 mgr.smithi078.aqnwdz (mgr.14203) 294 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T11:59:33.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:32 smithi195 bash[25267]: cluster 2024-09-21T11:59:31.501415+0000 mgr.smithi078.aqnwdz (mgr.14203) 294 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T11:59:33.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:32 smithi078 bash[20010]: cluster 2024-09-21T11:59:31.501415+0000 mgr.smithi078.aqnwdz (mgr.14203) 294 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T11:59:33.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:32 smithi078 bash[20010]: cluster 2024-09-21T11:59:31.501415+0000 mgr.smithi078.aqnwdz (mgr.14203) 294 : cluster [DBG] pgmap v241: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 511 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T11:59:35.041 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:34 smithi078 bash[20010]: cluster 2024-09-21T11:59:33.502399+0000 mgr.smithi078.aqnwdz (mgr.14203) 295 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.9 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T11:59:35.041 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:34 smithi078 bash[20010]: cluster 2024-09-21T11:59:33.502399+0000 mgr.smithi078.aqnwdz (mgr.14203) 295 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.9 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T11:59:35.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:34 smithi195 bash[25267]: cluster 2024-09-21T11:59:33.502399+0000 mgr.smithi078.aqnwdz (mgr.14203) 295 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.9 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T11:59:35.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:34 smithi195 bash[25267]: cluster 2024-09-21T11:59:33.502399+0000 mgr.smithi078.aqnwdz (mgr.14203) 295 : cluster [DBG] pgmap v242: 225 pgs: 225 active+clean; 583 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 1.9 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T11:59:35.584 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:34.974538+0000 mon.smithi078 (mon.0) 893 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:34.974538+0000 mon.smithi078 (mon.0) 893 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:34.979790+0000 mon.smithi078 (mon.0) 894 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:34.979790+0000 mon.smithi078 (mon.0) 894 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:34.985568+0000 mon.smithi078 (mon.0) 895 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:34.985568+0000 mon.smithi078 (mon.0) 895 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:34.986024+0000 mgr.smithi078.aqnwdz (mgr.14203) 296 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:34.986024+0000 mgr.smithi078.aqnwdz (mgr.14203) 296 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:35.242796+0000 mon.smithi078 (mon.0) 896 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:59:36.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:35 smithi195 bash[25267]: audit 2024-09-21T11:59:35.242796+0000 mon.smithi078 (mon.0) 896 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:34.974538+0000 mon.smithi078 (mon.0) 893 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:34.974538+0000 mon.smithi078 (mon.0) 893 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:34.979790+0000 mon.smithi078 (mon.0) 894 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:34.979790+0000 mon.smithi078 (mon.0) 894 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:34.985568+0000 mon.smithi078 (mon.0) 895 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:34.985568+0000 mon.smithi078 (mon.0) 895 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:34.986024+0000 mgr.smithi078.aqnwdz (mgr.14203) 296 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:34.986024+0000 mgr.smithi078.aqnwdz (mgr.14203) 296 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:35.242796+0000 mon.smithi078 (mon.0) 896 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:59:36.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:35 smithi078 bash[20010]: audit 2024-09-21T11:59:35.242796+0000 mon.smithi078 (mon.0) 896 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T11:59:37.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:36 smithi195 bash[25267]: cluster 2024-09-21T11:59:35.503954+0000 mgr.smithi078.aqnwdz (mgr.14203) 297 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:37.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:36 smithi195 bash[25267]: cluster 2024-09-21T11:59:35.503954+0000 mgr.smithi078.aqnwdz (mgr.14203) 297 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:37.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:36 smithi078 bash[20010]: cluster 2024-09-21T11:59:35.503954+0000 mgr.smithi078.aqnwdz (mgr.14203) 297 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:37.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:36 smithi078 bash[20010]: cluster 2024-09-21T11:59:35.503954+0000 mgr.smithi078.aqnwdz (mgr.14203) 297 : cluster [DBG] pgmap v243: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:37.441 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:59:37.441 INFO:teuthology.orchestra.run.smithi078.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-21T11:51:20.009293Z", "last_refresh": "2024-09-21T11:59:28.627167Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:53:16.730584Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-21T11:51:11.732320Z", "last_refresh": "2024-09-21T11:59:28.385254Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:20.566885Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-21T11:51:09.635797Z", "last_refresh": "2024-09-21T11:59:28.385435Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-21T11:51:15.871655Z", "last_refresh": "2024-09-21T11:59:28.627262Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:59:22.546325Z 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", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.78/16"}, "status": {"created": "2024-09-21T11:58:28.687850Z", "last_refresh": "2024-09-21T11:59:28.386552Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.78/16"}}, {"events": ["2024-09-21T11:53:25.472130Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-21T11:51:07.537651Z", "last_refresh": "2024-09-21T11:59:28.385760Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:31.637956Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi078:172.21.15.78=smithi078", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-21T11:52:48.564079Z", "last_refresh": "2024-09-21T11:59:28.385911Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T11:59:29.720706Z 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-09-21T11:58:28.681765Z", "last_refresh": "2024-09-21T11:59:28.627957Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:53:21.861547Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-21T11:51:17.852455Z", "last_refresh": "2024-09-21T11:59:28.385602Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:53.601424Z 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-09-21T11:53:53.589983Z", "last_refresh": "2024-09-21T11:59:28.386063Z", "running": 8, "size": 8}}, {"events": ["2024-09-21T11:53:31.647318Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-21T11:51:13.869924Z", "ports": [9095], "running": 0, "size": 1}}, {"events": ["2024-09-21T11:58:39.874483Z 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-09-21T11:58:39.862394Z", "last_refresh": "2024-09-21T11:59:28.386457Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-21T11:59:38.176 INFO:tasks.cephadm:nfs.foo has 1/1 2024-09-21T11:59:38.176 INFO:teuthology.run_tasks:Running task cephadm.wait_for_service... 2024-09-21T11:59:38.193 INFO:tasks.cephadm:Waiting for ceph service ingress.nfs.foo to start (timeout 300)... 2024-09-21T11:59:38.193 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- ceph orch ls -f json 2024-09-21T11:59:39.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:38 smithi195 bash[25267]: audit 2024-09-21T11:59:37.435751+0000 mgr.smithi078.aqnwdz (mgr.14203) 298 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:39.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:38 smithi195 bash[25267]: audit 2024-09-21T11:59:37.435751+0000 mgr.smithi078.aqnwdz (mgr.14203) 298 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:39.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:38 smithi195 bash[25267]: cluster 2024-09-21T11:59:37.504650+0000 mgr.smithi078.aqnwdz (mgr.14203) 299 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:39.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:38 smithi195 bash[25267]: cluster 2024-09-21T11:59:37.504650+0000 mgr.smithi078.aqnwdz (mgr.14203) 299 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:39.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:38 smithi078 bash[20010]: audit 2024-09-21T11:59:37.435751+0000 mgr.smithi078.aqnwdz (mgr.14203) 298 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:39.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:38 smithi078 bash[20010]: audit 2024-09-21T11:59:37.435751+0000 mgr.smithi078.aqnwdz (mgr.14203) 298 : audit [DBG] from='client.14656 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:39.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:38 smithi078 bash[20010]: cluster 2024-09-21T11:59:37.504650+0000 mgr.smithi078.aqnwdz (mgr.14203) 299 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:39.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:38 smithi078 bash[20010]: cluster 2024-09-21T11:59:37.504650+0000 mgr.smithi078.aqnwdz (mgr.14203) 299 : cluster [DBG] pgmap v244: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:41.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:40 smithi195 bash[25267]: cluster 2024-09-21T11:59:39.506009+0000 mgr.smithi078.aqnwdz (mgr.14203) 300 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:41.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:40 smithi195 bash[25267]: cluster 2024-09-21T11:59:39.506009+0000 mgr.smithi078.aqnwdz (mgr.14203) 300 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:41.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:40 smithi078 bash[20010]: cluster 2024-09-21T11:59:39.506009+0000 mgr.smithi078.aqnwdz (mgr.14203) 300 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:41.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:40 smithi078 bash[20010]: cluster 2024-09-21T11:59:39.506009+0000 mgr.smithi078.aqnwdz (mgr.14203) 300 : cluster [DBG] pgmap v245: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.3 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.006917+0000 mon.smithi078 (mon.0) 897 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.006917+0000 mon.smithi078 (mon.0) 897 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.014329+0000 mon.smithi078 (mon.0) 898 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.014329+0000 mon.smithi078 (mon.0) 898 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.786153+0000 mon.smithi078 (mon.0) 899 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.786153+0000 mon.smithi078 (mon.0) 899 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.792852+0000 mon.smithi078 (mon.0) 900 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.792852+0000 mon.smithi078 (mon.0) 900 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.793831+0000 mon.smithi078 (mon.0) 901 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.793831+0000 mon.smithi078 (mon.0) 901 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.794532+0000 mon.smithi078 (mon.0) 902 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:59:42.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:42 smithi195 bash[25267]: audit 2024-09-21T11:59:41.794532+0000 mon.smithi078 (mon.0) 902 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.006917+0000 mon.smithi078 (mon.0) 897 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.006917+0000 mon.smithi078 (mon.0) 897 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.014329+0000 mon.smithi078 (mon.0) 898 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.014329+0000 mon.smithi078 (mon.0) 898 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.786153+0000 mon.smithi078 (mon.0) 899 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.786153+0000 mon.smithi078 (mon.0) 899 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.792852+0000 mon.smithi078 (mon.0) 900 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.792852+0000 mon.smithi078 (mon.0) 900 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.793831+0000 mon.smithi078 (mon.0) 901 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.793831+0000 mon.smithi078 (mon.0) 901 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.794532+0000 mon.smithi078 (mon.0) 902 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:59:42.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:42 smithi078 bash[20010]: audit 2024-09-21T11:59:41.794532+0000 mon.smithi078 (mon.0) 902 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T11:59:42.770 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: cluster 2024-09-21T11:59:41.506638+0000 mgr.smithi078.aqnwdz (mgr.14203) 301 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: cluster 2024-09-21T11:59:41.506638+0000 mgr.smithi078.aqnwdz (mgr.14203) 301 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: cephadm 2024-09-21T11:59:41.820126+0000 mgr.smithi078.aqnwdz (mgr.14203) 302 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: cephadm 2024-09-21T11:59:41.820126+0000 mgr.smithi078.aqnwdz (mgr.14203) 302 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: audit 2024-09-21T11:59:42.087341+0000 mon.smithi078 (mon.0) 903 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: audit 2024-09-21T11:59:42.087341+0000 mon.smithi078 (mon.0) 903 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: audit 2024-09-21T11:59:42.090651+0000 mon.smithi078 (mon.0) 904 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: audit 2024-09-21T11:59:42.090651+0000 mon.smithi078 (mon.0) 904 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: audit 2024-09-21T11:59:42.100928+0000 mon.smithi078 (mon.0) 905 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:43.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:43 smithi195 bash[25267]: audit 2024-09-21T11:59:42.100928+0000 mon.smithi078 (mon.0) 905 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:43.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: cluster 2024-09-21T11:59:41.506638+0000 mgr.smithi078.aqnwdz (mgr.14203) 301 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:43.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: cluster 2024-09-21T11:59:41.506638+0000 mgr.smithi078.aqnwdz (mgr.14203) 301 : cluster [DBG] pgmap v246: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.2 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:43.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: cephadm 2024-09-21T11:59:41.820126+0000 mgr.smithi078.aqnwdz (mgr.14203) 302 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T11:59:43.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: cephadm 2024-09-21T11:59:41.820126+0000 mgr.smithi078.aqnwdz (mgr.14203) 302 : cephadm [INF] Checking dashboard <-> RGW credentials 2024-09-21T11:59:43.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: audit 2024-09-21T11:59:42.087341+0000 mon.smithi078 (mon.0) 903 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:43.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: audit 2024-09-21T11:59:42.087341+0000 mon.smithi078 (mon.0) 903 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:43.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: audit 2024-09-21T11:59:42.090651+0000 mon.smithi078 (mon.0) 904 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:59:43.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: audit 2024-09-21T11:59:42.090651+0000 mon.smithi078 (mon.0) 904 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T11:59:43.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: audit 2024-09-21T11:59:42.100928+0000 mon.smithi078 (mon.0) 905 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:43.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:43 smithi078 bash[20010]: audit 2024-09-21T11:59:42.100928+0000 mon.smithi078 (mon.0) 905 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T11:59:44.330 INFO:teuthology.orchestra.run.smithi078.stdout: 2024-09-21T11:59:44.330 INFO:teuthology.orchestra.run.smithi078.stdout:[{"placement": {"count": 1}, "service_name": "alertmanager", "service_type": "alertmanager", "status": {"created": "2024-09-21T11:51:20.009293Z", "last_refresh": "2024-09-21T11:59:41.779947Z", "ports": [9093, 9094], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:53:16.730584Z service:ceph-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "ceph-exporter", "service_type": "ceph-exporter", "spec": {"prio_limit": 5, "stats_period": 5}, "status": {"created": "2024-09-21T11:51:11.732320Z", "last_refresh": "2024-09-21T11:59:40.997283Z", "ports": [9926], "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:20.566885Z service:crash [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "crash", "service_type": "crash", "status": {"created": "2024-09-21T11:51:09.635797Z", "last_refresh": "2024-09-21T11:59:40.997486Z", "running": 2, "size": 2}}, {"placement": {"count": 1}, "service_name": "grafana", "service_type": "grafana", "spec": {"anonymous_access": true, "protocol": "https"}, "status": {"created": "2024-09-21T11:51:15.871655Z", "last_refresh": "2024-09-21T11:59:41.780038Z", "ports": [3000], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:59:22.546325Z 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", "first_virtual_router_id": 50, "frontend_port": 2049, "monitor_port": 9049, "virtual_ip": "10.0.31.78/16"}, "status": {"created": "2024-09-21T11:58:28.687850Z", "last_refresh": "2024-09-21T11:59:40.999042Z", "ports": [2049, 9049], "running": 4, "size": 4, "virtual_ip": "10.0.31.78/16"}}, {"events": ["2024-09-21T11:53:25.472130Z service:mgr [INFO] \"service was created\""], "placement": {"count": 2}, "service_name": "mgr", "service_type": "mgr", "status": {"created": "2024-09-21T11:51:07.537651Z", "last_refresh": "2024-09-21T11:59:40.997840Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:31.637956Z service:mon [INFO] \"service was created\""], "placement": {"count": 2, "hosts": ["smithi078:172.21.15.78=smithi078", "smithi195:172.21.15.195=smithi195"]}, "service_name": "mon", "service_type": "mon", "status": {"created": "2024-09-21T11:52:48.564079Z", "last_refresh": "2024-09-21T11:59:40.998009Z", "running": 2, "size": 2}}, {"events": ["2024-09-21T11:59:42.101104Z 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-09-21T11:58:28.681765Z", "last_refresh": "2024-09-21T11:59:41.780677Z", "ports": [12049], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:53:21.861547Z service:node-exporter [INFO] \"service was created\""], "placement": {"host_pattern": "*"}, "service_name": "node-exporter", "service_type": "node-exporter", "status": {"created": "2024-09-21T11:51:17.852455Z", "last_refresh": "2024-09-21T11:59:40.997668Z", "ports": [9100], "running": 2, "size": 2}}, {"events": ["2024-09-21T11:53:53.601424Z 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-09-21T11:53:53.589983Z", "last_refresh": "2024-09-21T11:59:40.998181Z", "running": 8, "size": 8}}, {"events": ["2024-09-21T11:53:31.647318Z service:prometheus [INFO] \"service was created\""], "placement": {"count": 1}, "service_name": "prometheus", "service_type": "prometheus", "status": {"created": "2024-09-21T11:51:13.869924Z", "last_refresh": "2024-09-21T11:59:41.780132Z", "ports": [9095], "running": 1, "size": 1}}, {"events": ["2024-09-21T11:58:39.874483Z 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-09-21T11:58:39.862394Z", "last_refresh": "2024-09-21T11:59:40.998873Z", "ports": [8800], "running": 2, "size": 2}}] 2024-09-21T11:59:45.075 INFO:tasks.cephadm:ingress.nfs.foo has 4/4 2024-09-21T11:59:45.075 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-21T11:59:45.085 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:59:45.086 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mkdir /mnt/foo' 2024-09-21T11:59:45.099 INFO:teuthology.orchestra.run.smithi078.stderr:+ mkdir /mnt/foo 2024-09-21T11:59:45.106 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'sleep 5' 2024-09-21T11:59:45.166 INFO:teuthology.orchestra.run.smithi078.stderr:+ sleep 5 2024-09-21T11:59:45.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:45 smithi195 bash[25267]: cluster 2024-09-21T11:59:43.508375+0000 mgr.smithi078.aqnwdz (mgr.14203) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:45.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:45 smithi195 bash[25267]: cluster 2024-09-21T11:59:43.508375+0000 mgr.smithi078.aqnwdz (mgr.14203) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:45.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:45 smithi078 bash[20010]: cluster 2024-09-21T11:59:43.508375+0000 mgr.smithi078.aqnwdz (mgr.14203) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:45.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:45 smithi078 bash[20010]: cluster 2024-09-21T11:59:43.508375+0000 mgr.smithi078.aqnwdz (mgr.14203) 303 : cluster [DBG] pgmap v247: 225 pgs: 225 active+clean; 584 KiB data, 247 MiB used, 715 GiB / 715 GiB avail; 2.7 KiB/s rd, 170 B/s wr, 2 op/s 2024-09-21T11:59:46.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:46 smithi078 bash[20010]: audit 2024-09-21T11:59:44.311364+0000 mgr.smithi078.aqnwdz (mgr.14203) 304 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:46.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:46 smithi078 bash[20010]: audit 2024-09-21T11:59:44.311364+0000 mgr.smithi078.aqnwdz (mgr.14203) 304 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:46.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:46 smithi195 bash[25267]: audit 2024-09-21T11:59:44.311364+0000 mgr.smithi078.aqnwdz (mgr.14203) 304 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:46.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:46 smithi195 bash[25267]: audit 2024-09-21T11:59:44.311364+0000 mgr.smithi078.aqnwdz (mgr.14203) 304 : audit [DBG] from='client.14684 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""], "format": "json"}]: dispatch 2024-09-21T11:59:47.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:47 smithi195 bash[25267]: cluster 2024-09-21T11:59:45.510092+0000 mgr.smithi078.aqnwdz (mgr.14203) 305 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T11:59:47.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:47 smithi195 bash[25267]: cluster 2024-09-21T11:59:45.510092+0000 mgr.smithi078.aqnwdz (mgr.14203) 305 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T11:59:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:47 smithi195 bash[25267]: audit 2024-09-21T11:59:46.734201+0000 mon.smithi078 (mon.0) 906 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:47 smithi195 bash[25267]: audit 2024-09-21T11:59:46.734201+0000 mon.smithi078 (mon.0) 906 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:47 smithi078 bash[20010]: cluster 2024-09-21T11:59:45.510092+0000 mgr.smithi078.aqnwdz (mgr.14203) 305 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T11:59:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:47 smithi078 bash[20010]: cluster 2024-09-21T11:59:45.510092+0000 mgr.smithi078.aqnwdz (mgr.14203) 305 : cluster [DBG] pgmap v248: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.7 KiB/s rd, 85 B/s wr, 1 op/s 2024-09-21T11:59:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:47 smithi078 bash[20010]: audit 2024-09-21T11:59:46.734201+0000 mon.smithi078 (mon.0) 906 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:47 smithi078 bash[20010]: audit 2024-09-21T11:59:46.734201+0000 mon.smithi078 (mon.0) 906 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T11:59:49.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:49 smithi195 bash[25267]: cluster 2024-09-21T11:59:47.511379+0000 mgr.smithi078.aqnwdz (mgr.14203) 306 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T11:59:49.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:49 smithi195 bash[25267]: cluster 2024-09-21T11:59:47.511379+0000 mgr.smithi078.aqnwdz (mgr.14203) 306 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T11:59:49.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:49 smithi078 bash[20010]: cluster 2024-09-21T11:59:47.511379+0000 mgr.smithi078.aqnwdz (mgr.14203) 306 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T11:59:49.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:49 smithi078 bash[20010]: cluster 2024-09-21T11:59:47.511379+0000 mgr.smithi078.aqnwdz (mgr.14203) 306 : cluster [DBG] pgmap v249: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T11:59:50.169 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'mount -t nfs 10.0.31.78:/foobucket /mnt/foo' 2024-09-21T11:59:50.221 INFO:teuthology.orchestra.run.smithi078.stderr:+ mount -t nfs 10.0.31.78:/foobucket /mnt/foo 2024-09-21T11:59:50.512 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'find /mnt/foo -ls' 2024-09-21T11:59:50.568 INFO:teuthology.orchestra.run.smithi078.stderr:+ find /mnt/foo -ls 2024-09-21T11:59:50.577 INFO:teuthology.orchestra.run.smithi078.stdout:18304478605914051910 0 drwxrwxrwx 1 root root 0 Sep 21 11:59 /mnt/foo 2024-09-21T11:59:50.577 INFO:teuthology.orchestra.run.smithi078.stdout:10810806159419214356 0 -rw-rw-rw- 1 root root 7 Sep 21 11:59 /mnt/foo/myobject 2024-09-21T11:59:50.578 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'grep thebody /mnt/foo/myobject' 2024-09-21T11:59:50.633 INFO:teuthology.orchestra.run.smithi078.stderr:+ grep thebody /mnt/foo/myobject 2024-09-21T11:59:50.639 INFO:teuthology.orchestra.run.smithi078.stdout:thebody 2024-09-21T11:59:50.640 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'echo test > /mnt/foo/newobject' 2024-09-21T11:59:50.693 INFO:teuthology.orchestra.run.smithi078.stderr:+ echo test 2024-09-21T11:59:50.721 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c sync 2024-09-21T11:59:50.778 INFO:teuthology.orchestra.run.smithi078.stderr:+ sync 2024-09-21T11:59:51.143 INFO:teuthology.run_tasks:Running task python... 2024-09-21T11:59:51.155 INFO:tasks.python:Running python on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:59:51.155 INFO:tasks.python:import boto3 import json from io import BytesIO 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') data = BytesIO() bucket.download_fileobj(Fileobj=data, Key='newobject') print(data.getvalue()) assert data.getvalue().decode() == 'test\n' 2024-09-21T11:59:51.156 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest python3 2024-09-21T11:59:51.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:51 smithi195 bash[25267]: cluster 2024-09-21T11:59:49.512831+0000 mgr.smithi078.aqnwdz (mgr.14203) 307 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2024-09-21T11:59:51.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:51 smithi195 bash[25267]: cluster 2024-09-21T11:59:49.512831+0000 mgr.smithi078.aqnwdz (mgr.14203) 307 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2024-09-21T11:59:51.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:51 smithi078 bash[20010]: cluster 2024-09-21T11:59:49.512831+0000 mgr.smithi078.aqnwdz (mgr.14203) 307 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2024-09-21T11:59:51.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:51 smithi078 bash[20010]: cluster 2024-09-21T11:59:49.512831+0000 mgr.smithi078.aqnwdz (mgr.14203) 307 : cluster [DBG] pgmap v250: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.5 KiB/s rd, 1 op/s 2024-09-21T11:59:51.474 INFO:teuthology.orchestra.run.smithi078.stdout:b'test\n' 2024-09-21T11:59:51.526 INFO:teuthology.run_tasks:Running task vip.exec... 2024-09-21T11:59:51.536 INFO:tasks.vip:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:59:51.536 DEBUG:teuthology.orchestra.run.smithi078:> sudo TESTDIR=/home/ubuntu/cephtest bash -ex -c 'umount /mnt/foo' 2024-09-21T11:59:51.547 INFO:teuthology.orchestra.run.smithi078.stderr:+ umount /mnt/foo 2024-09-21T11:59:51.596 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T11:59:51.606 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T11:59:51.606 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph nfs export rm foo /foobucket' 2024-09-21T11:59:53.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:53 smithi195 bash[25267]: cluster 2024-09-21T11:59:51.513889+0000 mgr.smithi078.aqnwdz (mgr.14203) 308 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T11:59:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:53 smithi195 bash[25267]: cluster 2024-09-21T11:59:51.513889+0000 mgr.smithi078.aqnwdz (mgr.14203) 308 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T11:59:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:53 smithi078 bash[20010]: cluster 2024-09-21T11:59:51.513889+0000 mgr.smithi078.aqnwdz (mgr.14203) 308 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T11:59:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:53 smithi078 bash[20010]: cluster 2024-09-21T11:59:51.513889+0000 mgr.smithi078.aqnwdz (mgr.14203) 308 : cluster [DBG] pgmap v251: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 1.4 KiB/s rd, 1 op/s 2024-09-21T11:59:55.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:55 smithi078 bash[20010]: cluster 2024-09-21T11:59:53.515387+0000 mgr.smithi078.aqnwdz (mgr.14203) 309 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 426 B/s wr, 4 op/s 2024-09-21T11:59:55.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:55 smithi078 bash[20010]: cluster 2024-09-21T11:59:53.515387+0000 mgr.smithi078.aqnwdz (mgr.14203) 309 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 426 B/s wr, 4 op/s 2024-09-21T11:59:55.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:55 smithi195 bash[25267]: cluster 2024-09-21T11:59:53.515387+0000 mgr.smithi078.aqnwdz (mgr.14203) 309 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 426 B/s wr, 4 op/s 2024-09-21T11:59:55.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:55 smithi195 bash[25267]: cluster 2024-09-21T11:59:53.515387+0000 mgr.smithi078.aqnwdz (mgr.14203) 309 : cluster [DBG] pgmap v252: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 3.7 KiB/s rd, 426 B/s wr, 4 op/s 2024-09-21T11:59:56.484 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T11:59:57.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:57 smithi078 bash[20010]: cluster 2024-09-21T11:59:55.517033+0000 mgr.smithi078.aqnwdz (mgr.14203) 310 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.6 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T11:59:57.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:57 smithi078 bash[20010]: cluster 2024-09-21T11:59:55.517033+0000 mgr.smithi078.aqnwdz (mgr.14203) 310 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.6 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T11:59:57.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:57 smithi195 bash[25267]: cluster 2024-09-21T11:59:55.517033+0000 mgr.smithi078.aqnwdz (mgr.14203) 310 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.6 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T11:59:57.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:57 smithi195 bash[25267]: cluster 2024-09-21T11:59:55.517033+0000 mgr.smithi078.aqnwdz (mgr.14203) 310 : cluster [DBG] pgmap v253: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.6 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T11:59:58.694 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph nfs cluster rm foo' 2024-09-21T11:59:59.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:59 smithi078 bash[20010]: cluster 2024-09-21T11:59:57.518261+0000 mgr.smithi078.aqnwdz (mgr.14203) 311 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.0 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T11:59:59.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:59 smithi078 bash[20010]: cluster 2024-09-21T11:59:57.518261+0000 mgr.smithi078.aqnwdz (mgr.14203) 311 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.0 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T11:59:59.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:59 smithi078 bash[20010]: audit 2024-09-21T11:59:57.945962+0000 mgr.smithi078.aqnwdz (mgr.14203) 312 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:59:59.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 11:59:59 smithi078 bash[20010]: audit 2024-09-21T11:59:57.945962+0000 mgr.smithi078.aqnwdz (mgr.14203) 312 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:59:59.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:59 smithi195 bash[25267]: cluster 2024-09-21T11:59:57.518261+0000 mgr.smithi078.aqnwdz (mgr.14203) 311 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.0 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T11:59:59.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:59 smithi195 bash[25267]: cluster 2024-09-21T11:59:57.518261+0000 mgr.smithi078.aqnwdz (mgr.14203) 311 : cluster [DBG] pgmap v254: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.0 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T11:59:59.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:59 smithi195 bash[25267]: audit 2024-09-21T11:59:57.945962+0000 mgr.smithi078.aqnwdz (mgr.14203) 312 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T11:59:59.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 11:59:59 smithi195 bash[25267]: audit 2024-09-21T11:59:57.945962+0000 mgr.smithi078.aqnwdz (mgr.14203) 312 : audit [DBG] from='client.14688 -' entity='client.admin' cmd=[{"prefix": "nfs export rm", "cluster_id": "foo", "pseudo_path": "/foobucket", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:00.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:00 smithi078 bash[20010]: cluster 2024-09-21T12:00:00.000140+0000 mon.smithi078 (mon.0) 907 : cluster [INF] overall HEALTH_OK 2024-09-21T12:00:00.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:00 smithi078 bash[20010]: cluster 2024-09-21T12:00:00.000140+0000 mon.smithi078 (mon.0) 907 : cluster [INF] overall HEALTH_OK 2024-09-21T12:00:00.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:00 smithi195 bash[25267]: cluster 2024-09-21T12:00:00.000140+0000 mon.smithi078 (mon.0) 907 : cluster [INF] overall HEALTH_OK 2024-09-21T12:00:00.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:00 smithi195 bash[25267]: cluster 2024-09-21T12:00:00.000140+0000 mon.smithi078 (mon.0) 907 : cluster [INF] overall HEALTH_OK 2024-09-21T12:00:01.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:01 smithi078 bash[20010]: cluster 2024-09-21T11:59:59.519813+0000 mgr.smithi078.aqnwdz (mgr.14203) 313 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T12:00:01.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:01 smithi078 bash[20010]: cluster 2024-09-21T11:59:59.519813+0000 mgr.smithi078.aqnwdz (mgr.14203) 313 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T12:00:01.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:01 smithi195 bash[25267]: cluster 2024-09-21T11:59:59.519813+0000 mgr.smithi078.aqnwdz (mgr.14203) 313 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T12:00:01.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:01 smithi195 bash[25267]: cluster 2024-09-21T11:59:59.519813+0000 mgr.smithi078.aqnwdz (mgr.14203) 313 : cluster [DBG] pgmap v255: 225 pgs: 225 active+clean; 584 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.1 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T12:00:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:02 smithi078 bash[20010]: audit 2024-09-21T12:00:01.475730+0000 mon.smithi078 (mon.0) 908 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.19", "id": [4, 6]} : dispatch 2024-09-21T12:00:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:02 smithi078 bash[20010]: audit 2024-09-21T12:00:01.475730+0000 mon.smithi078 (mon.0) 908 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.19", "id": [4, 6]} : dispatch 2024-09-21T12:00:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:02 smithi078 bash[20010]: audit 2024-09-21T12:00:01.475983+0000 mon.smithi078 (mon.0) 909 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]} : dispatch 2024-09-21T12:00:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:02 smithi078 bash[20010]: audit 2024-09-21T12:00:01.475983+0000 mon.smithi078 (mon.0) 909 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]} : dispatch 2024-09-21T12:00:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:02 smithi078 bash[20010]: audit 2024-09-21T12:00:01.734447+0000 mon.smithi078 (mon.0) 910 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:02.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:02 smithi078 bash[20010]: audit 2024-09-21T12:00:01.734447+0000 mon.smithi078 (mon.0) 910 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:02.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:02 smithi195 bash[25267]: audit 2024-09-21T12:00:01.475730+0000 mon.smithi078 (mon.0) 908 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.19", "id": [4, 6]} : dispatch 2024-09-21T12:00:02.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:02 smithi195 bash[25267]: audit 2024-09-21T12:00:01.475730+0000 mon.smithi078 (mon.0) 908 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.19", "id": [4, 6]} : dispatch 2024-09-21T12:00:02.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:02 smithi195 bash[25267]: audit 2024-09-21T12:00:01.475983+0000 mon.smithi078 (mon.0) 909 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]} : dispatch 2024-09-21T12:00:02.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:02 smithi195 bash[25267]: audit 2024-09-21T12:00:01.475983+0000 mon.smithi078 (mon.0) 909 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]} : dispatch 2024-09-21T12:00:02.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:02 smithi195 bash[25267]: audit 2024-09-21T12:00:01.734447+0000 mon.smithi078 (mon.0) 910 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:02.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:02 smithi195 bash[25267]: audit 2024-09-21T12:00:01.734447+0000 mon.smithi078 (mon.0) 910 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:03.546 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T12:00:03.590 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:03 smithi195 bash[25267]: cluster 2024-09-21T12:00:01.520675+0000 mgr.smithi078.aqnwdz (mgr.14203) 314 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.0 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T12:00:03.590 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:03 smithi195 bash[25267]: cluster 2024-09-21T12:00:01.520675+0000 mgr.smithi078.aqnwdz (mgr.14203) 314 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.0 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T12:00:03.590 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:03 smithi195 bash[25267]: audit 2024-09-21T12:00:02.152469+0000 mon.smithi078 (mon.0) 911 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.19", "id": [4, 6]}]': finished 2024-09-21T12:00:03.590 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:03 smithi195 bash[25267]: audit 2024-09-21T12:00:02.152469+0000 mon.smithi078 (mon.0) 911 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.19", "id": [4, 6]}]': finished 2024-09-21T12:00:03.590 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:03 smithi195 bash[25267]: audit 2024-09-21T12:00:02.152594+0000 mon.smithi078 (mon.0) 912 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]}]': finished 2024-09-21T12:00:03.590 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:03 smithi195 bash[25267]: audit 2024-09-21T12:00:02.152594+0000 mon.smithi078 (mon.0) 912 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]}]': finished 2024-09-21T12:00:03.590 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:03 smithi195 bash[25267]: cluster 2024-09-21T12:00:02.159006+0000 mon.smithi078 (mon.0) 913 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-21T12:00:03.590 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:03 smithi195 bash[25267]: cluster 2024-09-21T12:00:02.159006+0000 mon.smithi078 (mon.0) 913 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-21T12:00:03.643 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:03 smithi078 bash[20010]: cluster 2024-09-21T12:00:01.520675+0000 mgr.smithi078.aqnwdz (mgr.14203) 314 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.0 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T12:00:03.643 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:03 smithi078 bash[20010]: cluster 2024-09-21T12:00:01.520675+0000 mgr.smithi078.aqnwdz (mgr.14203) 314 : cluster [DBG] pgmap v256: 225 pgs: 225 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 8.0 KiB/s rd, 511 B/s wr, 11 op/s 2024-09-21T12:00:03.643 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:03 smithi078 bash[20010]: audit 2024-09-21T12:00:02.152469+0000 mon.smithi078 (mon.0) 911 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.19", "id": [4, 6]}]': finished 2024-09-21T12:00:03.643 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:03 smithi078 bash[20010]: audit 2024-09-21T12:00:02.152469+0000 mon.smithi078 (mon.0) 911 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "5.19", "id": [4, 6]}]': finished 2024-09-21T12:00:03.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:03 smithi078 bash[20010]: audit 2024-09-21T12:00:02.152594+0000 mon.smithi078 (mon.0) 912 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]}]': finished 2024-09-21T12:00:03.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:03 smithi078 bash[20010]: audit 2024-09-21T12:00:02.152594+0000 mon.smithi078 (mon.0) 912 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "osd pg-upmap-items", "format": "json", "pgid": "8.8", "id": [5, 3]}]': finished 2024-09-21T12:00:03.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:03 smithi078 bash[20010]: cluster 2024-09-21T12:00:02.159006+0000 mon.smithi078 (mon.0) 913 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-21T12:00:03.644 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:03 smithi078 bash[20010]: cluster 2024-09-21T12:00:02.159006+0000 mon.smithi078 (mon.0) 913 : cluster [DBG] osdmap e59: 8 total, 8 up, 8 in 2024-09-21T12:00:04.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:04 smithi195 bash[25267]: cluster 2024-09-21T12:00:03.161916+0000 mon.smithi078 (mon.0) 914 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-21T12:00:04.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:04 smithi195 bash[25267]: cluster 2024-09-21T12:00:03.161916+0000 mon.smithi078 (mon.0) 914 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-21T12:00:04.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:04 smithi078 bash[20010]: cluster 2024-09-21T12:00:03.161916+0000 mon.smithi078 (mon.0) 914 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-21T12:00:04.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:04 smithi078 bash[20010]: cluster 2024-09-21T12:00:03.161916+0000 mon.smithi078 (mon.0) 914 : cluster [DBG] osdmap e60: 8 total, 8 up, 8 in 2024-09-21T12:00:05.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:05 smithi195 bash[25267]: cluster 2024-09-21T12:00:03.521520+0000 mgr.smithi078.aqnwdz (mgr.14203) 315 : cluster [DBG] pgmap v259: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:05.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:05 smithi195 bash[25267]: cluster 2024-09-21T12:00:03.521520+0000 mgr.smithi078.aqnwdz (mgr.14203) 315 : cluster [DBG] pgmap v259: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:05.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:05 smithi195 bash[25267]: audit 2024-09-21T12:00:05.174745+0000 mon.smithi078 (mon.0) 915 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:05.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:05 smithi195 bash[25267]: audit 2024-09-21T12:00:05.174745+0000 mon.smithi078 (mon.0) 915 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:05.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:05 smithi078 bash[20010]: cluster 2024-09-21T12:00:03.521520+0000 mgr.smithi078.aqnwdz (mgr.14203) 315 : cluster [DBG] pgmap v259: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:05.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:05 smithi078 bash[20010]: cluster 2024-09-21T12:00:03.521520+0000 mgr.smithi078.aqnwdz (mgr.14203) 315 : cluster [DBG] pgmap v259: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 251 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:05.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:05 smithi078 bash[20010]: audit 2024-09-21T12:00:05.174745+0000 mon.smithi078 (mon.0) 915 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:05.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:05 smithi078 bash[20010]: audit 2024-09-21T12:00:05.174745+0000 mon.smithi078 (mon.0) 915 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:05.923 INFO:teuthology.run_tasks:Running task cephadm.shell... 2024-09-21T12:00:05.940 INFO:tasks.cephadm:Running commands on role host.a host ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T12:00:05.940 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'stat -c '"'"'%u %g'"'"' /var/log/ceph | grep '"'"'167 167'"'"'' 2024-09-21T12:00:06.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: audit 2024-09-21T12:00:05.162172+0000 mgr.smithi078.aqnwdz (mgr.14203) 316 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: audit 2024-09-21T12:00:05.162172+0000 mgr.smithi078.aqnwdz (mgr.14203) 316 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: cephadm 2024-09-21T12:00:05.168299+0000 mgr.smithi078.aqnwdz (mgr.14203) 317 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-21T12:00:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: cephadm 2024-09-21T12:00:05.168299+0000 mgr.smithi078.aqnwdz (mgr.14203) 317 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-21T12:00:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: cephadm 2024-09-21T12:00:05.175867+0000 mgr.smithi078.aqnwdz (mgr.14203) 318 : cephadm [INF] Remove service nfs.foo 2024-09-21T12:00:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: cephadm 2024-09-21T12:00:05.175867+0000 mgr.smithi078.aqnwdz (mgr.14203) 318 : cephadm [INF] Remove service nfs.foo 2024-09-21T12:00:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: audit 2024-09-21T12:00:05.177217+0000 mon.smithi078 (mon.0) 916 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: audit 2024-09-21T12:00:05.177217+0000 mon.smithi078 (mon.0) 916 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: audit 2024-09-21T12:00:05.192721+0000 mon.smithi078 (mon.0) 917 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:06.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:06 smithi195 bash[25267]: audit 2024-09-21T12:00:05.192721+0000 mon.smithi078 (mon.0) 917 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: audit 2024-09-21T12:00:05.162172+0000 mgr.smithi078.aqnwdz (mgr.14203) 316 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: audit 2024-09-21T12:00:05.162172+0000 mgr.smithi078.aqnwdz (mgr.14203) 316 : audit [DBG] from='client.14692 -' entity='client.admin' cmd=[{"prefix": "nfs cluster rm", "cluster_id": "foo", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: cephadm 2024-09-21T12:00:05.168299+0000 mgr.smithi078.aqnwdz (mgr.14203) 317 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: cephadm 2024-09-21T12:00:05.168299+0000 mgr.smithi078.aqnwdz (mgr.14203) 317 : cephadm [INF] Remove service ingress.nfs.foo 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: cephadm 2024-09-21T12:00:05.175867+0000 mgr.smithi078.aqnwdz (mgr.14203) 318 : cephadm [INF] Remove service nfs.foo 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: cephadm 2024-09-21T12:00:05.175867+0000 mgr.smithi078.aqnwdz (mgr.14203) 318 : cephadm [INF] Remove service nfs.foo 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: audit 2024-09-21T12:00:05.177217+0000 mon.smithi078 (mon.0) 916 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: audit 2024-09-21T12:00:05.177217+0000 mon.smithi078 (mon.0) 916 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: audit 2024-09-21T12:00:05.192721+0000 mon.smithi078 (mon.0) 917 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:06.650 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:06 smithi078 bash[20010]: audit 2024-09-21T12:00:05.192721+0000 mon.smithi078 (mon.0) 917 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:07.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:07 smithi195 bash[25267]: cluster 2024-09-21T12:00:05.522603+0000 mgr.smithi078.aqnwdz (mgr.14203) 319 : cluster [DBG] pgmap v260: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:07.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:07 smithi195 bash[25267]: cluster 2024-09-21T12:00:05.522603+0000 mgr.smithi078.aqnwdz (mgr.14203) 319 : cluster [DBG] pgmap v260: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:07.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:07 smithi078 bash[20010]: cluster 2024-09-21T12:00:05.522603+0000 mgr.smithi078.aqnwdz (mgr.14203) 319 : cluster [DBG] pgmap v260: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:07.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:07 smithi078 bash[20010]: cluster 2024-09-21T12:00:05.522603+0000 mgr.smithi078.aqnwdz (mgr.14203) 319 : cluster [DBG] pgmap v260: 225 pgs: 1 peering, 224 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 255 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:09.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:09 smithi078 bash[20010]: cluster 2024-09-21T12:00:07.523751+0000 mgr.smithi078.aqnwdz (mgr.14203) 320 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:09.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:09 smithi078 bash[20010]: cluster 2024-09-21T12:00:07.523751+0000 mgr.smithi078.aqnwdz (mgr.14203) 320 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:09.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:09 smithi195 bash[25267]: cluster 2024-09-21T12:00:07.523751+0000 mgr.smithi078.aqnwdz (mgr.14203) 320 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:09.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:09 smithi195 bash[25267]: cluster 2024-09-21T12:00:07.523751+0000 mgr.smithi078.aqnwdz (mgr.14203) 320 : cluster [DBG] pgmap v261: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:10.300 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T12:00:11.471 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:11 smithi078 bash[20010]: cluster 2024-09-21T12:00:09.525190+0000 mgr.smithi078.aqnwdz (mgr.14203) 321 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:11.471 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:11 smithi078 bash[20010]: cluster 2024-09-21T12:00:09.525190+0000 mgr.smithi078.aqnwdz (mgr.14203) 321 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:11.471 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:11 smithi078 bash[20010]: audit 2024-09-21T12:00:10.959110+0000 mon.smithi078 (mon.0) 918 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:11.471 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:11 smithi078 bash[20010]: audit 2024-09-21T12:00:10.959110+0000 mon.smithi078 (mon.0) 918 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:11.471 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:11 smithi078 bash[20010]: audit 2024-09-21T12:00:10.965352+0000 mon.smithi078 (mon.0) 919 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:11.471 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:11 smithi078 bash[20010]: audit 2024-09-21T12:00:10.965352+0000 mon.smithi078 (mon.0) 919 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:11.496 INFO:teuthology.orchestra.run.smithi078.stdout:167 167 2024-09-21T12:00:11.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:11 smithi195 bash[25267]: cluster 2024-09-21T12:00:09.525190+0000 mgr.smithi078.aqnwdz (mgr.14203) 321 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:11.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:11 smithi195 bash[25267]: cluster 2024-09-21T12:00:09.525190+0000 mgr.smithi078.aqnwdz (mgr.14203) 321 : cluster [DBG] pgmap v262: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 127 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:11.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:11 smithi195 bash[25267]: audit 2024-09-21T12:00:10.959110+0000 mon.smithi078 (mon.0) 918 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:11.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:11 smithi195 bash[25267]: audit 2024-09-21T12:00:10.959110+0000 mon.smithi078 (mon.0) 918 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:11.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:11 smithi195 bash[25267]: audit 2024-09-21T12:00:10.965352+0000 mon.smithi078 (mon.0) 919 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:11.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:11 smithi195 bash[25267]: audit 2024-09-21T12:00:10.965352+0000 mon.smithi078 (mon.0) 919 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.284 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch status' 2024-09-21T12:00:12.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.403265+0000 mon.smithi078 (mon.0) 920 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.403265+0000 mon.smithi078 (mon.0) 920 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.409815+0000 mon.smithi078 (mon.0) 921 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.409815+0000 mon.smithi078 (mon.0) 921 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.410883+0000 mon.smithi078 (mon.0) 922 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.410883+0000 mon.smithi078 (mon.0) 922 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.411578+0000 mon.smithi078 (mon.0) 923 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.411578+0000 mon.smithi078 (mon.0) 923 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.416007+0000 mon.smithi078 (mon.0) 924 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.416007+0000 mon.smithi078 (mon.0) 924 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.418498+0000 mon.smithi078 (mon.0) 925 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: audit 2024-09-21T12:00:11.418498+0000 mon.smithi078 (mon.0) 925 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: cephadm 2024-09-21T12:00:11.446666+0000 mgr.smithi078.aqnwdz (mgr.14203) 322 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi078.umrlrv... 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: cephadm 2024-09-21T12:00:11.446666+0000 mgr.smithi078.aqnwdz (mgr.14203) 322 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi078.umrlrv... 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: cephadm 2024-09-21T12:00:11.446836+0000 mgr.smithi078.aqnwdz (mgr.14203) 323 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi078.umrlrv from smithi078 -- ports [12049] 2024-09-21T12:00:12.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: cephadm 2024-09-21T12:00:11.446836+0000 mgr.smithi078.aqnwdz (mgr.14203) 323 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi078.umrlrv from smithi078 -- ports [12049] 2024-09-21T12:00:12.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: cluster 2024-09-21T12:00:11.525916+0000 mgr.smithi078.aqnwdz (mgr.14203) 324 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:12.656 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:12 smithi078 bash[20010]: cluster 2024-09-21T12:00:11.525916+0000 mgr.smithi078.aqnwdz (mgr.14203) 324 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:12.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.403265+0000 mon.smithi078 (mon.0) 920 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.902 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.403265+0000 mon.smithi078 (mon.0) 920 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.902 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.409815+0000 mon.smithi078 (mon.0) 921 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.902 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.409815+0000 mon.smithi078 (mon.0) 921 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.902 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.410883+0000 mon.smithi078 (mon.0) 922 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:12.902 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.410883+0000 mon.smithi078 (mon.0) 922 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:12.902 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.411578+0000 mon.smithi078 (mon.0) 923 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:12.902 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.411578+0000 mon.smithi078 (mon.0) 923 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.416007+0000 mon.smithi078 (mon.0) 924 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.416007+0000 mon.smithi078 (mon.0) 924 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.418498+0000 mon.smithi078 (mon.0) 925 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: audit 2024-09-21T12:00:11.418498+0000 mon.smithi078 (mon.0) 925 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: cephadm 2024-09-21T12:00:11.446666+0000 mgr.smithi078.aqnwdz (mgr.14203) 322 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi078.umrlrv... 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: cephadm 2024-09-21T12:00:11.446666+0000 mgr.smithi078.aqnwdz (mgr.14203) 322 : cephadm [INF] Removing orphan daemon nfs.foo.0.0.smithi078.umrlrv... 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: cephadm 2024-09-21T12:00:11.446836+0000 mgr.smithi078.aqnwdz (mgr.14203) 323 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi078.umrlrv from smithi078 -- ports [12049] 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: cephadm 2024-09-21T12:00:11.446836+0000 mgr.smithi078.aqnwdz (mgr.14203) 323 : cephadm [INF] Removing daemon nfs.foo.0.0.smithi078.umrlrv from smithi078 -- ports [12049] 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: cluster 2024-09-21T12:00:11.525916+0000 mgr.smithi078.aqnwdz (mgr.14203) 324 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:12.903 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:12 smithi195 bash[25267]: cluster 2024-09-21T12:00:11.525916+0000 mgr.smithi078.aqnwdz (mgr.14203) 324 : cluster [DBG] pgmap v263: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 109 B/s rd, 0 B/s wr, 0 op/s 2024-09-21T12:00:14.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:14 smithi195 bash[25267]: cluster 2024-09-21T12:00:13.526946+0000 mgr.smithi078.aqnwdz (mgr.14203) 325 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:14.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:14 smithi195 bash[25267]: cluster 2024-09-21T12:00:13.526946+0000 mgr.smithi078.aqnwdz (mgr.14203) 325 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:14.903 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:14 smithi078 bash[20010]: cluster 2024-09-21T12:00:13.526946+0000 mgr.smithi078.aqnwdz (mgr.14203) 325 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:14.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:14 smithi078 bash[20010]: cluster 2024-09-21T12:00:13.526946+0000 mgr.smithi078.aqnwdz (mgr.14203) 325 : cluster [DBG] pgmap v264: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:16.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:16 smithi195 bash[25267]: cluster 2024-09-21T12:00:15.528672+0000 mgr.smithi078.aqnwdz (mgr.14203) 326 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:16.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:16 smithi195 bash[25267]: cluster 2024-09-21T12:00:15.528672+0000 mgr.smithi078.aqnwdz (mgr.14203) 326 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:16.903 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:16 smithi078 bash[20010]: cluster 2024-09-21T12:00:15.528672+0000 mgr.smithi078.aqnwdz (mgr.14203) 326 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:16.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:16 smithi078 bash[20010]: cluster 2024-09-21T12:00:15.528672+0000 mgr.smithi078.aqnwdz (mgr.14203) 326 : cluster [DBG] pgmap v265: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:17.138 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T12:00:17.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:17 smithi195 bash[25267]: audit 2024-09-21T12:00:16.734895+0000 mon.smithi078 (mon.0) 926 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:17.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:17 smithi195 bash[25267]: audit 2024-09-21T12:00:16.734895+0000 mon.smithi078 (mon.0) 926 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:17.903 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:17 smithi078 bash[20010]: audit 2024-09-21T12:00:16.734895+0000 mon.smithi078 (mon.0) 926 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:17.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:17 smithi078 bash[20010]: audit 2024-09-21T12:00:16.734895+0000 mon.smithi078 (mon.0) 926 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:18.787 INFO:teuthology.orchestra.run.smithi078.stdout:Backend: cephadm 2024-09-21T12:00:18.788 INFO:teuthology.orchestra.run.smithi078.stdout:Available: Yes 2024-09-21T12:00:18.788 INFO:teuthology.orchestra.run.smithi078.stdout:Paused: No 2024-09-21T12:00:18.799 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:18 smithi078 bash[20010]: cluster 2024-09-21T12:00:17.529978+0000 mgr.smithi078.aqnwdz (mgr.14203) 327 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:18.799 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:18 smithi078 bash[20010]: cluster 2024-09-21T12:00:17.529978+0000 mgr.smithi078.aqnwdz (mgr.14203) 327 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:18.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:18 smithi195 bash[25267]: cluster 2024-09-21T12:00:17.529978+0000 mgr.smithi078.aqnwdz (mgr.14203) 327 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:18.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:18 smithi195 bash[25267]: cluster 2024-09-21T12:00:17.529978+0000 mgr.smithi078.aqnwdz (mgr.14203) 327 : cluster [DBG] pgmap v266: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:19.468 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ps' 2024-09-21T12:00:19.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:19 smithi195 bash[25267]: audit 2024-09-21T12:00:18.788416+0000 mgr.smithi078.aqnwdz (mgr.14203) 328 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:19.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:19 smithi195 bash[25267]: audit 2024-09-21T12:00:18.788416+0000 mgr.smithi078.aqnwdz (mgr.14203) 328 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:19.903 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:19 smithi078 bash[20010]: audit 2024-09-21T12:00:18.788416+0000 mgr.smithi078.aqnwdz (mgr.14203) 328 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:19.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:19 smithi078 bash[20010]: audit 2024-09-21T12:00:18.788416+0000 mgr.smithi078.aqnwdz (mgr.14203) 328 : audit [DBG] from='client.14696 -' entity='client.admin' cmd=[{"prefix": "orch status", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:20.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:20 smithi195 bash[25267]: cluster 2024-09-21T12:00:19.530965+0000 mgr.smithi078.aqnwdz (mgr.14203) 329 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:20.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:20 smithi195 bash[25267]: cluster 2024-09-21T12:00:19.530965+0000 mgr.smithi078.aqnwdz (mgr.14203) 329 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:20.903 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:20 smithi078 bash[20010]: cluster 2024-09-21T12:00:19.530965+0000 mgr.smithi078.aqnwdz (mgr.14203) 329 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:20.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:20 smithi078 bash[20010]: cluster 2024-09-21T12:00:19.530965+0000 mgr.smithi078.aqnwdz (mgr.14203) 329 : cluster [DBG] pgmap v267: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 0 B/s wr, 0 op/s 2024-09-21T12:00:22.776 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:22 smithi078 bash[20010]: cluster 2024-09-21T12:00:21.532308+0000 mgr.smithi078.aqnwdz (mgr.14203) 330 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:22.776 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:22 smithi078 bash[20010]: cluster 2024-09-21T12:00:21.532308+0000 mgr.smithi078.aqnwdz (mgr.14203) 330 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:22.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:22 smithi195 bash[25267]: cluster 2024-09-21T12:00:21.532308+0000 mgr.smithi078.aqnwdz (mgr.14203) 330 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:22.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:22 smithi195 bash[25267]: cluster 2024-09-21T12:00:21.532308+0000 mgr.smithi078.aqnwdz (mgr.14203) 330 : cluster [DBG] pgmap v268: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:23.614 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:23 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T12:00:23.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:23 smithi195 bash[25267]: audit 2024-09-21T12:00:23.385155+0000 mon.smithi078 (mon.0) 927 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv"} : dispatch 2024-09-21T12:00:23.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:23 smithi195 bash[25267]: audit 2024-09-21T12:00:23.385155+0000 mon.smithi078 (mon.0) 927 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv"} : dispatch 2024-09-21T12:00:23.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:23 smithi195 bash[25267]: audit 2024-09-21T12:00:23.388340+0000 mon.smithi078 (mon.0) 928 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv"}]': finished 2024-09-21T12:00:23.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:23 smithi195 bash[25267]: audit 2024-09-21T12:00:23.388340+0000 mon.smithi078 (mon.0) 928 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv"}]': finished 2024-09-21T12:00:23.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:23 smithi195 bash[25267]: audit 2024-09-21T12:00:23.392818+0000 mon.smithi078 (mon.0) 929 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw"} : dispatch 2024-09-21T12:00:23.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:23 smithi195 bash[25267]: audit 2024-09-21T12:00:23.392818+0000 mon.smithi078 (mon.0) 929 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw"} : dispatch 2024-09-21T12:00:23.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:23 smithi195 bash[25267]: audit 2024-09-21T12:00:23.395706+0000 mon.smithi078 (mon.0) 930 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw"}]': finished 2024-09-21T12:00:23.869 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:23 smithi195 bash[25267]: audit 2024-09-21T12:00:23.395706+0000 mon.smithi078 (mon.0) 930 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw"}]': finished 2024-09-21T12:00:23.903 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:23 smithi078 bash[20010]: audit 2024-09-21T12:00:23.385155+0000 mon.smithi078 (mon.0) 927 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv"} : dispatch 2024-09-21T12:00:23.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:23 smithi078 bash[20010]: audit 2024-09-21T12:00:23.385155+0000 mon.smithi078 (mon.0) 927 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv"} : dispatch 2024-09-21T12:00:23.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:23 smithi078 bash[20010]: audit 2024-09-21T12:00:23.388340+0000 mon.smithi078 (mon.0) 928 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv"}]': finished 2024-09-21T12:00:23.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:23 smithi078 bash[20010]: audit 2024-09-21T12:00:23.388340+0000 mon.smithi078 (mon.0) 928 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv"}]': finished 2024-09-21T12:00:23.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:23 smithi078 bash[20010]: audit 2024-09-21T12:00:23.392818+0000 mon.smithi078 (mon.0) 929 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw"} : dispatch 2024-09-21T12:00:23.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:23 smithi078 bash[20010]: audit 2024-09-21T12:00:23.392818+0000 mon.smithi078 (mon.0) 929 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw"} : dispatch 2024-09-21T12:00:23.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:23 smithi078 bash[20010]: audit 2024-09-21T12:00:23.395706+0000 mon.smithi078 (mon.0) 930 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw"}]': finished 2024-09-21T12:00:23.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:23 smithi078 bash[20010]: audit 2024-09-21T12:00:23.395706+0000 mon.smithi078 (mon.0) 930 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix": "auth rm", "entity": "client.nfs.foo.0.0.smithi078.umrlrv-rgw"}]': finished 2024-09-21T12:00:24.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cephadm 2024-09-21T12:00:23.384582+0000 mgr.smithi078.aqnwdz (mgr.14203) 331 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi078.umrlrv 2024-09-21T12:00:24.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cephadm 2024-09-21T12:00:23.384582+0000 mgr.smithi078.aqnwdz (mgr.14203) 331 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi078.umrlrv 2024-09-21T12:00:24.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cephadm 2024-09-21T12:00:23.392457+0000 mgr.smithi078.aqnwdz (mgr.14203) 332 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi078.umrlrv-rgw 2024-09-21T12:00:24.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cephadm 2024-09-21T12:00:23.392457+0000 mgr.smithi078.aqnwdz (mgr.14203) 332 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi078.umrlrv-rgw 2024-09-21T12:00:24.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cephadm 2024-09-21T12:00:23.399085+0000 mgr.smithi078.aqnwdz (mgr.14203) 333 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi078.ljdayf... 2024-09-21T12:00:24.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cephadm 2024-09-21T12:00:23.399085+0000 mgr.smithi078.aqnwdz (mgr.14203) 333 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi078.ljdayf... 2024-09-21T12:00:24.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cephadm 2024-09-21T12:00:23.399300+0000 mgr.smithi078.aqnwdz (mgr.14203) 334 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi078.ljdayf from smithi078 -- ports [2049, 9049] 2024-09-21T12:00:24.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cephadm 2024-09-21T12:00:23.399300+0000 mgr.smithi078.aqnwdz (mgr.14203) 334 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi078.ljdayf from smithi078 -- ports [2049, 9049] 2024-09-21T12:00:24.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cluster 2024-09-21T12:00:23.533699+0000 mgr.smithi078.aqnwdz (mgr.14203) 335 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:24.868 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:24 smithi195 bash[25267]: cluster 2024-09-21T12:00:23.533699+0000 mgr.smithi078.aqnwdz (mgr.14203) 335 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:24.903 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cephadm 2024-09-21T12:00:23.384582+0000 mgr.smithi078.aqnwdz (mgr.14203) 331 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi078.umrlrv 2024-09-21T12:00:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cephadm 2024-09-21T12:00:23.384582+0000 mgr.smithi078.aqnwdz (mgr.14203) 331 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi078.umrlrv 2024-09-21T12:00:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cephadm 2024-09-21T12:00:23.392457+0000 mgr.smithi078.aqnwdz (mgr.14203) 332 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi078.umrlrv-rgw 2024-09-21T12:00:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cephadm 2024-09-21T12:00:23.392457+0000 mgr.smithi078.aqnwdz (mgr.14203) 332 : cephadm [INF] Removing key for client.nfs.foo.0.0.smithi078.umrlrv-rgw 2024-09-21T12:00:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cephadm 2024-09-21T12:00:23.399085+0000 mgr.smithi078.aqnwdz (mgr.14203) 333 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi078.ljdayf... 2024-09-21T12:00:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cephadm 2024-09-21T12:00:23.399085+0000 mgr.smithi078.aqnwdz (mgr.14203) 333 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi078.ljdayf... 2024-09-21T12:00:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cephadm 2024-09-21T12:00:23.399300+0000 mgr.smithi078.aqnwdz (mgr.14203) 334 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi078.ljdayf from smithi078 -- ports [2049, 9049] 2024-09-21T12:00:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cephadm 2024-09-21T12:00:23.399300+0000 mgr.smithi078.aqnwdz (mgr.14203) 334 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi078.ljdayf from smithi078 -- ports [2049, 9049] 2024-09-21T12:00:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cluster 2024-09-21T12:00:23.533699+0000 mgr.smithi078.aqnwdz (mgr.14203) 335 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:24.904 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 bash[20010]: cluster 2024-09-21T12:00:23.533699+0000 mgr.smithi078.aqnwdz (mgr.14203) 335 : cluster [DBG] pgmap v269: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:25.212 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T12:00:25.296 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:24 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T12:00:25.848 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:25 smithi078 bash[20010]: cephadm 2024-09-21T12:00:25.121270+0000 mgr.smithi078.aqnwdz (mgr.14203) 336 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi078.ljdayf 2024-09-21T12:00:25.848 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:25 smithi078 bash[20010]: cephadm 2024-09-21T12:00:25.121270+0000 mgr.smithi078.aqnwdz (mgr.14203) 336 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi078.ljdayf 2024-09-21T12:00:25.848 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:25 smithi078 bash[20010]: audit 2024-09-21T12:00:25.121707+0000 mon.smithi078 (mon.0) 931 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi078.ljdayf"} : dispatch 2024-09-21T12:00:25.848 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:25 smithi078 bash[20010]: audit 2024-09-21T12:00:25.121707+0000 mon.smithi078 (mon.0) 931 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi078.ljdayf"} : dispatch 2024-09-21T12:00:25.849 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:25 smithi078 bash[20010]: cephadm 2024-09-21T12:00:25.122619+0000 mgr.smithi078.aqnwdz (mgr.14203) 337 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi078.ntdtvm... 2024-09-21T12:00:25.849 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:25 smithi078 bash[20010]: cephadm 2024-09-21T12:00:25.122619+0000 mgr.smithi078.aqnwdz (mgr.14203) 337 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi078.ntdtvm... 2024-09-21T12:00:25.849 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:25 smithi078 bash[20010]: cephadm 2024-09-21T12:00:25.122890+0000 mgr.smithi078.aqnwdz (mgr.14203) 338 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi078.ntdtvm from smithi078 -- ports [] 2024-09-21T12:00:25.849 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:25 smithi078 bash[20010]: cephadm 2024-09-21T12:00:25.122890+0000 mgr.smithi078.aqnwdz (mgr.14203) 338 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi078.ntdtvm from smithi078 -- ports [] 2024-09-21T12:00:26.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:25 smithi195 bash[25267]: cephadm 2024-09-21T12:00:25.121270+0000 mgr.smithi078.aqnwdz (mgr.14203) 336 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi078.ljdayf 2024-09-21T12:00:26.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:25 smithi195 bash[25267]: cephadm 2024-09-21T12:00:25.121270+0000 mgr.smithi078.aqnwdz (mgr.14203) 336 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi078.ljdayf 2024-09-21T12:00:26.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:25 smithi195 bash[25267]: audit 2024-09-21T12:00:25.121707+0000 mon.smithi078 (mon.0) 931 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi078.ljdayf"} : dispatch 2024-09-21T12:00:26.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:25 smithi195 bash[25267]: audit 2024-09-21T12:00:25.121707+0000 mon.smithi078 (mon.0) 931 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi078.ljdayf"} : dispatch 2024-09-21T12:00:26.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:25 smithi195 bash[25267]: cephadm 2024-09-21T12:00:25.122619+0000 mgr.smithi078.aqnwdz (mgr.14203) 337 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi078.ntdtvm... 2024-09-21T12:00:26.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:25 smithi195 bash[25267]: cephadm 2024-09-21T12:00:25.122619+0000 mgr.smithi078.aqnwdz (mgr.14203) 337 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi078.ntdtvm... 2024-09-21T12:00:26.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:25 smithi195 bash[25267]: cephadm 2024-09-21T12:00:25.122890+0000 mgr.smithi078.aqnwdz (mgr.14203) 338 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi078.ntdtvm from smithi078 -- ports [] 2024-09-21T12:00:26.118 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:25 smithi195 bash[25267]: cephadm 2024-09-21T12:00:25.122890+0000 mgr.smithi078.aqnwdz (mgr.14203) 338 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi078.ntdtvm from smithi078 -- ports [] 2024-09-21T12:00:26.862 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:26 smithi078 bash[20010]: cluster 2024-09-21T12:00:25.534706+0000 mgr.smithi078.aqnwdz (mgr.14203) 339 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:26.862 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:26 smithi078 bash[20010]: cluster 2024-09-21T12:00:25.534706+0000 mgr.smithi078.aqnwdz (mgr.14203) 339 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:26.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:26 smithi195 bash[25267]: cluster 2024-09-21T12:00:25.534706+0000 mgr.smithi078.aqnwdz (mgr.14203) 339 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:26.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:26 smithi195 bash[25267]: cluster 2024-09-21T12:00:25.534706+0000 mgr.smithi078.aqnwdz (mgr.14203) 339 : cluster [DBG] pgmap v270: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:NAME HOST PORTS STATUS REFRESHED AGE MEM USE MEM LIM VERSION IMAGE ID CONTAINER ID 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:alertmanager.smithi078 smithi078 *:9093,9094 running (6m) 15s ago 8m 13.7M - 0.27.0 11f11916f8cd bf5549b4e5b2 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:ceph-exporter.smithi078 smithi078 *:9926 running (8m) 15s ago 8m 9111k - 19.3.0-5103-g5c1cdc3c 8f4d013db793 9bd005c187a1 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:ceph-exporter.smithi195 smithi195 *:9926 running (7m) 15s ago 7m 6095k - 19.3.0-5103-g5c1cdc3c 8f4d013db793 0fef9f0e4125 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:crash.smithi078 smithi078 running (8m) 15s ago 8m 7243k - 19.3.0-5103-g5c1cdc3c 8f4d013db793 ece3dc1bdaae 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:crash.smithi195 smithi195 running (7m) 15s ago 7m 7216k - 19.3.0-5103-g5c1cdc3c 8f4d013db793 11d6410f23a4 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:grafana.smithi078 smithi078 *:3000 running (6m) 15s ago 7m 68.6M - 10.4.8 5aad1d7cf004 3835009c351d 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:haproxy.nfs.foo.smithi195.tzoruw smithi195 *:2049,9049 running (84s) 15s ago 84s 5015k - 2.3.17-d1c9119 e85424b0d443 9a758c89891d 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:keepalived.nfs.foo.smithi078.ntdtvm smithi078 running (75s) 15s ago 75s 2467k - 2.2.4 4a3a1ff181d9 a8e9c66859f6 2024-09-21T12:00:26.915 INFO:teuthology.orchestra.run.smithi078.stdout:keepalived.nfs.foo.smithi195.iriyeh smithi195 running (64s) 15s ago 64s 2480k - 2.2.4 4a3a1ff181d9 5ffc6c104e06 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:mgr.smithi078.aqnwdz smithi078 *:9283,8765,8443 running (10m) 15s ago 10m 519M - 19.3.0-5103-g5c1cdc3c 8f4d013db793 9e97d089c85c 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:mgr.smithi195.wpaqjn smithi195 *:8443,9283,8765 running (7m) 15s ago 7m 441M - 19.3.0-5103-g5c1cdc3c 8f4d013db793 3d0ed27cfd9f 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:mon.smithi078 smithi078 running (10m) 15s ago 10m 52.7M 2048M 19.3.0-5103-g5c1cdc3c 8f4d013db793 3270f7a14fed 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:mon.smithi195 smithi195 running (6m) 15s ago 6m 42.5M 2048M 19.3.0-5103-g5c1cdc3c 8f4d013db793 6616a2482b5c 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:node-exporter.smithi078 smithi078 *:9100 running (8m) 15s ago 8m 8420k - 1.7.0 72c9c2088986 7f8e22488549 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:node-exporter.smithi195 smithi195 *:9100 running (7m) 15s ago 7m 8531k - 1.7.0 72c9c2088986 3c72b351e096 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:osd.0 smithi195 running (5m) 15s ago 5m 59.8M 3772M 19.3.0-5103-g5c1cdc3c 8f4d013db793 79eaf507b8d8 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:osd.1 smithi078 running (5m) 15s ago 5m 58.3M 3004M 19.3.0-5103-g5c1cdc3c 8f4d013db793 d5b59f64f675 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:osd.2 smithi195 running (5m) 15s ago 5m 49.9M 3772M 19.3.0-5103-g5c1cdc3c 8f4d013db793 925682ca9105 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:osd.3 smithi078 running (5m) 15s ago 5m 49.9M 3004M 19.3.0-5103-g5c1cdc3c 8f4d013db793 6b4dabca9fb5 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:osd.4 smithi195 running (5m) 15s ago 5m 54.8M 3772M 19.3.0-5103-g5c1cdc3c 8f4d013db793 962345eae944 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:osd.5 smithi078 running (4m) 15s ago 5m 54.8M 3004M 19.3.0-5103-g5c1cdc3c 8f4d013db793 2434742cd9f9 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:osd.6 smithi195 running (4m) 15s ago 5m 47.1M 3772M 19.3.0-5103-g5c1cdc3c 8f4d013db793 a56fa1902866 2024-09-21T12:00:26.916 INFO:teuthology.orchestra.run.smithi078.stdout:osd.7 smithi078 running (4m) 15s ago 4m 55.4M 3004M 19.3.0-5103-g5c1cdc3c 8f4d013db793 00812fa1e224 2024-09-21T12:00:26.917 INFO:teuthology.orchestra.run.smithi078.stdout:prometheus.smithi078 smithi078 *:9095 running (51s) 15s ago 7m 38.9M - 2.51.0 1d3b7f56885b 673f3bc42245 2024-09-21T12:00:26.917 INFO:teuthology.orchestra.run.smithi078.stdout:rgw.foorgw.smithi078.vfczdr smithi078 *:8800 running (107s) 15s ago 107s 89.7M - 19.3.0-5103-g5c1cdc3c 8f4d013db793 92c2fde00eeb 2024-09-21T12:00:26.917 INFO:teuthology.orchestra.run.smithi078.stdout:rgw.foorgw.smithi195.rsgiag smithi195 *:8800 running (111s) 15s ago 111s 87.9M - 19.3.0-5103-g5c1cdc3c 8f4d013db793 39d73d5fe185 2024-09-21T12:00:27.726 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:27 smithi078 bash[20010]: audit 2024-09-21T12:00:26.899194+0000 mgr.smithi078.aqnwdz (mgr.14203) 340 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:27.726 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:27 smithi078 bash[20010]: audit 2024-09-21T12:00:26.899194+0000 mgr.smithi078.aqnwdz (mgr.14203) 340 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:28.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:27 smithi195 bash[25267]: audit 2024-09-21T12:00:26.899194+0000 mgr.smithi078.aqnwdz (mgr.14203) 340 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:28.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:27 smithi195 bash[25267]: audit 2024-09-21T12:00:26.899194+0000 mgr.smithi078.aqnwdz (mgr.14203) 340 : audit [DBG] from='client.14700 -' entity='client.admin' cmd=[{"prefix": "orch ps", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:28.309 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ls' 2024-09-21T12:00:28.521 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:28 smithi078 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T12:00:29.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:29 smithi195 bash[25267]: cluster 2024-09-21T12:00:27.535938+0000 mgr.smithi078.aqnwdz (mgr.14203) 341 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:29.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:29 smithi195 bash[25267]: cluster 2024-09-21T12:00:27.535938+0000 mgr.smithi078.aqnwdz (mgr.14203) 341 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:29.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:29 smithi195 bash[25267]: audit 2024-09-21T12:00:28.594016+0000 mon.smithi078 (mon.0) 932 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi078.ntdtvm"} : dispatch 2024-09-21T12:00:29.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:29 smithi195 bash[25267]: audit 2024-09-21T12:00:28.594016+0000 mon.smithi078 (mon.0) 932 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi078.ntdtvm"} : dispatch 2024-09-21T12:00:29.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:29 smithi078 bash[20010]: cluster 2024-09-21T12:00:27.535938+0000 mgr.smithi078.aqnwdz (mgr.14203) 341 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:29.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:29 smithi078 bash[20010]: cluster 2024-09-21T12:00:27.535938+0000 mgr.smithi078.aqnwdz (mgr.14203) 341 : cluster [DBG] pgmap v271: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:29.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:29 smithi078 bash[20010]: audit 2024-09-21T12:00:28.594016+0000 mon.smithi078 (mon.0) 932 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi078.ntdtvm"} : dispatch 2024-09-21T12:00:29.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:29 smithi078 bash[20010]: audit 2024-09-21T12:00:28.594016+0000 mon.smithi078 (mon.0) 932 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi078.ntdtvm"} : dispatch 2024-09-21T12:00:30.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:30 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T12:00:30.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:30 smithi195 bash[25267]: cephadm 2024-09-21T12:00:28.593675+0000 mgr.smithi078.aqnwdz (mgr.14203) 342 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi078.ntdtvm 2024-09-21T12:00:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:30 smithi195 bash[25267]: cephadm 2024-09-21T12:00:28.593675+0000 mgr.smithi078.aqnwdz (mgr.14203) 342 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi078.ntdtvm 2024-09-21T12:00:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:30 smithi195 bash[25267]: cephadm 2024-09-21T12:00:28.595558+0000 mgr.smithi078.aqnwdz (mgr.14203) 343 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi195.tzoruw... 2024-09-21T12:00:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:30 smithi195 bash[25267]: cephadm 2024-09-21T12:00:28.595558+0000 mgr.smithi078.aqnwdz (mgr.14203) 343 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi195.tzoruw... 2024-09-21T12:00:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:30 smithi195 bash[25267]: cephadm 2024-09-21T12:00:28.595735+0000 mgr.smithi078.aqnwdz (mgr.14203) 344 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi195.tzoruw from smithi195 -- ports [2049, 9049] 2024-09-21T12:00:30.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:30 smithi195 bash[25267]: cephadm 2024-09-21T12:00:28.595735+0000 mgr.smithi078.aqnwdz (mgr.14203) 344 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi195.tzoruw from smithi195 -- ports [2049, 9049] 2024-09-21T12:00:30.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:30 smithi078 bash[20010]: cephadm 2024-09-21T12:00:28.593675+0000 mgr.smithi078.aqnwdz (mgr.14203) 342 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi078.ntdtvm 2024-09-21T12:00:30.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:30 smithi078 bash[20010]: cephadm 2024-09-21T12:00:28.593675+0000 mgr.smithi078.aqnwdz (mgr.14203) 342 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi078.ntdtvm 2024-09-21T12:00:30.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:30 smithi078 bash[20010]: cephadm 2024-09-21T12:00:28.595558+0000 mgr.smithi078.aqnwdz (mgr.14203) 343 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi195.tzoruw... 2024-09-21T12:00:30.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:30 smithi078 bash[20010]: cephadm 2024-09-21T12:00:28.595558+0000 mgr.smithi078.aqnwdz (mgr.14203) 343 : cephadm [INF] Removing orphan daemon haproxy.nfs.foo.smithi195.tzoruw... 2024-09-21T12:00:30.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:30 smithi078 bash[20010]: cephadm 2024-09-21T12:00:28.595735+0000 mgr.smithi078.aqnwdz (mgr.14203) 344 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi195.tzoruw from smithi195 -- ports [2049, 9049] 2024-09-21T12:00:30.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:30 smithi078 bash[20010]: cephadm 2024-09-21T12:00:28.595735+0000 mgr.smithi078.aqnwdz (mgr.14203) 344 : cephadm [INF] Removing daemon haproxy.nfs.foo.smithi195.tzoruw from smithi195 -- ports [2049, 9049] 2024-09-21T12:00:31.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:31 smithi195 bash[25267]: cluster 2024-09-21T12:00:29.537543+0000 mgr.smithi078.aqnwdz (mgr.14203) 345 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:31.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:31 smithi195 bash[25267]: cluster 2024-09-21T12:00:29.537543+0000 mgr.smithi078.aqnwdz (mgr.14203) 345 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:31.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:31 smithi195 bash[25267]: audit 2024-09-21T12:00:30.308800+0000 mon.smithi078 (mon.0) 933 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.tzoruw"} : dispatch 2024-09-21T12:00:31.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:31 smithi195 bash[25267]: audit 2024-09-21T12:00:30.308800+0000 mon.smithi078 (mon.0) 933 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.tzoruw"} : dispatch 2024-09-21T12:00:31.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:31 smithi078 bash[20010]: cluster 2024-09-21T12:00:29.537543+0000 mgr.smithi078.aqnwdz (mgr.14203) 345 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:31.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:31 smithi078 bash[20010]: cluster 2024-09-21T12:00:29.537543+0000 mgr.smithi078.aqnwdz (mgr.14203) 345 : cluster [DBG] pgmap v272: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:31.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:31 smithi078 bash[20010]: audit 2024-09-21T12:00:30.308800+0000 mon.smithi078 (mon.0) 933 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.tzoruw"} : dispatch 2024-09-21T12:00:31.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:31 smithi078 bash[20010]: audit 2024-09-21T12:00:30.308800+0000 mon.smithi078 (mon.0) 933 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.tzoruw"} : dispatch 2024-09-21T12:00:32.549 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:32 smithi078 bash[20010]: cephadm 2024-09-21T12:00:30.308010+0000 mgr.smithi078.aqnwdz (mgr.14203) 346 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.tzoruw 2024-09-21T12:00:32.549 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:32 smithi078 bash[20010]: cephadm 2024-09-21T12:00:30.308010+0000 mgr.smithi078.aqnwdz (mgr.14203) 346 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.tzoruw 2024-09-21T12:00:32.549 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:32 smithi078 bash[20010]: cephadm 2024-09-21T12:00:30.311289+0000 mgr.smithi078.aqnwdz (mgr.14203) 347 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi195.iriyeh... 2024-09-21T12:00:32.549 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:32 smithi078 bash[20010]: cephadm 2024-09-21T12:00:30.311289+0000 mgr.smithi078.aqnwdz (mgr.14203) 347 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi195.iriyeh... 2024-09-21T12:00:32.549 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:32 smithi078 bash[20010]: cephadm 2024-09-21T12:00:30.311913+0000 mgr.smithi078.aqnwdz (mgr.14203) 348 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi195.iriyeh from smithi195 -- ports [] 2024-09-21T12:00:32.550 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:32 smithi078 bash[20010]: cephadm 2024-09-21T12:00:30.311913+0000 mgr.smithi078.aqnwdz (mgr.14203) 348 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi195.iriyeh from smithi195 -- ports [] 2024-09-21T12:00:32.550 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:32 smithi078 bash[20010]: audit 2024-09-21T12:00:31.735229+0000 mon.smithi078 (mon.0) 934 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:32.550 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:32 smithi078 bash[20010]: audit 2024-09-21T12:00:31.735229+0000 mon.smithi078 (mon.0) 934 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:32.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:32 smithi195 bash[25267]: cephadm 2024-09-21T12:00:30.308010+0000 mgr.smithi078.aqnwdz (mgr.14203) 346 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.tzoruw 2024-09-21T12:00:32.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:32 smithi195 bash[25267]: cephadm 2024-09-21T12:00:30.308010+0000 mgr.smithi078.aqnwdz (mgr.14203) 346 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.tzoruw 2024-09-21T12:00:32.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:32 smithi195 bash[25267]: cephadm 2024-09-21T12:00:30.311289+0000 mgr.smithi078.aqnwdz (mgr.14203) 347 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi195.iriyeh... 2024-09-21T12:00:32.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:32 smithi195 bash[25267]: cephadm 2024-09-21T12:00:30.311289+0000 mgr.smithi078.aqnwdz (mgr.14203) 347 : cephadm [INF] Removing orphan daemon keepalived.nfs.foo.smithi195.iriyeh... 2024-09-21T12:00:32.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:32 smithi195 bash[25267]: cephadm 2024-09-21T12:00:30.311913+0000 mgr.smithi078.aqnwdz (mgr.14203) 348 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi195.iriyeh from smithi195 -- ports [] 2024-09-21T12:00:32.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:32 smithi195 bash[25267]: cephadm 2024-09-21T12:00:30.311913+0000 mgr.smithi078.aqnwdz (mgr.14203) 348 : cephadm [INF] Removing daemon keepalived.nfs.foo.smithi195.iriyeh from smithi195 -- ports [] 2024-09-21T12:00:32.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:32 smithi195 bash[25267]: audit 2024-09-21T12:00:31.735229+0000 mon.smithi078 (mon.0) 934 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:32.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:32 smithi195 bash[25267]: audit 2024-09-21T12:00:31.735229+0000 mon.smithi078 (mon.0) 934 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:33.117 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:32 smithi195 systemd[1]: /etc/systemd/system/ceph-6b15370c-780f-11ef-baf6-efdc52797490@.service:23: Unit configured to use KillMode=none. This is unsafe, as it disables systemd's process lifecycle management for the service. Please update your service to use a safer KillMode=, such as 'mixed' or 'control-group'. Support for KillMode=none is deprecated and will eventually be removed. 2024-09-21T12:00:33.132 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T12:00:33.591 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:33 smithi195 bash[25267]: cluster 2024-09-21T12:00:31.538841+0000 mgr.smithi078.aqnwdz (mgr.14203) 349 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:33.591 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:33 smithi195 bash[25267]: cluster 2024-09-21T12:00:31.538841+0000 mgr.smithi078.aqnwdz (mgr.14203) 349 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:33.591 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:33 smithi195 bash[25267]: audit 2024-09-21T12:00:32.961696+0000 mon.smithi078 (mon.0) 935 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.iriyeh"} : dispatch 2024-09-21T12:00:33.591 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:33 smithi195 bash[25267]: audit 2024-09-21T12:00:32.961696+0000 mon.smithi078 (mon.0) 935 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.iriyeh"} : dispatch 2024-09-21T12:00:33.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:33 smithi078 bash[20010]: cluster 2024-09-21T12:00:31.538841+0000 mgr.smithi078.aqnwdz (mgr.14203) 349 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:33.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:33 smithi078 bash[20010]: cluster 2024-09-21T12:00:31.538841+0000 mgr.smithi078.aqnwdz (mgr.14203) 349 : cluster [DBG] pgmap v273: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail; 85 B/s rd, 170 B/s wr, 0 op/s 2024-09-21T12:00:33.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:33 smithi078 bash[20010]: audit 2024-09-21T12:00:32.961696+0000 mon.smithi078 (mon.0) 935 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.iriyeh"} : dispatch 2024-09-21T12:00:33.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:33 smithi078 bash[20010]: audit 2024-09-21T12:00:32.961696+0000 mon.smithi078 (mon.0) 935 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth rm", "entity": "client.ingress.nfs.foo.smithi195.iriyeh"} : dispatch 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: cephadm 2024-09-21T12:00:32.961113+0000 mgr.smithi078.aqnwdz (mgr.14203) 350 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.iriyeh 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: cephadm 2024-09-21T12:00:32.961113+0000 mgr.smithi078.aqnwdz (mgr.14203) 350 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.iriyeh 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.336858+0000 mon.smithi078 (mon.0) 936 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.336858+0000 mon.smithi078 (mon.0) 936 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.340337+0000 mon.smithi078 (mon.0) 937 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.340337+0000 mon.smithi078 (mon.0) 937 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.345927+0000 mon.smithi078 (mon.0) 938 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.345927+0000 mon.smithi078 (mon.0) 938 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.351373+0000 mon.smithi078 (mon.0) 939 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.351373+0000 mon.smithi078 (mon.0) 939 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.351758+0000 mon.smithi078 (mon.0) 940 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-21T12:00:34.496 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.351758+0000 mon.smithi078 (mon.0) 940 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-21T12:00:34.497 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.356931+0000 mon.smithi078 (mon.0) 941 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-21T12:00:34.497 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.356931+0000 mon.smithi078 (mon.0) 941 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-21T12:00:34.497 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.357979+0000 mon.smithi078 (mon.0) 942 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:34.497 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:34 smithi078 bash[20010]: audit 2024-09-21T12:00:33.357979+0000 mon.smithi078 (mon.0) 942 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:34.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: cephadm 2024-09-21T12:00:32.961113+0000 mgr.smithi078.aqnwdz (mgr.14203) 350 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.iriyeh 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: cephadm 2024-09-21T12:00:32.961113+0000 mgr.smithi078.aqnwdz (mgr.14203) 350 : cephadm [INF] Removing key for client.ingress.nfs.foo.smithi195.iriyeh 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.336858+0000 mon.smithi078 (mon.0) 936 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.336858+0000 mon.smithi078 (mon.0) 936 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"} : dispatch 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.340337+0000 mon.smithi078 (mon.0) 937 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.340337+0000 mon.smithi078 (mon.0) 937 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.nfs.foo"}]': finished 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.345927+0000 mon.smithi078 (mon.0) 938 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.345927+0000 mon.smithi078 (mon.0) 938 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.351373+0000 mon.smithi078 (mon.0) 939 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.351373+0000 mon.smithi078 (mon.0) 939 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.351758+0000 mon.smithi078 (mon.0) 940 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.351758+0000 mon.smithi078 (mon.0) 940 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"} : dispatch 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.356931+0000 mon.smithi078 (mon.0) 941 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-21T12:00:34.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.356931+0000 mon.smithi078 (mon.0) 941 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd='[{"prefix":"config-key del","key":"mgr/cephadm/spec.ingress.nfs.foo"}]': finished 2024-09-21T12:00:34.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.357979+0000 mon.smithi078 (mon.0) 942 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:34.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:34 smithi195 bash[25267]: audit 2024-09-21T12:00:33.357979+0000 mon.smithi078 (mon.0) 942 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:34.861 INFO:teuthology.orchestra.run.smithi078.stdout:NAME PORTS RUNNING REFRESHED AGE PLACEMENT 2024-09-21T12:00:34.861 INFO:teuthology.orchestra.run.smithi078.stdout:alertmanager ?:9093,9094 1/1 23s ago 9m count:1 2024-09-21T12:00:34.861 INFO:teuthology.orchestra.run.smithi078.stdout:ceph-exporter ?:9926 2/2 23s ago 9m * 2024-09-21T12:00:34.861 INFO:teuthology.orchestra.run.smithi078.stdout:crash 2/2 23s ago 9m * 2024-09-21T12:00:34.861 INFO:teuthology.orchestra.run.smithi078.stdout:grafana ?:3000 1/1 23s ago 9m count:1 2024-09-21T12:00:34.862 INFO:teuthology.orchestra.run.smithi078.stdout:mgr 2/2 23s ago 9m count:2 2024-09-21T12:00:34.862 INFO:teuthology.orchestra.run.smithi078.stdout:mon 2/2 23s ago 7m smithi078:172.21.15.78=smithi078;smithi195:172.21.15.195=smithi195;count:2 2024-09-21T12:00:34.862 INFO:teuthology.orchestra.run.smithi078.stdout:node-exporter ?:9100 2/2 23s ago 9m * 2024-09-21T12:00:34.862 INFO:teuthology.orchestra.run.smithi078.stdout:osd.all-available-devices 8 23s ago 6m * 2024-09-21T12:00:34.862 INFO:teuthology.orchestra.run.smithi078.stdout:prometheus ?:9095 1/1 23s ago 9m count:1 2024-09-21T12:00:34.862 INFO:teuthology.orchestra.run.smithi078.stdout:rgw.foorgw ?:8800 2/2 23s ago 114s count:2 2024-09-21T12:00:35.594 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:35 smithi078 bash[20010]: cephadm 2024-09-21T12:00:33.275339+0000 mgr.smithi078.aqnwdz (mgr.14203) 351 : cephadm [INF] Purge service nfs.foo 2024-09-21T12:00:35.595 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:35 smithi078 bash[20010]: cephadm 2024-09-21T12:00:33.275339+0000 mgr.smithi078.aqnwdz (mgr.14203) 351 : cephadm [INF] Purge service nfs.foo 2024-09-21T12:00:35.595 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:35 smithi078 bash[20010]: cephadm 2024-09-21T12:00:33.275410+0000 mgr.smithi078.aqnwdz (mgr.14203) 352 : cephadm [INF] Removing grace file for nfs.foo 2024-09-21T12:00:35.595 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:35 smithi078 bash[20010]: cephadm 2024-09-21T12:00:33.275410+0000 mgr.smithi078.aqnwdz (mgr.14203) 352 : cephadm [INF] Removing grace file for nfs.foo 2024-09-21T12:00:35.595 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:35 smithi078 bash[20010]: cephadm 2024-09-21T12:00:33.341030+0000 mgr.smithi078.aqnwdz (mgr.14203) 353 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-21T12:00:35.595 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:35 smithi078 bash[20010]: cephadm 2024-09-21T12:00:33.341030+0000 mgr.smithi078.aqnwdz (mgr.14203) 353 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-21T12:00:35.595 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:35 smithi078 bash[20010]: cluster 2024-09-21T12:00:33.540099+0000 mgr.smithi078.aqnwdz (mgr.14203) 354 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:35.595 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:35 smithi078 bash[20010]: cluster 2024-09-21T12:00:33.540099+0000 mgr.smithi078.aqnwdz (mgr.14203) 354 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:35.596 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch host ls' 2024-09-21T12:00:35.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:35 smithi195 bash[25267]: cephadm 2024-09-21T12:00:33.275339+0000 mgr.smithi078.aqnwdz (mgr.14203) 351 : cephadm [INF] Purge service nfs.foo 2024-09-21T12:00:35.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:35 smithi195 bash[25267]: cephadm 2024-09-21T12:00:33.275339+0000 mgr.smithi078.aqnwdz (mgr.14203) 351 : cephadm [INF] Purge service nfs.foo 2024-09-21T12:00:35.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:35 smithi195 bash[25267]: cephadm 2024-09-21T12:00:33.275410+0000 mgr.smithi078.aqnwdz (mgr.14203) 352 : cephadm [INF] Removing grace file for nfs.foo 2024-09-21T12:00:35.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:35 smithi195 bash[25267]: cephadm 2024-09-21T12:00:33.275410+0000 mgr.smithi078.aqnwdz (mgr.14203) 352 : cephadm [INF] Removing grace file for nfs.foo 2024-09-21T12:00:35.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:35 smithi195 bash[25267]: cephadm 2024-09-21T12:00:33.341030+0000 mgr.smithi078.aqnwdz (mgr.14203) 353 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-21T12:00:35.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:35 smithi195 bash[25267]: cephadm 2024-09-21T12:00:33.341030+0000 mgr.smithi078.aqnwdz (mgr.14203) 353 : cephadm [INF] Purge service ingress.nfs.foo 2024-09-21T12:00:35.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:35 smithi195 bash[25267]: cluster 2024-09-21T12:00:33.540099+0000 mgr.smithi078.aqnwdz (mgr.14203) 354 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:35.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:35 smithi195 bash[25267]: cluster 2024-09-21T12:00:33.540099+0000 mgr.smithi078.aqnwdz (mgr.14203) 354 : cluster [DBG] pgmap v274: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:36.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:36 smithi195 bash[25267]: audit 2024-09-21T12:00:34.854222+0000 mgr.smithi078.aqnwdz (mgr.14203) 355 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:36.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:36 smithi195 bash[25267]: audit 2024-09-21T12:00:34.854222+0000 mgr.smithi078.aqnwdz (mgr.14203) 355 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:36.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:36 smithi078 bash[20010]: audit 2024-09-21T12:00:34.854222+0000 mgr.smithi078.aqnwdz (mgr.14203) 355 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:36.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:36 smithi078 bash[20010]: audit 2024-09-21T12:00:34.854222+0000 mgr.smithi078.aqnwdz (mgr.14203) 355 : audit [DBG] from='client.14710 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:37.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:37 smithi195 bash[25267]: cluster 2024-09-21T12:00:35.541783+0000 mgr.smithi078.aqnwdz (mgr.14203) 356 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:37.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:37 smithi195 bash[25267]: cluster 2024-09-21T12:00:35.541783+0000 mgr.smithi078.aqnwdz (mgr.14203) 356 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:37.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:37 smithi078 bash[20010]: cluster 2024-09-21T12:00:35.541783+0000 mgr.smithi078.aqnwdz (mgr.14203) 356 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:37.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:37 smithi078 bash[20010]: cluster 2024-09-21T12:00:35.541783+0000 mgr.smithi078.aqnwdz (mgr.14203) 356 : cluster [DBG] pgmap v275: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:39.435 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T12:00:39.546 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:39 smithi078 bash[20010]: cluster 2024-09-21T12:00:37.542957+0000 mgr.smithi078.aqnwdz (mgr.14203) 357 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:39.546 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:39 smithi078 bash[20010]: cluster 2024-09-21T12:00:37.542957+0000 mgr.smithi078.aqnwdz (mgr.14203) 357 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:39.546 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:39 smithi078 bash[20010]: audit 2024-09-21T12:00:38.937967+0000 mon.smithi078 (mon.0) 943 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:39.546 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:39 smithi078 bash[20010]: audit 2024-09-21T12:00:38.937967+0000 mon.smithi078 (mon.0) 943 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:39.546 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:39 smithi078 bash[20010]: audit 2024-09-21T12:00:38.944703+0000 mon.smithi078 (mon.0) 944 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:39.546 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:39 smithi078 bash[20010]: audit 2024-09-21T12:00:38.944703+0000 mon.smithi078 (mon.0) 944 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:39.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:39 smithi195 bash[25267]: cluster 2024-09-21T12:00:37.542957+0000 mgr.smithi078.aqnwdz (mgr.14203) 357 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:39.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:39 smithi195 bash[25267]: cluster 2024-09-21T12:00:37.542957+0000 mgr.smithi078.aqnwdz (mgr.14203) 357 : cluster [DBG] pgmap v276: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:39.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:39 smithi195 bash[25267]: audit 2024-09-21T12:00:38.937967+0000 mon.smithi078 (mon.0) 943 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:39.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:39 smithi195 bash[25267]: audit 2024-09-21T12:00:38.937967+0000 mon.smithi078 (mon.0) 943 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:39.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:39 smithi195 bash[25267]: audit 2024-09-21T12:00:38.944703+0000 mon.smithi078 (mon.0) 944 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:39.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:39 smithi195 bash[25267]: audit 2024-09-21T12:00:38.944703+0000 mon.smithi078 (mon.0) 944 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.252901+0000 mon.smithi078 (mon.0) 945 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.252901+0000 mon.smithi078 (mon.0) 945 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.258707+0000 mon.smithi078 (mon.0) 946 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.258707+0000 mon.smithi078 (mon.0) 946 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: cluster 2024-09-21T12:00:39.544580+0000 mgr.smithi078.aqnwdz (mgr.14203) 358 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: cluster 2024-09-21T12:00:39.544580+0000 mgr.smithi078.aqnwdz (mgr.14203) 358 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.873082+0000 mon.smithi078 (mon.0) 947 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.873082+0000 mon.smithi078 (mon.0) 947 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.874008+0000 mon.smithi078 (mon.0) 948 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.874008+0000 mon.smithi078 (mon.0) 948 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.883726+0000 mon.smithi078 (mon.0) 949 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.883726+0000 mon.smithi078 (mon.0) 949 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.618 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.890643+0000 mon.smithi078 (mon.0) 950 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: audit 2024-09-21T12:00:39.890643+0000 mon.smithi078 (mon.0) 950 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: cephadm 2024-09-21T12:00:39.926291+0000 mgr.smithi078.aqnwdz (mgr.14203) 359 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T12:00:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: cephadm 2024-09-21T12:00:39.926291+0000 mgr.smithi078.aqnwdz (mgr.14203) 359 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T12:00:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: cephadm 2024-09-21T12:00:40.205317+0000 mgr.smithi078.aqnwdz (mgr.14203) 360 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T12:00:40.619 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:40 smithi195 bash[25267]: cephadm 2024-09-21T12:00:40.205317+0000 mgr.smithi078.aqnwdz (mgr.14203) 360 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T12:00:40.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.252901+0000 mon.smithi078 (mon.0) 945 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.252901+0000 mon.smithi078 (mon.0) 945 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.258707+0000 mon.smithi078 (mon.0) 946 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.258707+0000 mon.smithi078 (mon.0) 946 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: cluster 2024-09-21T12:00:39.544580+0000 mgr.smithi078.aqnwdz (mgr.14203) 358 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: cluster 2024-09-21T12:00:39.544580+0000 mgr.smithi078.aqnwdz (mgr.14203) 358 : cluster [DBG] pgmap v277: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.873082+0000 mon.smithi078 (mon.0) 947 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.873082+0000 mon.smithi078 (mon.0) 947 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.874008+0000 mon.smithi078 (mon.0) 948 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.874008+0000 mon.smithi078 (mon.0) 948 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.883726+0000 mon.smithi078 (mon.0) 949 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.883726+0000 mon.smithi078 (mon.0) 949 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.890643+0000 mon.smithi078 (mon.0) 950 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: audit 2024-09-21T12:00:39.890643+0000 mon.smithi078 (mon.0) 950 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:40.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: cephadm 2024-09-21T12:00:39.926291+0000 mgr.smithi078.aqnwdz (mgr.14203) 359 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T12:00:40.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: cephadm 2024-09-21T12:00:39.926291+0000 mgr.smithi078.aqnwdz (mgr.14203) 359 : cephadm [INF] Reconfiguring prometheus.smithi078 (dependencies changed)... 2024-09-21T12:00:40.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: cephadm 2024-09-21T12:00:40.205317+0000 mgr.smithi078.aqnwdz (mgr.14203) 360 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T12:00:40.655 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:40 smithi078 bash[20010]: cephadm 2024-09-21T12:00:40.205317+0000 mgr.smithi078.aqnwdz (mgr.14203) 360 : cephadm [INF] Reconfiguring daemon prometheus.smithi078 on smithi078 2024-09-21T12:00:40.998 INFO:teuthology.orchestra.run.smithi078.stdout:HOST ADDR LABELS STATUS 2024-09-21T12:00:40.998 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 172.21.15.78 2024-09-21T12:00:40.998 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 172.21.15.195 2024-09-21T12:00:40.998 INFO:teuthology.orchestra.run.smithi078.stdout:2 hosts in cluster 2024-09-21T12:00:41.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:41 smithi195 bash[25267]: audit 2024-09-21T12:00:40.998399+0000 mgr.smithi078.aqnwdz (mgr.14203) 361 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:41.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:41 smithi195 bash[25267]: audit 2024-09-21T12:00:40.998399+0000 mgr.smithi078.aqnwdz (mgr.14203) 361 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:41.653 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:41 smithi078 bash[20010]: audit 2024-09-21T12:00:40.998399+0000 mgr.smithi078.aqnwdz (mgr.14203) 361 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:41.654 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:41 smithi078 bash[20010]: audit 2024-09-21T12:00:40.998399+0000 mgr.smithi078.aqnwdz (mgr.14203) 361 : audit [DBG] from='client.14714 -' entity='client.admin' cmd=[{"prefix": "orch host ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:42.414 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch device ls' 2024-09-21T12:00:42.541 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:42 smithi078 bash[20010]: cluster 2024-09-21T12:00:41.545857+0000 mgr.smithi078.aqnwdz (mgr.14203) 362 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:42.541 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:42 smithi078 bash[20010]: cluster 2024-09-21T12:00:41.545857+0000 mgr.smithi078.aqnwdz (mgr.14203) 362 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:42.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:42 smithi195 bash[25267]: cluster 2024-09-21T12:00:41.545857+0000 mgr.smithi078.aqnwdz (mgr.14203) 362 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:42.617 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:42 smithi195 bash[25267]: cluster 2024-09-21T12:00:41.545857+0000 mgr.smithi078.aqnwdz (mgr.14203) 362 : cluster [DBG] pgmap v278: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:44.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:44 smithi195 bash[25267]: cluster 2024-09-21T12:00:43.547281+0000 mgr.smithi078.aqnwdz (mgr.14203) 363 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:44.867 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:44 smithi195 bash[25267]: cluster 2024-09-21T12:00:43.547281+0000 mgr.smithi078.aqnwdz (mgr.14203) 363 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:44.903 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:44 smithi078 bash[20010]: cluster 2024-09-21T12:00:43.547281+0000 mgr.smithi078.aqnwdz (mgr.14203) 363 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:44.903 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:44 smithi078 bash[20010]: cluster 2024-09-21T12:00:43.547281+0000 mgr.smithi078.aqnwdz (mgr.14203) 363 : cluster [DBG] pgmap v279: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:47.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: cluster 2024-09-21T12:00:45.548910+0000 mgr.smithi078.aqnwdz (mgr.14203) 364 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:47.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: cluster 2024-09-21T12:00:45.548910+0000 mgr.smithi078.aqnwdz (mgr.14203) 364 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:47.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.063373+0000 mon.smithi078 (mon.0) 951 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.063373+0000 mon.smithi078 (mon.0) 951 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.069978+0000 mon.smithi078 (mon.0) 952 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.069978+0000 mon.smithi078 (mon.0) 952 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.075683+0000 mon.smithi078 (mon.0) 953 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.075683+0000 mon.smithi078 (mon.0) 953 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.076146+0000 mgr.smithi078.aqnwdz (mgr.14203) 365 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.076146+0000 mgr.smithi078.aqnwdz (mgr.14203) 365 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.338176+0000 mon.smithi078 (mon.0) 954 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.338176+0000 mon.smithi078 (mon.0) 954 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.735656+0000 mon.smithi078 (mon.0) 955 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:47.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:47 smithi195 bash[25267]: audit 2024-09-21T12:00:46.735656+0000 mon.smithi078 (mon.0) 955 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: cluster 2024-09-21T12:00:45.548910+0000 mgr.smithi078.aqnwdz (mgr.14203) 364 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: cluster 2024-09-21T12:00:45.548910+0000 mgr.smithi078.aqnwdz (mgr.14203) 364 : cluster [DBG] pgmap v280: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.063373+0000 mon.smithi078 (mon.0) 951 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.063373+0000 mon.smithi078 (mon.0) 951 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.069978+0000 mon.smithi078 (mon.0) 952 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.069978+0000 mon.smithi078 (mon.0) 952 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.075683+0000 mon.smithi078 (mon.0) 953 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T12:00:47.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.075683+0000 mon.smithi078 (mon.0) 953 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "dashboard get-prometheus-api-host"} : dispatch 2024-09-21T12:00:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.076146+0000 mgr.smithi078.aqnwdz (mgr.14203) 365 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T12:00:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.076146+0000 mgr.smithi078.aqnwdz (mgr.14203) 365 : audit [DBG] from='mon.0 -' entity='mon.' cmd=[{"prefix": "dashboard get-prometheus-api-host"}]: dispatch 2024-09-21T12:00:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.338176+0000 mon.smithi078 (mon.0) 954 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.338176+0000 mon.smithi078 (mon.0) 954 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config dump", "format": "json"} : dispatch 2024-09-21T12:00:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.735656+0000 mon.smithi078 (mon.0) 955 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:47.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:47 smithi078 bash[20010]: audit 2024-09-21T12:00:46.735656+0000 mon.smithi078 (mon.0) 955 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd blocklist ls", "format": "json"} : dispatch 2024-09-21T12:00:49.304 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T12:00:49.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:49 smithi195 bash[25267]: cluster 2024-09-21T12:00:47.550107+0000 mgr.smithi078.aqnwdz (mgr.14203) 366 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:49.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:49 smithi195 bash[25267]: cluster 2024-09-21T12:00:47.550107+0000 mgr.smithi078.aqnwdz (mgr.14203) 366 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:49.400 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:49 smithi078 bash[20010]: cluster 2024-09-21T12:00:47.550107+0000 mgr.smithi078.aqnwdz (mgr.14203) 366 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:49.400 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:49 smithi078 bash[20010]: cluster 2024-09-21T12:00:47.550107+0000 mgr.smithi078.aqnwdz (mgr.14203) 366 : cluster [DBG] pgmap v281: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:HOST PATH TYPE DEVICE ID SIZE AVAILABLE REFRESHED REJECT REASONS 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme0n1 ssd INTEL_SSDPEDMD400G4_PHFT620400QR400BGN 372G No 2m ago Has a FileSystem, LVM detected 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme1n1 ssd Linux_3f63300798c5ee4d979a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme2n1 ssd Linux_32c2c76587d995c6ad06 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme3n1 ssd Linux_32a593f9f6d5d6d7d15a 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi078 /dev/nvme4n1 ssd Linux_1274239096e2f34517fd 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme0n1 ssd INTEL_SSDPED1D480GA_PHMB751300FS480DGN 447G No 2m ago Has a FileSystem, LVM detected 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme1n1 ssd Linux_33c055dd37b61d262f61 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme2n1 ssd Linux_da5d43f7b8c40fe8e6f0 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme3n1 ssd Linux_cb23693c7b1cac6408fc 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T12:00:50.848 INFO:teuthology.orchestra.run.smithi078.stdout:smithi195 /dev/nvme4n1 ssd Linux_e74dc35d8d342433196f 89.4G No 2m ago Has a FileSystem, Insufficient space (<10 extents) on vgs, LVM detected 2024-09-21T12:00:51.153 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:51 smithi078 bash[20010]: cluster 2024-09-21T12:00:49.551697+0000 mgr.smithi078.aqnwdz (mgr.14203) 367 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:51.154 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:51 smithi078 bash[20010]: cluster 2024-09-21T12:00:49.551697+0000 mgr.smithi078.aqnwdz (mgr.14203) 367 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:51.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:51 smithi195 bash[25267]: cluster 2024-09-21T12:00:49.551697+0000 mgr.smithi078.aqnwdz (mgr.14203) 367 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:51.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:51 smithi195 bash[25267]: cluster 2024-09-21T12:00:49.551697+0000 mgr.smithi078.aqnwdz (mgr.14203) 367 : cluster [DBG] pgmap v282: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:51.536 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm --image quay-quay-quay.apps.os.sepia.ceph.com/ceph-ci/ceph:5c1cdc3c470dae78e91a0ed2bcf13509a046d301 shell -c /etc/ceph/ceph.conf -k /etc/ceph/ceph.client.admin.keyring --fsid 6b15370c-780f-11ef-baf6-efdc52797490 -- bash -c 'ceph orch ls | grep '"'"'^osd.all-available-devices '"'"'' 2024-09-21T12:00:52.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:52 smithi195 bash[25267]: audit 2024-09-21T12:00:50.842854+0000 mgr.smithi078.aqnwdz (mgr.14203) 368 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:52.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:52 smithi195 bash[25267]: audit 2024-09-21T12:00:50.842854+0000 mgr.smithi078.aqnwdz (mgr.14203) 368 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:52.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:52 smithi195 bash[25267]: audit 2024-09-21T12:00:51.929055+0000 mon.smithi078 (mon.0) 956 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:52.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:52 smithi195 bash[25267]: audit 2024-09-21T12:00:51.929055+0000 mon.smithi078 (mon.0) 956 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:52.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:52 smithi195 bash[25267]: audit 2024-09-21T12:00:51.938035+0000 mon.smithi078 (mon.0) 957 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:52.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:52 smithi195 bash[25267]: audit 2024-09-21T12:00:51.938035+0000 mon.smithi078 (mon.0) 957 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:52.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:52 smithi078 bash[20010]: audit 2024-09-21T12:00:50.842854+0000 mgr.smithi078.aqnwdz (mgr.14203) 368 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:52.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:52 smithi078 bash[20010]: audit 2024-09-21T12:00:50.842854+0000 mgr.smithi078.aqnwdz (mgr.14203) 368 : audit [DBG] from='client.14718 -' entity='client.admin' cmd=[{"prefix": "orch device ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:52.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:52 smithi078 bash[20010]: audit 2024-09-21T12:00:51.929055+0000 mon.smithi078 (mon.0) 956 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:52.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:52 smithi078 bash[20010]: audit 2024-09-21T12:00:51.929055+0000 mon.smithi078 (mon.0) 956 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:52.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:52 smithi078 bash[20010]: audit 2024-09-21T12:00:51.938035+0000 mon.smithi078 (mon.0) 957 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:52.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:52 smithi078 bash[20010]: audit 2024-09-21T12:00:51.938035+0000 mon.smithi078 (mon.0) 957 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: cluster 2024-09-21T12:00:51.552800+0000 mgr.smithi078.aqnwdz (mgr.14203) 369 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:53.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: cluster 2024-09-21T12:00:51.552800+0000 mgr.smithi078.aqnwdz (mgr.14203) 369 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:53.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.856187+0000 mon.smithi078 (mon.0) 958 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.856187+0000 mon.smithi078 (mon.0) 958 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.861861+0000 mon.smithi078 (mon.0) 959 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.861861+0000 mon.smithi078 (mon.0) 959 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.862751+0000 mon.smithi078 (mon.0) 960 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.862751+0000 mon.smithi078 (mon.0) 960 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.863409+0000 mon.smithi078 (mon.0) 961 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.863409+0000 mon.smithi078 (mon.0) 961 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.867688+0000 mon.smithi078 (mon.0) 962 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.867688+0000 mon.smithi078 (mon.0) 962 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.870224+0000 mon.smithi078 (mon.0) 963 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:53.368 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:53 smithi195 bash[25267]: audit 2024-09-21T12:00:52.870224+0000 mon.smithi078 (mon.0) 963 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: cluster 2024-09-21T12:00:51.552800+0000 mgr.smithi078.aqnwdz (mgr.14203) 369 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: cluster 2024-09-21T12:00:51.552800+0000 mgr.smithi078.aqnwdz (mgr.14203) 369 : cluster [DBG] pgmap v283: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.856187+0000 mon.smithi078 (mon.0) 958 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.856187+0000 mon.smithi078 (mon.0) 958 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.861861+0000 mon.smithi078 (mon.0) 959 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.861861+0000 mon.smithi078 (mon.0) 959 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.862751+0000 mon.smithi078 (mon.0) 960 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.862751+0000 mon.smithi078 (mon.0) 960 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "config generate-minimal-conf"} : dispatch 2024-09-21T12:00:53.404 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.863409+0000 mon.smithi078 (mon.0) 961 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:53.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.863409+0000 mon.smithi078 (mon.0) 961 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "auth get", "entity": "client.admin"} : dispatch 2024-09-21T12:00:53.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.867688+0000 mon.smithi078 (mon.0) 962 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.867688+0000 mon.smithi078 (mon.0) 962 : audit [INF] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' 2024-09-21T12:00:53.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.870224+0000 mon.smithi078 (mon.0) 963 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:53.405 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:53 smithi078 bash[20010]: audit 2024-09-21T12:00:52.870224+0000 mon.smithi078 (mon.0) 963 : audit [DBG] from='mgr.14203 172.21.15.78:0/1774918056' entity='mgr.smithi078.aqnwdz' cmd={"prefix": "osd tree", "states": ["destroyed"], "format": "json"} : dispatch 2024-09-21T12:00:55.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:55 smithi195 bash[25267]: cluster 2024-09-21T12:00:53.554124+0000 mgr.smithi078.aqnwdz (mgr.14203) 370 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:55.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:55 smithi195 bash[25267]: cluster 2024-09-21T12:00:53.554124+0000 mgr.smithi078.aqnwdz (mgr.14203) 370 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:55.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:55 smithi078 bash[20010]: cluster 2024-09-21T12:00:53.554124+0000 mgr.smithi078.aqnwdz (mgr.14203) 370 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:55.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:55 smithi078 bash[20010]: cluster 2024-09-21T12:00:53.554124+0000 mgr.smithi078.aqnwdz (mgr.14203) 370 : cluster [DBG] pgmap v284: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:55.499 INFO:teuthology.orchestra.run.smithi078.stderr:Inferring config /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/mon.smithi078/config 2024-09-21T12:00:57.098 INFO:teuthology.orchestra.run.smithi078.stdout:osd.all-available-devices 8 5s ago 7m * 2024-09-21T12:00:57.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:57 smithi195 bash[25267]: cluster 2024-09-21T12:00:55.555364+0000 mgr.smithi078.aqnwdz (mgr.14203) 371 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:57.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:57 smithi195 bash[25267]: cluster 2024-09-21T12:00:55.555364+0000 mgr.smithi078.aqnwdz (mgr.14203) 371 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:57.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:57 smithi078 bash[20010]: cluster 2024-09-21T12:00:55.555364+0000 mgr.smithi078.aqnwdz (mgr.14203) 371 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:57.403 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:57 smithi078 bash[20010]: cluster 2024-09-21T12:00:55.555364+0000 mgr.smithi078.aqnwdz (mgr.14203) 371 : cluster [DBG] pgmap v285: 225 pgs: 225 active+clean; 583 KiB data, 255 MiB used, 715 GiB / 715 GiB avail 2024-09-21T12:00:57.778 DEBUG:teuthology.run_tasks:Unwinding manager vip 2024-09-21T12:00:57.788 INFO:tasks.vip:Removing 10.0.15.78 (and any VIPs) on smithi078.front.sepia.ceph.com iface enp3s0f1... 2024-09-21T12:00:57.788 DEBUG:teuthology.orchestra.run.smithi078:> sudo ip addr del 10.0.15.78/16 dev enp3s0f1 2024-09-21T12:00:57.802 DEBUG:teuthology.orchestra.run.smithi078:> sudo ip addr del 10.0.31.78/16 dev enp3s0f1 2024-09-21T12:00:57.856 INFO:teuthology.orchestra.run.smithi078.stderr:RTNETLINK answers: Cannot assign requested address 2024-09-21T12:00:57.857 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-21T12:00:57.858 INFO:tasks.vip:Removing 10.0.15.195 (and any VIPs) on smithi195.front.sepia.ceph.com iface enp3s0f1... 2024-09-21T12:00:57.858 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip addr del 10.0.15.195/16 dev enp3s0f1 2024-09-21T12:00:57.874 DEBUG:teuthology.orchestra.run.smithi195:> sudo ip addr del 10.0.31.78/16 dev enp3s0f1 2024-09-21T12:00:57.927 INFO:teuthology.orchestra.run.smithi195.stderr:RTNETLINK answers: Cannot assign requested address 2024-09-21T12:00:57.928 DEBUG:teuthology.orchestra.run:got remote process result: 2 2024-09-21T12:00:57.929 DEBUG:teuthology.run_tasks:Unwinding manager cephadm 2024-09-21T12:00:57.939 INFO:tasks.cephadm:Teardown begin 2024-09-21T12:00:57.939 DEBUG:teuthology.orchestra.run.smithi078:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-21T12:00:57.953 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-21T12:00:57.983 INFO:tasks.cephadm:Cleaning up testdir ceph.* files... 2024-09-21T12:00:57.983 DEBUG:teuthology.orchestra.run.smithi078:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-21T12:00:58.002 DEBUG:teuthology.orchestra.run.smithi195:> rm -f /home/ubuntu/cephtest/seed.ceph.conf /home/ubuntu/cephtest/ceph.pub 2024-09-21T12:00:58.031 INFO:tasks.cephadm:Stopping all daemons... 2024-09-21T12:00:58.032 INFO:tasks.cephadm.mon.smithi078:Stopping mon.smithi078... 2024-09-21T12:00:58.032 DEBUG:teuthology.orchestra.run.smithi078:> sudo systemctl stop ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi078 2024-09-21T12:00:58.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:58 smithi078 systemd[1]: Stopping Ceph mon.smithi078 for 6b15370c-780f-11ef-baf6-efdc52797490... 2024-09-21T12:00:58.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:58 smithi078 bash[20010]: audit 2024-09-21T12:00:57.070103+0000 mgr.smithi078.aqnwdz (mgr.14203) 372 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:58.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:58 smithi078 bash[20010]: audit 2024-09-21T12:00:57.070103+0000 mgr.smithi078.aqnwdz (mgr.14203) 372 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:58.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:58 smithi078 bash[20010]: debug 2024-09-21T12:00:58.195+0000 7f8f70be9640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi078 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-21T12:00:58.312 INFO:journalctl@ceph.mon.smithi078.smithi078.stdout:Sep 21 12:00:58 smithi078 bash[20010]: debug 2024-09-21T12:00:58.195+0000 7f8f70be9640 -1 mon.smithi078@0(leader) e2 *** Got Signal Terminated *** 2024-09-21T12:00:58.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:58 smithi195 bash[25267]: audit 2024-09-21T12:00:57.070103+0000 mgr.smithi078.aqnwdz (mgr.14203) 372 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:58.367 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:58 smithi195 bash[25267]: audit 2024-09-21T12:00:57.070103+0000 mgr.smithi078.aqnwdz (mgr.14203) 372 : audit [DBG] from='client.14722 -' entity='client.admin' cmd=[{"prefix": "orch ls", "target": ["mon-mgr", ""]}]: dispatch 2024-09-21T12:00:59.086 DEBUG:teuthology.orchestra.run.smithi078:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi078.service' 2024-09-21T12:00:59.122 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-21T12:00:59.122 INFO:tasks.cephadm.mon.smithi078:Stopped mon.smithi078 2024-09-21T12:00:59.123 INFO:tasks.cephadm.mon.smithi195:Stopping mon.smithi195... 2024-09-21T12:00:59.123 DEBUG:teuthology.orchestra.run.smithi195:> sudo systemctl stop ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi195 2024-09-21T12:00:59.440 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:59 smithi195 systemd[1]: Stopping Ceph mon.smithi195 for 6b15370c-780f-11ef-baf6-efdc52797490... 2024-09-21T12:00:59.441 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:59 smithi195 bash[25267]: debug 2024-09-21T12:00:59.280+0000 7f575f4a6640 -1 received signal: Terminated from /sbin/docker-init -- /usr/bin/ceph-mon -n mon.smithi195 -f --setuser ceph --setgroup ceph --default-log-to-file=false --default-log-to-stderr=true --default-log-stderr-prefix=debug --default-mon-cluster-log-to-file=false --default-mon-cluster-log-to-stderr=true (PID: 1) UID: 0 2024-09-21T12:00:59.441 INFO:journalctl@ceph.mon.smithi195.smithi195.stdout:Sep 21 12:00:59 smithi195 bash[25267]: debug 2024-09-21T12:00:59.280+0000 7f575f4a6640 -1 mon.smithi195@1(peon) e2 *** Got Signal Terminated *** 2024-09-21T12:01:00.257 DEBUG:teuthology.orchestra.run.smithi195:> sudo pkill -f 'journalctl -f -n 0 -u ceph-6b15370c-780f-11ef-baf6-efdc52797490@mon.smithi195.service' 2024-09-21T12:01:00.292 DEBUG:teuthology.orchestra.run:got remote process result: None 2024-09-21T12:01:00.292 INFO:tasks.cephadm.mon.smithi195:Stopped mon.smithi195 2024-09-21T12:01:00.293 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6b15370c-780f-11ef-baf6-efdc52797490 --force --keep-logs 2024-09-21T12:01:00.478 INFO:teuthology.orchestra.run.smithi078.stdout:Deleting cluster with fsid: 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T12:01:58.310 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6b15370c-780f-11ef-baf6-efdc52797490 --force --keep-logs 2024-09-21T12:01:58.492 INFO:teuthology.orchestra.run.smithi195.stdout:Deleting cluster with fsid: 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T12:02:53.482 DEBUG:teuthology.orchestra.run.smithi078:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-21T12:02:53.496 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f /etc/ceph/ceph.conf /etc/ceph/ceph.client.admin.keyring 2024-09-21T12:02:53.508 INFO:tasks.cephadm:Archiving crash dumps... 2024-09-21T12:02:53.510 DEBUG:teuthology.misc:Transferring archived files from smithi078:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/crash to /home/teuthworker/archive/gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi/7913879/remote/smithi078/crash 2024-09-21T12:02:53.510 DEBUG:teuthology.orchestra.run.smithi078:> sudo tar c -f - -C /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/crash -- . 2024-09-21T12:02:53.548 INFO:teuthology.orchestra.run.smithi078.stderr:tar: /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/crash: Cannot open: No such file or directory 2024-09-21T12:02:53.548 INFO:teuthology.orchestra.run.smithi078.stderr:tar: Error is not recoverable: exiting now 2024-09-21T12:02:53.550 DEBUG:teuthology.misc:Transferring archived files from smithi195:/var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/crash to /home/teuthworker/archive/gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi/7913879/remote/smithi195/crash 2024-09-21T12:02:53.551 DEBUG:teuthology.orchestra.run.smithi195:> sudo tar c -f - -C /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/crash -- . 2024-09-21T12:02:53.561 INFO:teuthology.orchestra.run.smithi195.stderr:tar: /var/lib/ceph/6b15370c-780f-11ef-baf6-efdc52797490/crash: Cannot open: No such file or directory 2024-09-21T12:02:53.561 INFO:teuthology.orchestra.run.smithi195.stderr:tar: Error is not recoverable: exiting now 2024-09-21T12:02:53.562 INFO:tasks.cephadm:Checking cluster log for badness... 2024-09-21T12:02:53.563 DEBUG:teuthology.orchestra.run.smithi078:> sudo egrep '\[ERR\]|\[WRN\]|\[SEC\]' /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.log | egrep CEPHADM_ | egrep -v '\(MDS_ALL_DOWN\)' | egrep -v '\(MDS_UP_LESS_THAN_MAX\)' | egrep -v CEPHADM_DAEMON_PLACE_FAIL | egrep -v CEPHADM_FAILED_DAEMON | head -n 1 2024-09-21T12:02:53.607 INFO:tasks.cephadm:Compressing logs... 2024-09-21T12:02:53.607 DEBUG:teuthology.orchestra.run.smithi078:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-21T12:02:53.654 DEBUG:teuthology.orchestra.run.smithi195:> time sudo find /var/log/ceph /var/log/rbd-target-api -name '*.log' -print0 | sudo xargs --max-args=1 --max-procs=0 --verbose -0 --no-run-if-empty -- gzip -5 --verbose -- 2024-09-21T12:02:53.663 INFO:teuthology.orchestra.run.smithi078.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-21T12:02:53.667 INFO:teuthology.orchestra.run.smithi195.stderr:find: '/var/log/rbd-target-api': No such file or directory 2024-09-21T12:02:53.673 INFO:teuthology.orchestra.run.smithi078.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-21T12:02:53.673 INFO:teuthology.orchestra.run.smithi078.stderr:gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi078.vfczdr.log 2024-09-21T12:02:53.674 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/cephadm.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mgr.smithi078.aqnwdz.log 2024-09-21T12:02:53.674 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi078.vfczdr.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mon.smithi078.log 2024-09-21T12:02:53.675 INFO:teuthology.orchestra.run.smithi078.stderr: 71.0% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi078.vfczdr.log.gz 2024-09-21T12:02:53.676 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/cephadm.log 2024-09-21T12:02:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.0.log 2024-09-21T12:02:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.2.log 2024-09-21T12:02:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/cephadm.log: /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.0.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.6.log 2024-09-21T12:02:53.677 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.2.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mgr.smithi195.wpaqjn.log 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr:gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.7.log 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mgr.smithi078.aqnwdz.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi078.log 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mon.smithi078.log: /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.7.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.cephadm.log 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi078.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.3.log 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ops-log-ceph-client.rgw.foorgw.smithi078.vfczdr.log 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.3.log: 94.1% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi078.log.gz 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr:gzip 84.6% -5 --verbose -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.cephadm.log.gz -- 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr: /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.5.log 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ops-log-ceph-client.rgw.foorgw.smithi078.vfczdr.log: 76.9%gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.1.log 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr: -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ops-log-ceph-client.rgw.foorgw.smithi078.vfczdr.log.gz 2024-09-21T12:02:53.679 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.5.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.log 2024-09-21T12:02:53.680 INFO:teuthology.orchestra.run.smithi078.stderr:gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-volume.log 2024-09-21T12:02:53.684 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.6.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.cephadm.log 2024-09-21T12:02:53.684 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mgr.smithi195.wpaqjn.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi195.rsgiag.log 2024-09-21T12:02:53.684 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.cephadm.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.log 2024-09-21T12:02:53.684 INFO:teuthology.orchestra.run.smithi195.stderr: 83.7% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.cephadm.log.gz 2024-09-21T12:02:53.684 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi195.rsgiag.log: gzip -5 --verbose 63.9% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.rgw.foorgw.smithi195.rsgiag.log.gz 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr: -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-volume.log 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi195.log 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr: 89.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-volume.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.audit.log 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr: 87.6% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.log.gz 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi195.log: gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mon.smithi195.log 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr: 30.5% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-client.ceph-exporter.smithi195.log.gz 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr:gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.4.log 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.audit.log: /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mon.smithi195.log: 91.2% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.audit.log.gz 2024-09-21T12:02:53.685 INFO:teuthology.orchestra.run.smithi195.stderr: 91.7% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mgr.smithi195.wpaqjn.log.gz 2024-09-21T12:02:53.686 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.1.log: /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.log: 87.8% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.log.gz 2024-09-21T12:02:53.686 INFO:teuthology.orchestra.run.smithi078.stderr:gzip -5 --verbose -- /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.audit.log 2024-09-21T12:02:53.698 INFO:teuthology.orchestra.run.smithi195.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.4.log: 91.8% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-volume.log.gz 2024-09-21T12:02:53.700 INFO:teuthology.orchestra.run.smithi078.stderr:/var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-volume.log: /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.audit.log: 91.1% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph.audit.log.gz 2024-09-21T12:02:53.703 INFO:teuthology.orchestra.run.smithi078.stderr: 91.8% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-volume.log.gz 2024-09-21T12:02:53.709 INFO:teuthology.orchestra.run.smithi078.stderr: 90.6% -- replaced with /var/log/ceph/cephadm.log.gz 2024-09-21T12:02:53.823 INFO:teuthology.orchestra.run.smithi195.stderr: 93.0% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mon.smithi195.log.gz 2024-09-21T12:02:53.874 INFO:teuthology.orchestra.run.smithi078.stderr: 89.4% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mgr.smithi078.aqnwdz.log.gz 2024-09-21T12:02:53.935 INFO:teuthology.orchestra.run.smithi078.stderr: 93.6% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.7.log.gz 2024-09-21T12:02:53.949 INFO:teuthology.orchestra.run.smithi078.stderr: 93.5% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.5.log.gz 2024-09-21T12:02:53.985 INFO:teuthology.orchestra.run.smithi195.stderr: 93.6% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.4.log.gz 2024-09-21T12:02:53.998 INFO:teuthology.orchestra.run.smithi195.stderr: 93.5% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.2.log.gz 2024-09-21T12:02:54.000 INFO:teuthology.orchestra.run.smithi195.stderr: 93.4% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.6.log.gz 2024-09-21T12:02:54.052 INFO:teuthology.orchestra.run.smithi078.stderr: 93.6% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.1.log.gz 2024-09-21T12:02:54.075 INFO:teuthology.orchestra.run.smithi078.stderr: 91.3% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-mon.smithi078.log.gz 2024-09-21T12:02:54.079 INFO:teuthology.orchestra.run.smithi195.stderr: 93.6% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.0.log.gz 2024-09-21T12:02:54.080 INFO:teuthology.orchestra.run.smithi195.stderr: 2024-09-21T12:02:54.080 INFO:teuthology.orchestra.run.smithi195.stderr:real 0m0.422s 2024-09-21T12:02:54.081 INFO:teuthology.orchestra.run.smithi195.stderr:user 0m1.474s 2024-09-21T12:02:54.081 INFO:teuthology.orchestra.run.smithi195.stderr:sys 0m0.083s 2024-09-21T12:02:54.137 INFO:teuthology.orchestra.run.smithi078.stderr: 93.6% -- replaced with /var/log/ceph/6b15370c-780f-11ef-baf6-efdc52797490/ceph-osd.3.log.gz 2024-09-21T12:02:54.138 INFO:teuthology.orchestra.run.smithi078.stderr: 2024-09-21T12:02:54.138 INFO:teuthology.orchestra.run.smithi078.stderr:real 0m0.482s 2024-09-21T12:02:54.138 INFO:teuthology.orchestra.run.smithi078.stderr:user 0m1.965s 2024-09-21T12:02:54.139 INFO:teuthology.orchestra.run.smithi078.stderr:sys 0m0.084s 2024-09-21T12:02:54.139 INFO:tasks.cephadm:Archiving logs... 2024-09-21T12:02:54.139 DEBUG:teuthology.misc:Transferring archived files from smithi078:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi/7913879/remote/smithi078/log 2024-09-21T12:02:54.140 DEBUG:teuthology.orchestra.run.smithi078:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-21T12:02:54.402 DEBUG:teuthology.misc:Transferring archived files from smithi195:/var/log/ceph to /home/teuthworker/archive/gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi/7913879/remote/smithi195/log 2024-09-21T12:02:54.403 DEBUG:teuthology.orchestra.run.smithi195:> sudo tar c -f - -C /var/log/ceph -- . 2024-09-21T12:02:54.584 INFO:tasks.cephadm:Removing cluster... 2024-09-21T12:02:54.584 DEBUG:teuthology.orchestra.run.smithi078:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6b15370c-780f-11ef-baf6-efdc52797490 --force 2024-09-21T12:02:54.762 INFO:teuthology.orchestra.run.smithi078.stdout:Deleting cluster with fsid: 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T12:02:55.889 DEBUG:teuthology.orchestra.run.smithi195:> sudo /home/ubuntu/cephtest/cephadm rm-cluster --fsid 6b15370c-780f-11ef-baf6-efdc52797490 --force 2024-09-21T12:02:56.073 INFO:teuthology.orchestra.run.smithi195.stdout:Deleting cluster with fsid: 6b15370c-780f-11ef-baf6-efdc52797490 2024-09-21T12:02:57.202 INFO:tasks.cephadm:Removing cephadm ... 2024-09-21T12:02:57.202 DEBUG:teuthology.orchestra.run.smithi078:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-21T12:02:57.208 DEBUG:teuthology.orchestra.run.smithi195:> rm -rf /home/ubuntu/cephtest/cephadm 2024-09-21T12:02:57.213 INFO:tasks.cephadm:Teardown complete 2024-09-21T12:02:57.213 DEBUG:teuthology.run_tasks:Unwinding manager nvme_loop 2024-09-21T12:02:57.223 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi078:/dev/vg_nvme/lv_1... 2024-09-21T12:02:57.223 DEBUG:teuthology.orchestra.run.smithi078:> sudo nvme disconnect -n lv_1 2024-09-21T12:02:57.541 INFO:teuthology.orchestra.run.smithi078.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-21T12:02:57.543 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:02:57.543 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi078:/dev/vg_nvme/lv_2... 2024-09-21T12:02:57.544 DEBUG:teuthology.orchestra.run.smithi078:> sudo nvme disconnect -n lv_2 2024-09-21T12:02:57.813 INFO:teuthology.orchestra.run.smithi078.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-21T12:02:57.815 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:02:57.815 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi078:/dev/vg_nvme/lv_3... 2024-09-21T12:02:57.815 DEBUG:teuthology.orchestra.run.smithi078:> sudo nvme disconnect -n lv_3 2024-09-21T12:02:58.105 INFO:teuthology.orchestra.run.smithi078.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-21T12:02:58.107 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:02:58.107 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi078:/dev/vg_nvme/lv_4... 2024-09-21T12:02:58.107 DEBUG:teuthology.orchestra.run.smithi078:> sudo nvme disconnect -n lv_4 2024-09-21T12:02:58.397 INFO:teuthology.orchestra.run.smithi078.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-21T12:02:58.399 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:02:58.399 DEBUG:teuthology.orchestra.run.smithi078:> set -ex 2024-09-21T12:02:58.399 DEBUG:teuthology.orchestra.run.smithi078:> sudo dd of=/scratch_devs 2024-09-21T12:02:58.412 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_1... 2024-09-21T12:02:58.413 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_1 2024-09-21T12:02:58.691 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_1 disconnected 1 controller(s) 2024-09-21T12:02:58.692 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:02:58.692 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_2... 2024-09-21T12:02:58.693 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_2 2024-09-21T12:02:58.947 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_2 disconnected 1 controller(s) 2024-09-21T12:02:58.948 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:02:58.949 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_3... 2024-09-21T12:02:58.949 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_3 2024-09-21T12:02:59.211 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_3 disconnected 1 controller(s) 2024-09-21T12:02:59.212 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:02:59.212 INFO:tasks.nvme_loop:Disconnecting nvme_loop smithi195:/dev/vg_nvme/lv_4... 2024-09-21T12:02:59.213 DEBUG:teuthology.orchestra.run.smithi195:> sudo nvme disconnect -n lv_4 2024-09-21T12:02:59.479 INFO:teuthology.orchestra.run.smithi195.stdout:NQN:lv_4 disconnected 1 controller(s) 2024-09-21T12:02:59.480 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:02:59.480 DEBUG:teuthology.orchestra.run.smithi195:> set -ex 2024-09-21T12:02:59.480 DEBUG:teuthology.orchestra.run.smithi195:> sudo dd of=/scratch_devs 2024-09-21T12:02:59.494 DEBUG:teuthology.run_tasks:Unwinding manager clock 2024-09-21T12:02:59.504 INFO:teuthology.task.clock:Checking final clock skew... 2024-09-21T12:02:59.504 DEBUG:teuthology.orchestra.run.smithi078:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-21T12:02:59.506 DEBUG:teuthology.orchestra.run.smithi195:> PATH=/usr/bin:/usr/sbin ntpq -p || PATH=/usr/bin:/usr/sbin chronyc sources || true 2024-09-21T12:02:59.518 INFO:teuthology.orchestra.run.smithi078.stdout: remote refid st t when poll reach delay offset jitter 2024-09-21T12:02:59.518 INFO:teuthology.orchestra.run.smithi078.stdout:============================================================================== 2024-09-21T12:02:59.518 INFO:teuthology.orchestra.run.smithi078.stdout:+hv01.front.sepi 67.205.162.81 3 u 20 64 377 0.083 -2.498 1.283 2024-09-21T12:02:59.519 INFO:teuthology.orchestra.run.smithi078.stdout:*hv02.front.sepi 63.231.80.2 3 u 17 64 377 0.097 -2.753 1.111 2024-09-21T12:02:59.519 INFO:teuthology.orchestra.run.smithi078.stdout:+hv03.front.sepi 74.6.168.72 3 u 27 64 377 0.091 -1.776 0.900 2024-09-21T12:02:59.519 INFO:teuthology.orchestra.run.smithi078.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-21T12:02:59.550 INFO:teuthology.orchestra.run.smithi195.stdout: remote refid st t when poll reach delay offset jitter 2024-09-21T12:02:59.550 INFO:teuthology.orchestra.run.smithi195.stdout:============================================================================== 2024-09-21T12:02:59.550 INFO:teuthology.orchestra.run.smithi195.stdout:*hv01.front.sepi 67.205.162.81 3 u 20 64 377 0.074 -1.195 1.113 2024-09-21T12:02:59.550 INFO:teuthology.orchestra.run.smithi195.stdout:+hv02.front.sepi 63.231.80.2 3 u 22 64 377 0.094 -2.495 1.166 2024-09-21T12:02:59.550 INFO:teuthology.orchestra.run.smithi195.stdout:+hv03.front.sepi 74.6.168.72 3 u 17 64 377 0.090 -0.599 1.696 2024-09-21T12:02:59.550 INFO:teuthology.orchestra.run.smithi195.stdout: hv04.front.sepi .INIT. 16 u - 256 0 0.000 +0.000 0.000 2024-09-21T12:02:59.551 DEBUG:teuthology.run_tasks:Unwinding manager ansible.cephlab 2024-09-21T12:02:59.561 INFO:teuthology.task.ansible:Skipping ansible cleanup... 2024-09-21T12:02:59.561 DEBUG:teuthology.run_tasks:Unwinding manager selinux 2024-09-21T12:02:59.571 DEBUG:teuthology.run_tasks:Unwinding manager pcp 2024-09-21T12:02:59.579 DEBUG:teuthology.run_tasks:Unwinding manager internal.timer 2024-09-21T12:02:59.588 INFO:teuthology.task.internal:Duration was 1332.314226 seconds 2024-09-21T12:02:59.588 DEBUG:teuthology.run_tasks:Unwinding manager internal.syslog 2024-09-21T12:02:59.598 INFO:teuthology.task.internal.syslog:Shutting down syslog monitoring... 2024-09-21T12:02:59.598 DEBUG:teuthology.orchestra.run.smithi078:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-21T12:02:59.600 DEBUG:teuthology.orchestra.run.smithi195:> sudo rm -f -- /etc/rsyslog.d/80-cephtest.conf && sudo service rsyslog restart 2024-09-21T12:02:59.637 INFO:teuthology.task.internal.syslog:Checking logs for errors... 2024-09-21T12:02:59.637 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi078.front.sepia.ceph.com 2024-09-21T12:02:59.638 DEBUG:teuthology.orchestra.run.smithi078:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-21T12:02:59.690 DEBUG:teuthology.task.internal.syslog:Checking ubuntu@smithi195.front.sepia.ceph.com 2024-09-21T12:02:59.690 DEBUG:teuthology.orchestra.run.smithi195:> egrep --binary-files=text '\bBUG\b|\bINFO\b|\bDEADLOCK\b' /home/ubuntu/cephtest/archive/syslog/kern.log | grep -v 'task .* blocked for more than .* seconds' | grep -v 'lockdep is turned off' | grep -v 'trying to register non-static key' | grep -v 'DEBUG: fsize' | grep -v CRON | grep -v 'BUG: bad unlock balance detected' | grep -v 'inconsistent lock state' | grep -v '*** DEADLOCK ***' | grep -v 'INFO: possible irq lock inversion dependency detected' | grep -v 'INFO: NMI handler (perf_event_nmi_handler) took too long to run' | grep -v 'INFO: recovery required on readonly' | grep -v 'ceph-create-keys: INFO' | grep -v INFO:ceph-create-keys | grep -v 'Loaded datasource DataSourceOpenStack' | grep -v 'container-storage-setup: INFO: Volume group backing root filesystem could not be determined' | egrep -v '\bsalt-master\b|\bsalt-minion\b|\bsalt-api\b' | grep -v ceph-crash | egrep -v '\btcmu-runner\b.*\bINFO\b' | head -n 1 2024-09-21T12:02:59.700 INFO:teuthology.task.internal.syslog:Compressing syslogs... 2024-09-21T12:02:59.700 DEBUG:teuthology.orchestra.run.smithi078:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-21T12:02:59.738 DEBUG:teuthology.orchestra.run.smithi195:> find /home/ubuntu/cephtest/archive/syslog -name '*.log' -print0 | sudo xargs -0 --no-run-if-empty -- gzip -- 2024-09-21T12:02:59.788 INFO:teuthology.task.internal.syslog:Gathering journactl -b0... 2024-09-21T12:02:59.788 DEBUG:teuthology.orchestra.run.smithi078:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-21T12:02:59.790 DEBUG:teuthology.orchestra.run.smithi195:> sudo journalctl -b0 | gzip -9 > /home/ubuntu/cephtest/archive/syslog/journalctl-b0.gz 2024-09-21T12:02:59.924 DEBUG:teuthology.run_tasks:Unwinding manager internal.sudo 2024-09-21T12:02:59.936 INFO:teuthology.task.internal:Restoring /etc/sudoers... 2024-09-21T12:02:59.936 DEBUG:teuthology.orchestra.run.smithi078:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-21T12:02:59.948 DEBUG:teuthology.orchestra.run.smithi195:> sudo mv -f /etc/sudoers.orig.teuthology /etc/sudoers 2024-09-21T12:02:59.960 DEBUG:teuthology.run_tasks:Unwinding manager internal.coredump 2024-09-21T12:02:59.970 DEBUG:teuthology.orchestra.run.smithi078:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-21T12:02:59.990 DEBUG:teuthology.orchestra.run.smithi195:> sudo sysctl -w kernel.core_pattern=core && sudo bash -c 'for f in `find /home/ubuntu/cephtest/archive/coredump -type f`; do file $f | grep -q systemd-sysusers && rm $f || true ; done' && rmdir --ignore-fail-on-non-empty -- /home/ubuntu/cephtest/archive/coredump 2024-09-21T12:02:59.999 INFO:teuthology.orchestra.run.smithi078.stdout:kernel.core_pattern = core 2024-09-21T12:03:00.012 INFO:teuthology.orchestra.run.smithi195.stdout:kernel.core_pattern = core 2024-09-21T12:03:00.045 DEBUG:teuthology.orchestra.run.smithi078:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-21T12:03:00.077 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:03:00.077 DEBUG:teuthology.orchestra.run.smithi195:> test -e /home/ubuntu/cephtest/archive/coredump 2024-09-21T12:03:00.090 DEBUG:teuthology.orchestra.run:got remote process result: 1 2024-09-21T12:03:00.090 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive 2024-09-21T12:03:00.101 INFO:teuthology.task.internal:Transferring archived files... 2024-09-21T12:03:00.102 DEBUG:teuthology.misc:Transferring archived files from smithi078:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi/7913879/remote/smithi078 2024-09-21T12:03:00.102 DEBUG:teuthology.orchestra.run.smithi078:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-21T12:03:00.145 DEBUG:teuthology.misc:Transferring archived files from smithi195:/home/ubuntu/cephtest/archive to /home/teuthworker/archive/gabrioux-2024-09-21_10:07:29-orch:cephadm-wip-guits-main-2024-09-21-0813-distro-default-smithi/7913879/remote/smithi195 2024-09-21T12:03:00.145 DEBUG:teuthology.orchestra.run.smithi195:> sudo tar c -f - -C /home/ubuntu/cephtest/archive -- . 2024-09-21T12:03:00.167 INFO:teuthology.task.internal:Removing archive directory... 2024-09-21T12:03:00.167 DEBUG:teuthology.orchestra.run.smithi078:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-21T12:03:00.186 DEBUG:teuthology.orchestra.run.smithi195:> rm -rf -- /home/ubuntu/cephtest/archive 2024-09-21T12:03:00.211 DEBUG:teuthology.run_tasks:Unwinding manager internal.archive_upload 2024-09-21T12:03:00.224 INFO:teuthology.task.internal:Not uploading archives. 2024-09-21T12:03:00.224 DEBUG:teuthology.run_tasks:Unwinding manager internal.base 2024-09-21T12:03:00.235 INFO:teuthology.task.internal:Tidying up after the test... 2024-09-21T12:03:00.235 DEBUG:teuthology.orchestra.run.smithi078:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-21T12:03:00.237 DEBUG:teuthology.orchestra.run.smithi195:> find /home/ubuntu/cephtest -ls ; rmdir -- /home/ubuntu/cephtest 2024-09-21T12:03:00.241 INFO:teuthology.orchestra.run.smithi078.stdout: 658638 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 21 12:03 /home/ubuntu/cephtest 2024-09-21T12:03:00.259 INFO:teuthology.orchestra.run.smithi195.stdout: 658623 4 drwxr-xr-x 2 ubuntu ubuntu 4096 Sep 21 12:03 /home/ubuntu/cephtest 2024-09-21T12:03:00.261 DEBUG:teuthology.run_tasks:Unwinding manager kernel 2024-09-21T12:03:00.271 DEBUG:teuthology.run_tasks:Unwinding manager console_log 2024-09-21T12:03:00.295 INFO:teuthology.run:Summary data: description: orch:cephadm/smoke-roleless/{0-distro/ubuntu_22.04 0-nvme-loop 1-start 2-services/nfs-ingress-rgw-bucket 3-final} duration: 1332.3142261505127 owner: scheduled_gabrioux@teuthology success: true 2024-09-21T12:03:00.295 DEBUG:teuthology.report:Pushing job info to https://paddles.front.sepia.ceph.com/ 2024-09-21T12:03:00.381 INFO:teuthology.run:pass