diff --git a/.builders/inputs_hash.py b/.builders/inputs_hash.py index 6525da34da409..483ca1616ef1f 100644 --- a/.builders/inputs_hash.py +++ b/.builders/inputs_hash.py @@ -366,7 +366,11 @@ def status(targets_file: Path) -> dict[str, str]: container_rows: list[dict[str, str]] = [] macos_rows: list[dict[str, str]] = [] any_target_stale = False + supported_architectures = {"aarch64", "x86_64"} + supported_platforms = {"linux", "windows", "macos"} for row in target_rows: + assert row["platform"] in supported_platforms, f"platform must be one of: {supported_platforms}" + assert row["arch"] in supported_architectures, f"arch must be one of: {supported_architectures}" target = f"{row['platform']}-{row['arch']}" target_dir = HERE / 'images' / target if not target_dir.is_dir(): diff --git a/.builders/tests/test_inputs_hash.py b/.builders/tests/test_inputs_hash.py index fa59e54954681..a35773a3e4f0b 100644 --- a/.builders/tests/test_inputs_hash.py +++ b/.builders/tests/test_inputs_hash.py @@ -1,4 +1,5 @@ """Tests for inputs_hash.py: hashing, pinning, status, verify-resolution, and coverage.""" + import json from pathlib import Path from unittest import mock @@ -26,14 +27,33 @@ def test_status_raises_for_unknown_target(fake_repo: Path, tmp_path: Path) -> No json.dumps([{'platform': 'nonexistent', 'arch': 'target', 'runner_os': 'ubuntu-22.04'}]), encoding='utf-8', ) - with pytest.raises(FileNotFoundError, match='Unknown builder target'): + with pytest.raises(AssertionError, match='platform must be one of:'): inputs_hash.status(bogus) +@pytest.mark.parametrize( + 'field,value', + [ + pytest.param('platform', 'linux$(touch pwned)', id="dangerous platform"), + pytest.param('arch', 'x86_64;echo pwned', id="dangerous arch"), + ], +) +def test_status_rejects_invalid_target_components(fake_repo: Path, tmp_path: Path, field: str, value: str) -> None: + """Platform and arch must use a safe character set.""" + row = {'platform': 'linux', 'arch': 'x86_64', 'runner_os': 'ubuntu-22.04'} + row[field] = value + targets = tmp_path / 'targets.json' + targets.write_text(json.dumps([row]), encoding='utf-8') + + with pytest.raises(AssertionError, match=f'{field} must be one of:'): + inputs_hash.status(targets) + + # --------------------------------------------------------------------------- # Bot-commit neutrality # --------------------------------------------------------------------------- + def test_resolution_inputs_do_not_glob_into_deps_directory() -> None: """No RESOLUTION_INPUTS or SHARED_INPUTS pattern expands to anything under .deps/. diff --git a/.deps/builder_inputs.toml b/.deps/builder_inputs.toml index b048d008bcf40..9942909b3a3db 100644 --- a/.deps/builder_inputs.toml +++ b/.deps/builder_inputs.toml @@ -11,7 +11,7 @@ # Hash inputs are defined in .builders/inputs_hash.py (SHARED_INPUTS, # RESOLUTION_INPUTS). [resolution] -hash = "760d13e44a0eba8f966d77b7400f22cb19842e3a18ba72f7feea4a59f6f5b997" +hash = "de1a22354f312917e6a8795bf61184b6b7f1dc9db24fdb0b69ec8bb01fde4612" [images] linux-aarch64 = "f183db47c9b55ef83e324c5eeb8edaba75feaa5766f695da6f4f5964668579d4" diff --git a/.deps/resolved/linux-aarch64_3.13.txt b/.deps/resolved/linux-aarch64_3.13.txt index d9e24621350a3..1e864e0504a16 100644 --- a/.deps/resolved/linux-aarch64_3.13.txt +++ b/.deps/resolved/linux-aarch64_3.13.txt @@ -1,30 +1,30 @@ aerospike @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/aerospike/aerospike-7.1.1-20260423151051-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=13e750c0fbc8fd5f41810e5b3e72be2d132124e47a148dd147352a84b90fc614 -botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260518160659-py3-none-any.whl#sha256=f1933a8ca6c1108ed23f7b01f82577327fc254e330025887fdd4ba17db03e8e2 +botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260519113047-py3-none-any.whl#sha256=f1933a8ca6c1108ed23f7b01f82577327fc254e330025887fdd4ba17db03e8e2 cm-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/cm-client/cm_client-45.0.4-20260326173357-py3-none-manylinux2014_aarch64.whl#sha256=0bbcf2766028850c26a917deef3704a096cc9ba0c25220d45ff424334d25dcd7 -confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260518160939-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=c756cf1ab55fa8224fc8735ba02fe50c4d2e80dd041a93a08966b9ee4103f4d1 -cryptography @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/cryptography/cryptography-46.0.7-20260518160942-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=90eb2a2706a126b49bd06508f5d7445b23b004feb7f7be2e6a7d44548d9aa336 +confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260519113304-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=7c79fee28b751b9314991b34f75c1b85bd82c31b9fa0561c534d13a6f35e28a8 +cryptography @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/cryptography/cryptography-46.0.7-20260519113306-cp313-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=6e65632db954aebb373d06f0e1d17df1939809abc1fbd43fbf21dbb33487fc06 ddtrace @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/ddtrace/ddtrace-3.19.5-20260417115249-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl#sha256=a4f8d07adccdd43908156ab2c143dbb6261ed9a3c43ba58a3bb6bd1b6ef94734 foundationdb @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/foundationdb/foundationdb-6.3.25-20260326173358-py3-none-manylinux2014_aarch64.whl#sha256=d34180500220db4458e57505c774de0363456d4129f0e3fe98c9e99e8eef77c2 -gssapi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/gssapi/gssapi-1.11.1-20260512160902-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=861b3cde93aec1b05a5e9ac917780dbac66d773bd427834bdf738825e559d197 -keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260518160710-py3-none-any.whl#sha256=981596c8e7346d2b46ee5ec738312b8e46b0beb29d62104ccb7c113ed9c7fbef -krb5 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/krb5/krb5-0.9.0-20260512160913-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=f6dd9d9a2d81b129b52ace318104ea9c04c1e7a5e11724aede73ba7c12f7fcac -openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260518160722-py3-none-any.whl#sha256=88abe8f44e3b8c5c25b1093de735c700aa727a7ac408e273aa855d6db6ba38bf -os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260518160735-py3-none-any.whl#sha256=758ccaa020eea0edd84bcf4123746ddd060d1dbaeef63d04d76bd2e0ae6f91d8 -pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260518160747-py2.py3-none-any.whl#sha256=1544652b80307f0b4c491bd66f58f969cb0656994e632365f90e8e044c223b4e +gssapi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/gssapi/gssapi-1.11.1-20260519113308-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=861b3cde93aec1b05a5e9ac917780dbac66d773bd427834bdf738825e559d197 +keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260519113057-py3-none-any.whl#sha256=981596c8e7346d2b46ee5ec738312b8e46b0beb29d62104ccb7c113ed9c7fbef +krb5 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/krb5/krb5-0.9.0-20260519113309-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=f6dd9d9a2d81b129b52ace318104ea9c04c1e7a5e11724aede73ba7c12f7fcac +openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260519113108-py3-none-any.whl#sha256=88abe8f44e3b8c5c25b1093de735c700aa727a7ac408e273aa855d6db6ba38bf +os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260519113118-py3-none-any.whl#sha256=758ccaa020eea0edd84bcf4123746ddd060d1dbaeef63d04d76bd2e0ae6f91d8 +pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260519113128-py2.py3-none-any.whl#sha256=1544652b80307f0b4c491bd66f58f969cb0656994e632365f90e8e044c223b4e psutil @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psutil/psutil-6.0.0-20260326173401-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=22e075e3cbc57b5da0d93f72f691746c5198ce88c5aea6fdb54186b3e8c46832 psycopg-c @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psycopg-c/psycopg_c-3.3.3-20260518161020-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=91f63a673fb68a595ab2c0a4e05178a7eacb964b154afb9cda19caae1e7e9a0b pymongo @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymongo/pymongo-4.8.0-20260415154515-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=30d8af4ef8fda85d1a865bdb254e6b2e3988f26b723eb39a4843c766371ff517 pyodbc @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pyodbc/pyodbc-5.3.0-20260415154516-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=91a4191cf30930755d82e8edd6ac861443dfb6fbbf7915753b73209038ad5ad2 -pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260518160801-py2.py3-none-any.whl#sha256=0cc4610711208cdc64361464a23d1f2dce88ec5990a12b4bdce4f13b6a169810 +pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260519113140-py2.py3-none-any.whl#sha256=0cc4610711208cdc64361464a23d1f2dce88ec5990a12b4bdce4f13b6a169810 pyvmomi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pyvmomi/pyvmomi-8.0.3.0.1-20260326173403-py2.py3-none-manylinux2014_aarch64.whl#sha256=dd71476b7308286ed4219373ca9523e4f06bfed3f5932f60e5c67d8d5a673e1e -requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260518160814-py3-none-any.whl#sha256=aae3f1743ab60955ea91e9a095d54997ea56b956bab652bf194379ef4dc6fa7f -securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260518160826-py3-none-any.whl#sha256=861ab6f8c1930e0c05915f32a34f1c4ae1d76ee542ad2b424121e3e26a9fb1dd -setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260518160838-py3-none-any.whl#sha256=b020c62c9ea6c1c3e7a29a8e385967909ceb85a77398f7fbe3c63e2abab52e87 +requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260519113151-py3-none-any.whl#sha256=aae3f1743ab60955ea91e9a095d54997ea56b956bab652bf194379ef4dc6fa7f +securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260519113201-py3-none-any.whl#sha256=861ab6f8c1930e0c05915f32a34f1c4ae1d76ee542ad2b424121e3e26a9fb1dd +setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260519113212-py3-none-any.whl#sha256=b020c62c9ea6c1c3e7a29a8e385967909ceb85a77398f7fbe3c63e2abab52e87 simplejson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/simplejson/simplejson-3.20.2-20260326173404-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=cb739020a718c2e32041a0fa0a3f79398f45c067347fe8f286c8222fa777bc5d -stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260518160839-py3-none-any.whl#sha256=b9c2fdfb8d02797f171fc63ada01759955b4bac02a7cbe63d2ad2e827e3530f6 -supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260518160851-py2.py3-none-any.whl#sha256=81d63e968a5133203a334102b8e6e72b1f5ecfc9673c1af7680f9f7e0db8d4fd -vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260518160903-py3-none-any.whl#sha256=df8d667b7bd070532a72c25f37e7259d3673c1908ae726fdfb3087d777caa9da -websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260518160916-py3-none-any.whl#sha256=b628876a9b1eed1d49f1a230bf4b1c21fa3cd9163594f9f9628c8a8b22f97e10 +stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260519113212-py3-none-any.whl#sha256=b9c2fdfb8d02797f171fc63ada01759955b4bac02a7cbe63d2ad2e827e3530f6 +supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260519113223-py2.py3-none-any.whl#sha256=81d63e968a5133203a334102b8e6e72b1f5ecfc9673c1af7680f9f7e0db8d4fd +vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260519113233-py3-none-any.whl#sha256=df8d667b7bd070532a72c25f37e7259d3673c1908ae726fdfb3087d777caa9da +websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260519113244-py3-none-any.whl#sha256=b628876a9b1eed1d49f1a230bf4b1c21fa3cd9163594f9f9628c8a8b22f97e10 annotated-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/annotated-types/annotated_types-0.7.0-py3-none-any.whl#sha256=1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 attrs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/attrs/attrs-26.1.0-py3-none-any.whl#sha256=c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309 aws-msk-iam-sasl-signer-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/aws-msk-iam-sasl-signer-python/aws_msk_iam_sasl_signer_python-1.0.2-py2.py3-none-any.whl#sha256=310eb2db9ca0ff55ed06a24212739b87533e7f1cf6f34e43aabbd97a3b21290e @@ -50,7 +50,6 @@ envier @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE} fastavro @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/fastavro/fastavro-1.12.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl#sha256=780476c23175d2ae457c52f45b9ffa9d504593499a36cd3c1929662bf5b7b14b hazelcast-python-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/hazelcast-python-client/hazelcast_python_client-5.6.0-py3-none-any.whl#sha256=e2cec409068990ca9b4381fe97160cc2375412334782bef45ab4c8fe4d10536c idna @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/idna/idna-3.15-py3-none-any.whl#sha256=048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8 -importlib-metadata @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/importlib-metadata/importlib_metadata-8.7.1-py3-none-any.whl#sha256=5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151 in-toto @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/in-toto/in_toto-2.0.0-py3-none-any.whl#sha256=eaf71733cdd5b2309b58b24169c13c24701da72baa43b7432d1dffc308e7bf32 invoke @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/invoke/invoke-3.0.3-py3-none-any.whl#sha256=f11327165e5cbb89b2ad1d88d3292b5113332c43b8553b494da435d6ec6f5053 iso8601 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/iso8601/iso8601-2.1.0-py3-none-any.whl#sha256=aac4145c4dcb66ad8b648a02830f5e2ff6c24af20f4f482689be402db2429242 @@ -68,7 +67,7 @@ mmh3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/e msal @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal/msal-1.36.0-py3-none-any.whl#sha256=36ecac30e2ff4322d956029aabce3c82301c29f0acb1ad89b94edcabb0e58ec4 msal-extensions @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal-extensions/msal_extensions-1.3.1-py3-none-any.whl#sha256=96d3de4d034504e969ac5e85bae8106c8373b5c6568e4c8fa7af2eca9dbe6bca oauthlib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/oauthlib/oauthlib-3.3.1-py3-none-any.whl#sha256=88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1 -opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.41.1-py3-none-any.whl#sha256=a22df900e75c76dc08440710e51f52f1aa6b451b429298896023e60db5b3139f +opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.42.0-py3-none-any.whl#sha256=558d88f88192a973579910ef6f2c13db47a268d5ec2e53e83e50e74a39a02922 orjson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/orjson/orjson-3.11.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl#sha256=814be4b49b228cfc0b3c565acf642dd7d13538f966e3ccde61f4f55be3e20785 packaging @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/packaging/packaging-26.0-py3-none-any.whl#sha256=b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529 paramiko @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/paramiko/paramiko-4.0.0-py3-none-any.whl#sha256=0e20e00ac666503bf0b4eda3b6d833465a2b7aff2e2b3d79a8bba5ef144ee3b9 @@ -114,5 +113,4 @@ typing-inspection @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEE uhashring @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/uhashring/uhashring-2.4-py3-none-any.whl#sha256=0d6cae4ac3205ef039860b0befd6bc762f1686a276805bf1b998c8657124df62 urllib3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/urllib3/urllib3-2.6.3-py3-none-any.whl#sha256=bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4 wrapt @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/wrapt/wrapt-2.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl#sha256=16997dfb9d67addc2e3f41b62a104341e80cac52f91110dece393923c0ebd5ca -zipp @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zipp/zipp-3.23.1-py3-none-any.whl#sha256=0b3596c50a5c700c9cb40ba8d86d9f2cc4807e9bedb06bcdf7fac85633e444dc zstandard @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zstandard/zstandard-0.25.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl#sha256=bfc4e20784722098822e3eee42b8e576b379ed72cca4a7cb856ae733e62192ea diff --git a/.deps/resolved/linux-x86_64_3.13.txt b/.deps/resolved/linux-x86_64_3.13.txt index 12af925a15243..af31204651462 100644 --- a/.deps/resolved/linux-x86_64_3.13.txt +++ b/.deps/resolved/linux-x86_64_3.13.txt @@ -1,31 +1,31 @@ aerospike @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/aerospike/aerospike-7.1.1-20260515131248-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=b9c97cc2d6b72897ec06ca9e63457d4fa13bd04979fcddea59b2539cbeb651df -botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260518160659-py3-none-any.whl#sha256=f1933a8ca6c1108ed23f7b01f82577327fc254e330025887fdd4ba17db03e8e2 +botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260519113047-py3-none-any.whl#sha256=f1933a8ca6c1108ed23f7b01f82577327fc254e330025887fdd4ba17db03e8e2 cm-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/cm-client/cm_client-45.0.4-20260326173305-py3-none-manylinux2014_x86_64.whl#sha256=0bbcf2766028850c26a917deef3704a096cc9ba0c25220d45ff424334d25dcd7 -confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260518160706-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=a5161619d1c097d0d2f79ca3511affc688603dea8862ba3fed22cdb8ca091e96 -cryptography @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/cryptography/cryptography-46.0.7-20260518160708-cp313-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=90947efd3d20f53953b7fae9d120f8476b35a9154dc715970d39a0905920b11b +confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260519113053-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=d018992585ab946b872af89ff205aba11ab6a17c21073f4739ac1b69b828bb0e +cryptography @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/cryptography/cryptography-46.0.7-20260519113055-cp313-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=80fd7d0591d6164610f5f73a33b38159c5dd3e9808a235e40e33469fcd1bc6b3 ddtrace @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/ddtrace/ddtrace-3.19.5-20260417115349-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl#sha256=e0aa298cfd1947902fed35d8fa6129c90f6d5e687328b0cba6fe137714198608 foundationdb @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/foundationdb/foundationdb-6.3.25-20260326173307-py3-none-manylinux2014_x86_64.whl#sha256=d34180500220db4458e57505c774de0363456d4129f0e3fe98c9e99e8eef77c2 gssapi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/gssapi/gssapi-1.11.1-20260512161841-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=b0eefba08d72fa793402e49072b61c84e8414c9fdeda2b80dfa8a47c3865dc66 -keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260518160710-py3-none-any.whl#sha256=981596c8e7346d2b46ee5ec738312b8e46b0beb29d62104ccb7c113ed9c7fbef +keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260519113057-py3-none-any.whl#sha256=981596c8e7346d2b46ee5ec738312b8e46b0beb29d62104ccb7c113ed9c7fbef krb5 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/krb5/krb5-0.9.0-20260512161852-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=1814588e913f80e3f81753b2cb601eb1fce0001d33749cdc78b6134c20f1382a -openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260518160722-py3-none-any.whl#sha256=88abe8f44e3b8c5c25b1093de735c700aa727a7ac408e273aa855d6db6ba38bf -os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260518160735-py3-none-any.whl#sha256=758ccaa020eea0edd84bcf4123746ddd060d1dbaeef63d04d76bd2e0ae6f91d8 -pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260518160747-py2.py3-none-any.whl#sha256=1544652b80307f0b4c491bd66f58f969cb0656994e632365f90e8e044c223b4e +openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260519113108-py3-none-any.whl#sha256=88abe8f44e3b8c5c25b1093de735c700aa727a7ac408e273aa855d6db6ba38bf +os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260519113118-py3-none-any.whl#sha256=758ccaa020eea0edd84bcf4123746ddd060d1dbaeef63d04d76bd2e0ae6f91d8 +pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260519113128-py2.py3-none-any.whl#sha256=1544652b80307f0b4c491bd66f58f969cb0656994e632365f90e8e044c223b4e psutil @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psutil/psutil-6.0.0-20260326173308-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=af8dd07e6f1bf1d41381ad59dff0a0a36153c7dd5a69becc765010329f17db01 psycopg-c @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psycopg-c/psycopg_c-3.3.3-20260518160748-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=3a8168f920ea77d841cc318818137aaf75d2744987e54078d2686f7784791d2c pymongo @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymongo/pymongo-4.8.0-20260515131417-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=f93c2743bedf78e5cd8fce172e068be0323e43053b4be04d6b48d7bed65d4bfd pymqi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymqi/pymqi-1.12.13-20260515131418-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=d6ed6f8a9ae1dd91aaaa047caee858d42bf020d28336bf7046d8cd91eab35f7b pyodbc @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pyodbc/pyodbc-5.3.0-20260515131419-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=67e647a09d11119d56849c66f99100b3d24e9b7fff4e5d7b5ddf17fc167fdd20 -pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260518160801-py2.py3-none-any.whl#sha256=0cc4610711208cdc64361464a23d1f2dce88ec5990a12b4bdce4f13b6a169810 +pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260519113140-py2.py3-none-any.whl#sha256=0cc4610711208cdc64361464a23d1f2dce88ec5990a12b4bdce4f13b6a169810 pyvmomi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pyvmomi/pyvmomi-8.0.3.0.1-20260326173310-py2.py3-none-manylinux2014_x86_64.whl#sha256=dd71476b7308286ed4219373ca9523e4f06bfed3f5932f60e5c67d8d5a673e1e -requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260518160814-py3-none-any.whl#sha256=aae3f1743ab60955ea91e9a095d54997ea56b956bab652bf194379ef4dc6fa7f -securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260518160826-py3-none-any.whl#sha256=861ab6f8c1930e0c05915f32a34f1c4ae1d76ee542ad2b424121e3e26a9fb1dd -setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260518160838-py3-none-any.whl#sha256=b020c62c9ea6c1c3e7a29a8e385967909ceb85a77398f7fbe3c63e2abab52e87 +requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260519113151-py3-none-any.whl#sha256=aae3f1743ab60955ea91e9a095d54997ea56b956bab652bf194379ef4dc6fa7f +securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260519113201-py3-none-any.whl#sha256=861ab6f8c1930e0c05915f32a34f1c4ae1d76ee542ad2b424121e3e26a9fb1dd +setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260519113212-py3-none-any.whl#sha256=b020c62c9ea6c1c3e7a29a8e385967909ceb85a77398f7fbe3c63e2abab52e87 simplejson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/simplejson/simplejson-3.20.2-20260326173311-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=dec16958f71ce93ac1c2fdc212800892ca22a9e90efcab5b5e01d121146cc5cc -stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260518160839-py3-none-any.whl#sha256=b9c2fdfb8d02797f171fc63ada01759955b4bac02a7cbe63d2ad2e827e3530f6 -supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260518160851-py2.py3-none-any.whl#sha256=81d63e968a5133203a334102b8e6e72b1f5ecfc9673c1af7680f9f7e0db8d4fd -vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260518160903-py3-none-any.whl#sha256=df8d667b7bd070532a72c25f37e7259d3673c1908ae726fdfb3087d777caa9da -websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260518160916-py3-none-any.whl#sha256=b628876a9b1eed1d49f1a230bf4b1c21fa3cd9163594f9f9628c8a8b22f97e10 +stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260519113212-py3-none-any.whl#sha256=b9c2fdfb8d02797f171fc63ada01759955b4bac02a7cbe63d2ad2e827e3530f6 +supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260519113223-py2.py3-none-any.whl#sha256=81d63e968a5133203a334102b8e6e72b1f5ecfc9673c1af7680f9f7e0db8d4fd +vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260519113233-py3-none-any.whl#sha256=df8d667b7bd070532a72c25f37e7259d3673c1908ae726fdfb3087d777caa9da +websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260519113244-py3-none-any.whl#sha256=b628876a9b1eed1d49f1a230bf4b1c21fa3cd9163594f9f9628c8a8b22f97e10 annotated-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/annotated-types/annotated_types-0.7.0-py3-none-any.whl#sha256=1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 attrs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/attrs/attrs-26.1.0-py3-none-any.whl#sha256=c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309 aws-msk-iam-sasl-signer-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/aws-msk-iam-sasl-signer-python/aws_msk_iam_sasl_signer_python-1.0.2-py2.py3-none-any.whl#sha256=310eb2db9ca0ff55ed06a24212739b87533e7f1cf6f34e43aabbd97a3b21290e @@ -51,7 +51,6 @@ envier @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE} fastavro @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/fastavro/fastavro-1.12.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl#sha256=0714b285160fcd515eb0455540f40dd6dac93bdeacdb03f24e8eac3d8aa51f8d hazelcast-python-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/hazelcast-python-client/hazelcast_python_client-5.6.0-py3-none-any.whl#sha256=e2cec409068990ca9b4381fe97160cc2375412334782bef45ab4c8fe4d10536c idna @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/idna/idna-3.15-py3-none-any.whl#sha256=048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8 -importlib-metadata @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/importlib-metadata/importlib_metadata-8.7.1-py3-none-any.whl#sha256=5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151 in-toto @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/in-toto/in_toto-2.0.0-py3-none-any.whl#sha256=eaf71733cdd5b2309b58b24169c13c24701da72baa43b7432d1dffc308e7bf32 invoke @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/invoke/invoke-3.0.3-py3-none-any.whl#sha256=f11327165e5cbb89b2ad1d88d3292b5113332c43b8553b494da435d6ec6f5053 iso8601 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/iso8601/iso8601-2.1.0-py3-none-any.whl#sha256=aac4145c4dcb66ad8b648a02830f5e2ff6c24af20f4f482689be402db2429242 @@ -69,7 +68,7 @@ mmh3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/e msal @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal/msal-1.36.0-py3-none-any.whl#sha256=36ecac30e2ff4322d956029aabce3c82301c29f0acb1ad89b94edcabb0e58ec4 msal-extensions @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal-extensions/msal_extensions-1.3.1-py3-none-any.whl#sha256=96d3de4d034504e969ac5e85bae8106c8373b5c6568e4c8fa7af2eca9dbe6bca oauthlib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/oauthlib/oauthlib-3.3.1-py3-none-any.whl#sha256=88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1 -opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.41.1-py3-none-any.whl#sha256=a22df900e75c76dc08440710e51f52f1aa6b451b429298896023e60db5b3139f +opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.42.0-py3-none-any.whl#sha256=558d88f88192a973579910ef6f2c13db47a268d5ec2e53e83e50e74a39a02922 orjson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/orjson/orjson-3.11.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl#sha256=a12b80df61aab7b98b490fe9e4879925ba666fccdfcd175252ce4d9035865ace packaging @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/packaging/packaging-26.0-py3-none-any.whl#sha256=b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529 paramiko @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/paramiko/paramiko-4.0.0-py3-none-any.whl#sha256=0e20e00ac666503bf0b4eda3b6d833465a2b7aff2e2b3d79a8bba5ef144ee3b9 @@ -115,5 +114,4 @@ typing-inspection @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEE uhashring @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/uhashring/uhashring-2.4-py3-none-any.whl#sha256=0d6cae4ac3205ef039860b0befd6bc762f1686a276805bf1b998c8657124df62 urllib3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/urllib3/urllib3-2.6.3-py3-none-any.whl#sha256=bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4 wrapt @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/wrapt/wrapt-2.1.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl#sha256=bbac24d879aa22998e87f6b3f481a5216311e7d53c7db87f189a7a0266dafffb -zipp @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zipp/zipp-3.23.1-py3-none-any.whl#sha256=0b3596c50a5c700c9cb40ba8d86d9f2cc4807e9bedb06bcdf7fac85633e444dc zstandard @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zstandard/zstandard-0.25.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl#sha256=8e735494da3db08694d26480f1493ad2cf86e99bdd53e8e9771b2752a5c0246a diff --git a/.deps/resolved/macos-aarch64_3.13.txt b/.deps/resolved/macos-aarch64_3.13.txt index 0280c31f22e24..5b1879660089d 100644 --- a/.deps/resolved/macos-aarch64_3.13.txt +++ b/.deps/resolved/macos-aarch64_3.13.txt @@ -1,28 +1,28 @@ -botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260518160659-py3-none-any.whl#sha256=f1933a8ca6c1108ed23f7b01f82577327fc254e330025887fdd4ba17db03e8e2 +botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260519113047-py3-none-any.whl#sha256=f1933a8ca6c1108ed23f7b01f82577327fc254e330025887fdd4ba17db03e8e2 cm-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/cm-client/cm_client-45.0.4-20260326173218-py3-none-macosx_12_0_universal2.whl#sha256=0bbcf2766028850c26a917deef3704a096cc9ba0c25220d45ff424334d25dcd7 -confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260518161428-cp313-cp313-macosx_12_0_arm64.whl#sha256=06091e9b37d1cf316a72ee4e38210ed7c05728ab3202d3f806ce86cbaf8b0094 +confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260519113706-cp313-cp313-macosx_12_0_arm64.whl#sha256=183ebf1624fecca426224e2bbd7f0a9320e89facb976da4cd8c0abb0397fba14 ddtrace @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/ddtrace/ddtrace-3.19.5-20260417115301-cp313-cp313-macosx_12_0_arm64.whl#sha256=1274db819aa41b189135f83ad2b8e37c6e26b8d2f25c60a725a01637ebd63ee4 foundationdb @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/foundationdb/foundationdb-6.3.25-20260326173219-py3-none-macosx_12_0_universal2.whl#sha256=d34180500220db4458e57505c774de0363456d4129f0e3fe98c9e99e8eef77c2 gssapi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/gssapi/gssapi-1.11.1-20260326173323-cp311-abi3-macosx_11_0_arm64.whl#sha256=b5f5ac28470db99338814e4285a491dc218b9bee3f8d20bfa219274e84bd87c4 -keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260518160710-py3-none-any.whl#sha256=981596c8e7346d2b46ee5ec738312b8e46b0beb29d62104ccb7c113ed9c7fbef +keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260519113057-py3-none-any.whl#sha256=981596c8e7346d2b46ee5ec738312b8e46b0beb29d62104ccb7c113ed9c7fbef krb5 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/krb5/krb5-0.9.0-20260326173323-cp311-abi3-macosx_11_0_arm64.whl#sha256=47f731bebe725962f7b644e7238a4c68eca2879f6c35842babda9140f263c615 -openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260518160722-py3-none-any.whl#sha256=88abe8f44e3b8c5c25b1093de735c700aa727a7ac408e273aa855d6db6ba38bf -os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260518160735-py3-none-any.whl#sha256=758ccaa020eea0edd84bcf4123746ddd060d1dbaeef63d04d76bd2e0ae6f91d8 -pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260518160747-py2.py3-none-any.whl#sha256=1544652b80307f0b4c491bd66f58f969cb0656994e632365f90e8e044c223b4e +openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260519113108-py3-none-any.whl#sha256=88abe8f44e3b8c5c25b1093de735c700aa727a7ac408e273aa855d6db6ba38bf +os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260519113118-py3-none-any.whl#sha256=758ccaa020eea0edd84bcf4123746ddd060d1dbaeef63d04d76bd2e0ae6f91d8 +pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260519113128-py2.py3-none-any.whl#sha256=1544652b80307f0b4c491bd66f58f969cb0656994e632365f90e8e044c223b4e psutil @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psutil/psutil-6.0.0-20260326173324-cp38-abi3-macosx_11_0_arm64.whl#sha256=33472398d3e6da655a430b106920164b04f036f891bd0ea803a4309ed2a80ef9 psycopg-c @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psycopg-c/psycopg_c-3.3.3-20260518161505-cp313-cp313-macosx_12_0_arm64.whl#sha256=47022f902ff341b88679bdb9f9a799e5e79057f45f943a1f558a664ec2d77436 pymongo @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymongo/pymongo-4.8.0-20260326173325-cp313-cp313-macosx_12_0_arm64.whl#sha256=7c94a2b73c148f84ab217ea2084d07e01e834d49244dec026b473e889016f556 pymqi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymqi/pymqi-1.12.13-20260326173325-cp313-cp313-macosx_12_0_arm64.whl#sha256=482b0d2593868c595ec53db794a61a792c0e1fcad04aee86db96afaadf986baf -pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260518160801-py2.py3-none-any.whl#sha256=0cc4610711208cdc64361464a23d1f2dce88ec5990a12b4bdce4f13b6a169810 +pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260519113140-py2.py3-none-any.whl#sha256=0cc4610711208cdc64361464a23d1f2dce88ec5990a12b4bdce4f13b6a169810 pyvmomi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pyvmomi/pyvmomi-8.0.3.0.1-20260326173224-py2.py3-none-macosx_12_0_universal2.whl#sha256=dd71476b7308286ed4219373ca9523e4f06bfed3f5932f60e5c67d8d5a673e1e -requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260518160814-py3-none-any.whl#sha256=aae3f1743ab60955ea91e9a095d54997ea56b956bab652bf194379ef4dc6fa7f -securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260518160826-py3-none-any.whl#sha256=861ab6f8c1930e0c05915f32a34f1c4ae1d76ee542ad2b424121e3e26a9fb1dd -setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260518160838-py3-none-any.whl#sha256=b020c62c9ea6c1c3e7a29a8e385967909ceb85a77398f7fbe3c63e2abab52e87 +requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260519113151-py3-none-any.whl#sha256=aae3f1743ab60955ea91e9a095d54997ea56b956bab652bf194379ef4dc6fa7f +securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260519113201-py3-none-any.whl#sha256=861ab6f8c1930e0c05915f32a34f1c4ae1d76ee542ad2b424121e3e26a9fb1dd +setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260519113212-py3-none-any.whl#sha256=b020c62c9ea6c1c3e7a29a8e385967909ceb85a77398f7fbe3c63e2abab52e87 simplejson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/simplejson/simplejson-3.20.2-20260326173326-cp313-cp313-macosx_11_0_arm64.whl#sha256=fc3c4e9feecd85f1831fb0983b04e7170765b5047c3c629ab97c0c49190a5da8 -stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260518160839-py3-none-any.whl#sha256=b9c2fdfb8d02797f171fc63ada01759955b4bac02a7cbe63d2ad2e827e3530f6 -supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260518160851-py2.py3-none-any.whl#sha256=81d63e968a5133203a334102b8e6e72b1f5ecfc9673c1af7680f9f7e0db8d4fd -vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260518160903-py3-none-any.whl#sha256=df8d667b7bd070532a72c25f37e7259d3673c1908ae726fdfb3087d777caa9da -websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260518160916-py3-none-any.whl#sha256=b628876a9b1eed1d49f1a230bf4b1c21fa3cd9163594f9f9628c8a8b22f97e10 +stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260519113212-py3-none-any.whl#sha256=b9c2fdfb8d02797f171fc63ada01759955b4bac02a7cbe63d2ad2e827e3530f6 +supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260519113223-py2.py3-none-any.whl#sha256=81d63e968a5133203a334102b8e6e72b1f5ecfc9673c1af7680f9f7e0db8d4fd +vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260519113233-py3-none-any.whl#sha256=df8d667b7bd070532a72c25f37e7259d3673c1908ae726fdfb3087d777caa9da +websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260519113244-py3-none-any.whl#sha256=b628876a9b1eed1d49f1a230bf4b1c21fa3cd9163594f9f9628c8a8b22f97e10 annotated-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/annotated-types/annotated_types-0.7.0-py3-none-any.whl#sha256=1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 attrs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/attrs/attrs-26.1.0-py3-none-any.whl#sha256=c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309 aws-msk-iam-sasl-signer-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/aws-msk-iam-sasl-signer-python/aws_msk_iam_sasl_signer_python-1.0.2-py2.py3-none-any.whl#sha256=310eb2db9ca0ff55ed06a24212739b87533e7f1cf6f34e43aabbd97a3b21290e @@ -49,7 +49,6 @@ envier @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE} fastavro @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/fastavro/fastavro-1.12.1-cp313-cp313-macosx_10_13_universal2.whl#sha256=78df838351e4dff9edd10a1c41d1324131ffecbadefb9c297d612ef5363c049a hazelcast-python-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/hazelcast-python-client/hazelcast_python_client-5.6.0-py3-none-any.whl#sha256=e2cec409068990ca9b4381fe97160cc2375412334782bef45ab4c8fe4d10536c idna @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/idna/idna-3.15-py3-none-any.whl#sha256=048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8 -importlib-metadata @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/importlib-metadata/importlib_metadata-8.7.1-py3-none-any.whl#sha256=5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151 in-toto @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/in-toto/in_toto-2.0.0-py3-none-any.whl#sha256=eaf71733cdd5b2309b58b24169c13c24701da72baa43b7432d1dffc308e7bf32 invoke @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/invoke/invoke-3.0.3-py3-none-any.whl#sha256=f11327165e5cbb89b2ad1d88d3292b5113332c43b8553b494da435d6ec6f5053 iso8601 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/iso8601/iso8601-2.1.0-py3-none-any.whl#sha256=aac4145c4dcb66ad8b648a02830f5e2ff6c24af20f4f482689be402db2429242 @@ -67,7 +66,7 @@ mmh3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/e msal @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal/msal-1.36.0-py3-none-any.whl#sha256=36ecac30e2ff4322d956029aabce3c82301c29f0acb1ad89b94edcabb0e58ec4 msal-extensions @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal-extensions/msal_extensions-1.3.1-py3-none-any.whl#sha256=96d3de4d034504e969ac5e85bae8106c8373b5c6568e4c8fa7af2eca9dbe6bca oauthlib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/oauthlib/oauthlib-3.3.1-py3-none-any.whl#sha256=88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1 -opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.41.1-py3-none-any.whl#sha256=a22df900e75c76dc08440710e51f52f1aa6b451b429298896023e60db5b3139f +opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.42.0-py3-none-any.whl#sha256=558d88f88192a973579910ef6f2c13db47a268d5ec2e53e83e50e74a39a02922 orjson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/orjson/orjson-3.11.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl#sha256=1d98b30cc1313d52d4af17d9c3d307b08389752ec5f2e5febdfada70b0f8c733 packaging @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/packaging/packaging-26.0-py3-none-any.whl#sha256=b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529 paramiko @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/paramiko/paramiko-4.0.0-py3-none-any.whl#sha256=0e20e00ac666503bf0b4eda3b6d833465a2b7aff2e2b3d79a8bba5ef144ee3b9 @@ -114,5 +113,4 @@ typing-inspection @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEE uhashring @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/uhashring/uhashring-2.4-py3-none-any.whl#sha256=0d6cae4ac3205ef039860b0befd6bc762f1686a276805bf1b998c8657124df62 urllib3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/urllib3/urllib3-2.6.3-py3-none-any.whl#sha256=bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4 wrapt @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/wrapt/wrapt-2.1.2-cp313-cp313-macosx_11_0_arm64.whl#sha256=4bdf26e03e6d0da3f0e9422fd36bcebf7bc0eeb55fdf9c727a09abc6b9fe472e -zipp @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zipp/zipp-3.23.1-py3-none-any.whl#sha256=0b3596c50a5c700c9cb40ba8d86d9f2cc4807e9bedb06bcdf7fac85633e444dc zstandard @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zstandard/zstandard-0.25.0-cp313-cp313-macosx_11_0_arm64.whl#sha256=a1a4ae2dec3993a32247995bdfe367fc3266da832d82f8438c8570f989753de1 diff --git a/.deps/resolved/macos-x86_64_3.13.txt b/.deps/resolved/macos-x86_64_3.13.txt index 53c27f9fdb422..4b7608dd5b46e 100644 --- a/.deps/resolved/macos-x86_64_3.13.txt +++ b/.deps/resolved/macos-x86_64_3.13.txt @@ -1,28 +1,28 @@ -botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260518160659-py3-none-any.whl#sha256=f1933a8ca6c1108ed23f7b01f82577327fc254e330025887fdd4ba17db03e8e2 +botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260519113047-py3-none-any.whl#sha256=f1933a8ca6c1108ed23f7b01f82577327fc254e330025887fdd4ba17db03e8e2 cm-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/cm-client/cm_client-45.0.4-20260326173218-py3-none-macosx_12_0_universal2.whl#sha256=0bbcf2766028850c26a917deef3704a096cc9ba0c25220d45ff424334d25dcd7 -confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260518161206-cp313-cp313-macosx_12_0_x86_64.whl#sha256=d20cb2d378dc2614290225aa1537366582cbb933e7891bd2d6fb80af397dd783 +confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260519113507-cp313-cp313-macosx_12_0_x86_64.whl#sha256=2227c28f752956cb6a05c1cfc4f4c7371d1f9335b6537902986bc843ad9c055a ddtrace @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/ddtrace/ddtrace-3.19.5-20260417115332-cp313-cp313-macosx_12_0_x86_64.whl#sha256=813c9fae90bd65d60d97e183b21dff8f9d54591a9186cf163f606fb11b7a6575 foundationdb @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/foundationdb/foundationdb-6.3.25-20260326173219-py3-none-macosx_12_0_universal2.whl#sha256=d34180500220db4458e57505c774de0363456d4129f0e3fe98c9e99e8eef77c2 gssapi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/gssapi/gssapi-1.11.1-20260326173219-cp311-abi3-macosx_10_9_x86_64.whl#sha256=91608d102056a7768b9e572ccbe2ccbe7da84688a84f05bb8c4ea56e9d0e979d -keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260518160710-py3-none-any.whl#sha256=981596c8e7346d2b46ee5ec738312b8e46b0beb29d62104ccb7c113ed9c7fbef +keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260519113057-py3-none-any.whl#sha256=981596c8e7346d2b46ee5ec738312b8e46b0beb29d62104ccb7c113ed9c7fbef krb5 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/krb5/krb5-0.9.0-20260326173220-cp311-abi3-macosx_10_9_x86_64.whl#sha256=0fe3a687f4e9a8d305ba0183f9b8368e9ed13f4e32716ba3a14de77e12f1e978 -openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260518160722-py3-none-any.whl#sha256=88abe8f44e3b8c5c25b1093de735c700aa727a7ac408e273aa855d6db6ba38bf -os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260518160735-py3-none-any.whl#sha256=758ccaa020eea0edd84bcf4123746ddd060d1dbaeef63d04d76bd2e0ae6f91d8 -pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260518160747-py2.py3-none-any.whl#sha256=1544652b80307f0b4c491bd66f58f969cb0656994e632365f90e8e044c223b4e +openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260519113108-py3-none-any.whl#sha256=88abe8f44e3b8c5c25b1093de735c700aa727a7ac408e273aa855d6db6ba38bf +os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260519113118-py3-none-any.whl#sha256=758ccaa020eea0edd84bcf4123746ddd060d1dbaeef63d04d76bd2e0ae6f91d8 +pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260519113128-py2.py3-none-any.whl#sha256=1544652b80307f0b4c491bd66f58f969cb0656994e632365f90e8e044c223b4e psutil @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psutil/psutil-6.0.0-20260326173222-cp36-abi3-macosx_10_9_x86_64.whl#sha256=81ae816033cb82995bc78424b02886430400b730698d6a7c492e3256b7854777 psycopg-c @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psycopg-c/psycopg_c-3.3.3-20260518161243-cp313-cp313-macosx_12_0_x86_64.whl#sha256=4d8cc8f8e8d18c4f1f3a879741a9215fd13a4bb7f3cb8634b4e2d712474f5e64 pymongo @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymongo/pymongo-4.8.0-20260326173223-cp313-cp313-macosx_12_0_x86_64.whl#sha256=8b8c0174d55284134d7373fa1116522a241804560b86f05b883d4964692caaaa pymqi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymqi/pymqi-1.12.13-20260326173223-cp313-cp313-macosx_12_0_x86_64.whl#sha256=95ed07eebe53c2720cdaaf5d7de3364c80d373b9286b4a1b301f157592ee8ccb -pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260518160801-py2.py3-none-any.whl#sha256=0cc4610711208cdc64361464a23d1f2dce88ec5990a12b4bdce4f13b6a169810 +pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260519113140-py2.py3-none-any.whl#sha256=0cc4610711208cdc64361464a23d1f2dce88ec5990a12b4bdce4f13b6a169810 pyvmomi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pyvmomi/pyvmomi-8.0.3.0.1-20260326173224-py2.py3-none-macosx_12_0_universal2.whl#sha256=dd71476b7308286ed4219373ca9523e4f06bfed3f5932f60e5c67d8d5a673e1e -requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260518160814-py3-none-any.whl#sha256=aae3f1743ab60955ea91e9a095d54997ea56b956bab652bf194379ef4dc6fa7f -securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260518160826-py3-none-any.whl#sha256=861ab6f8c1930e0c05915f32a34f1c4ae1d76ee542ad2b424121e3e26a9fb1dd -setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260518160838-py3-none-any.whl#sha256=b020c62c9ea6c1c3e7a29a8e385967909ceb85a77398f7fbe3c63e2abab52e87 +requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260519113151-py3-none-any.whl#sha256=aae3f1743ab60955ea91e9a095d54997ea56b956bab652bf194379ef4dc6fa7f +securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260519113201-py3-none-any.whl#sha256=861ab6f8c1930e0c05915f32a34f1c4ae1d76ee542ad2b424121e3e26a9fb1dd +setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260519113212-py3-none-any.whl#sha256=b020c62c9ea6c1c3e7a29a8e385967909ceb85a77398f7fbe3c63e2abab52e87 simplejson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/simplejson/simplejson-3.20.2-20260326173225-cp313-cp313-macosx_10_13_x86_64.whl#sha256=41b283f75ddb7e47b24fb57dc37d88078e51cd777438f368224e1282fc8ee465 -stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260518160839-py3-none-any.whl#sha256=b9c2fdfb8d02797f171fc63ada01759955b4bac02a7cbe63d2ad2e827e3530f6 -supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260518160851-py2.py3-none-any.whl#sha256=81d63e968a5133203a334102b8e6e72b1f5ecfc9673c1af7680f9f7e0db8d4fd -vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260518160903-py3-none-any.whl#sha256=df8d667b7bd070532a72c25f37e7259d3673c1908ae726fdfb3087d777caa9da -websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260518160916-py3-none-any.whl#sha256=b628876a9b1eed1d49f1a230bf4b1c21fa3cd9163594f9f9628c8a8b22f97e10 +stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260519113212-py3-none-any.whl#sha256=b9c2fdfb8d02797f171fc63ada01759955b4bac02a7cbe63d2ad2e827e3530f6 +supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260519113223-py2.py3-none-any.whl#sha256=81d63e968a5133203a334102b8e6e72b1f5ecfc9673c1af7680f9f7e0db8d4fd +vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260519113233-py3-none-any.whl#sha256=df8d667b7bd070532a72c25f37e7259d3673c1908ae726fdfb3087d777caa9da +websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260519113244-py3-none-any.whl#sha256=b628876a9b1eed1d49f1a230bf4b1c21fa3cd9163594f9f9628c8a8b22f97e10 annotated-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/annotated-types/annotated_types-0.7.0-py3-none-any.whl#sha256=1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 attrs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/attrs/attrs-26.1.0-py3-none-any.whl#sha256=c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309 aws-msk-iam-sasl-signer-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/aws-msk-iam-sasl-signer-python/aws_msk_iam_sasl_signer_python-1.0.2-py2.py3-none-any.whl#sha256=310eb2db9ca0ff55ed06a24212739b87533e7f1cf6f34e43aabbd97a3b21290e @@ -49,7 +49,6 @@ envier @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE} fastavro @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/fastavro/fastavro-1.12.1-cp313-cp313-macosx_10_13_universal2.whl#sha256=78df838351e4dff9edd10a1c41d1324131ffecbadefb9c297d612ef5363c049a hazelcast-python-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/hazelcast-python-client/hazelcast_python_client-5.6.0-py3-none-any.whl#sha256=e2cec409068990ca9b4381fe97160cc2375412334782bef45ab4c8fe4d10536c idna @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/idna/idna-3.15-py3-none-any.whl#sha256=048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8 -importlib-metadata @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/importlib-metadata/importlib_metadata-8.7.1-py3-none-any.whl#sha256=5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151 in-toto @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/in-toto/in_toto-2.0.0-py3-none-any.whl#sha256=eaf71733cdd5b2309b58b24169c13c24701da72baa43b7432d1dffc308e7bf32 invoke @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/invoke/invoke-3.0.3-py3-none-any.whl#sha256=f11327165e5cbb89b2ad1d88d3292b5113332c43b8553b494da435d6ec6f5053 iso8601 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/iso8601/iso8601-2.1.0-py3-none-any.whl#sha256=aac4145c4dcb66ad8b648a02830f5e2ff6c24af20f4f482689be402db2429242 @@ -67,7 +66,7 @@ mmh3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/e msal @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal/msal-1.36.0-py3-none-any.whl#sha256=36ecac30e2ff4322d956029aabce3c82301c29f0acb1ad89b94edcabb0e58ec4 msal-extensions @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal-extensions/msal_extensions-1.3.1-py3-none-any.whl#sha256=96d3de4d034504e969ac5e85bae8106c8373b5c6568e4c8fa7af2eca9dbe6bca oauthlib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/oauthlib/oauthlib-3.3.1-py3-none-any.whl#sha256=88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1 -opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.41.1-py3-none-any.whl#sha256=a22df900e75c76dc08440710e51f52f1aa6b451b429298896023e60db5b3139f +opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.42.0-py3-none-any.whl#sha256=558d88f88192a973579910ef6f2c13db47a268d5ec2e53e83e50e74a39a02922 orjson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/orjson/orjson-3.11.7-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl#sha256=1d98b30cc1313d52d4af17d9c3d307b08389752ec5f2e5febdfada70b0f8c733 packaging @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/packaging/packaging-26.0-py3-none-any.whl#sha256=b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529 paramiko @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/paramiko/paramiko-4.0.0-py3-none-any.whl#sha256=0e20e00ac666503bf0b4eda3b6d833465a2b7aff2e2b3d79a8bba5ef144ee3b9 @@ -114,5 +113,4 @@ typing-inspection @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEE uhashring @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/uhashring/uhashring-2.4-py3-none-any.whl#sha256=0d6cae4ac3205ef039860b0befd6bc762f1686a276805bf1b998c8657124df62 urllib3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/urllib3/urllib3-2.6.3-py3-none-any.whl#sha256=bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4 wrapt @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/wrapt/wrapt-2.1.2-cp313-cp313-macosx_10_13_x86_64.whl#sha256=787fd6f4d67befa6fe2abdffcbd3de2d82dfc6fb8a6d850407c53332709d030b -zipp @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zipp/zipp-3.23.1-py3-none-any.whl#sha256=0b3596c50a5c700c9cb40ba8d86d9f2cc4807e9bedb06bcdf7fac85633e444dc zstandard @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zstandard/zstandard-0.25.0-cp313-cp313-macosx_10_13_x86_64.whl#sha256=ec996f12524f88e151c339688c3897194821d7f03081ab35d31d1e12ec975e94 diff --git a/.deps/resolved/windows-x86_64_3.13.txt b/.deps/resolved/windows-x86_64_3.13.txt index dc6a9a99100bd..ea498f12a8c40 100644 --- a/.deps/resolved/windows-x86_64_3.13.txt +++ b/.deps/resolved/windows-x86_64_3.13.txt @@ -1,28 +1,28 @@ -botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260518160410-py3-none-any.whl#sha256=6f69d4818864f67ab304ac48497fefcc7f4fdd9bbcb9403cbc22dbe211177824 +botocore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/botocore/botocore-1.42.72-20260519112823-py3-none-any.whl#sha256=6f69d4818864f67ab304ac48497fefcc7f4fdd9bbcb9403cbc22dbe211177824 cm-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/cm-client/cm_client-45.0.4-20260326173335-py3-none-win_amd64.whl#sha256=6a11ff78eeff20d6a20036e7320a2cb1fd4a5c318a2f1b81b1449efea34048eb colorama @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/colorama/colorama-0.4.6-20260417115313-py2.py3-none-any.whl#sha256=3eb3f5bc1022d96fbe8df6f419cfb07d028e24c055cc3c59517fa49a95ab067a -confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260518160418-cp313-cp313-win_amd64.whl#sha256=17fe8426e877cd886e16e4edab533937af55a277efeb427c37aeaa5bf56ddb12 +confluent-kafka @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/confluent-kafka/confluent_kafka-2.13.2-20260519112830-cp313-cp313-win_amd64.whl#sha256=5558e5b518842d9a51f0c0353c9e03671aea6e3ff938a8cdf6f1420ad1c93d0e ddtrace @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/ddtrace/ddtrace-3.19.5-20260417115314-cp313-cp313-win_amd64.whl#sha256=4f3009589d1c2e0ca84fe8bdb20367de10f090e84cb401ab1d538055927ac0f7 foundationdb @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/foundationdb/foundationdb-6.3.25-20260326173337-py3-none-win_amd64.whl#sha256=828ed23b81a64a5495b1091dd8a66ea51e84c55d9d814c5b6baf7b80dbd9881b -keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260518160418-py3-none-any.whl#sha256=5c38e33e1aa685d2dcd7b3c0dc62d61cc1c5f4878076b9fd79afa4cfa6f08c0e -openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260518160430-py3-none-any.whl#sha256=4ac88799ad5c355825b9567f5ca00fe9bcbd97cfe2649f60500fbe5f66610732 -os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260518160443-py3-none-any.whl#sha256=668903c54b88cc4db5fd1dcbaf7cf7417220ef70592b70b49a76d202e8a7f4e8 -pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260518160455-py2.py3-none-any.whl#sha256=dbc2e1e0dbf694097374a40b72c890c915302ae4dd7d37c73db9cff8bf520c4b +keystoneauth1 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/keystoneauth1/keystoneauth1-5.14.0-20260519112831-py3-none-any.whl#sha256=5c38e33e1aa685d2dcd7b3c0dc62d61cc1c5f4878076b9fd79afa4cfa6f08c0e +openstacksdk @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/openstacksdk/openstacksdk-4.10.0-20260519112841-py3-none-any.whl#sha256=4ac88799ad5c355825b9567f5ca00fe9bcbd97cfe2649f60500fbe5f66610732 +os-service-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/os-service-types/os_service_types-1.8.2-20260519112851-py3-none-any.whl#sha256=668903c54b88cc4db5fd1dcbaf7cf7417220ef70592b70b49a76d202e8a7f4e8 +pbr @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pbr/pbr-7.0.3-20260519112901-py2.py3-none-any.whl#sha256=dbc2e1e0dbf694097374a40b72c890c915302ae4dd7d37c73db9cff8bf520c4b psutil @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psutil/psutil-6.0.0-20260326173339-cp37-abi3-win_amd64.whl#sha256=484a4a6e0e16a9adf22b01dc2917426536c8bf63378e445816eee9833aad4f71 -psycopg-c @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psycopg-c/psycopg_c-3.3.3-20260518160501-cp313-cp313-win_amd64.whl#sha256=61c549c9a1a4997575af27166cfbefac02427bc7f6a08bcd588f3820af1f1ec8 -pymongo @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymongo/pymongo-4.8.0-20260518160508-cp313-cp313-win_amd64.whl#sha256=c2d7a492abd72998a3e87cdd15839d934107a8b099434228b37e9b89431a9efb -pymqi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymqi/pymqi-1.12.13-20260518160515-cp313-cp313-win_amd64.whl#sha256=ab39a4f354392c497895ce4b793f34c75dd4eb606619b3d8e1ea5d38acb273af -pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260518160527-py2.py3-none-any.whl#sha256=b3796e82ce920d942b3e2de5af4c8567738b72caffac49ec6d88684fd0365690 +psycopg-c @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/psycopg-c/psycopg_c-3.3.3-20260519112907-cp313-cp313-win_amd64.whl#sha256=aafd80e48af8f2ea9593c8a6428b32d201477c08a836d5b14506bf2423fa040b +pymongo @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymongo/pymongo-4.8.0-20260519112913-cp313-cp313-win_amd64.whl#sha256=aa298a805eb1f75e50048f9cc8b962d67c8ecf23d44e86d66b4a6c8258288e5f +pymqi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pymqi/pymqi-1.12.13-20260519112918-cp313-cp313-win_amd64.whl#sha256=ef655b00ce7de8aeb26085fbaad9183e9bfd71f63dc77ad2c98762ee7b2c86c3 +pysnmp-mibs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pysnmp-mibs/pysnmp_mibs-0.1.6-20260519112929-py2.py3-none-any.whl#sha256=b3796e82ce920d942b3e2de5af4c8567738b72caffac49ec6d88684fd0365690 pyvmomi @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pyvmomi/pyvmomi-8.0.3.0.1-20260326173340-py2.py3-none-win_amd64.whl#sha256=c8487fb88881dc6bfc3507b9c351929221c8e85aa5e74179b82cda9d21364218 pywin32 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/pywin32/pywin32-311-20260326173341-cp313-cp313-win_amd64.whl#sha256=1e7784bf006cbfd7ffc4ce238eecc6ae43bfaf5d8132a6401d58a4ad0a36aea5 -requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260518160539-py3-none-any.whl#sha256=7f0bbfc823535680dd0e1ad2aedad8dc958130a180c421288244a33509ea2b0d -securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260518160551-py3-none-any.whl#sha256=4b33353c4d80e63f2417fff600939c30580c49721c76b0f7cf1ea4a18a131c4b -setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260518160604-py3-none-any.whl#sha256=3e5b8439ed8ba11221d6479f27a25a261cba045c357a912dc60e236710504ef6 +requests-unixsocket2 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/requests-unixsocket2/requests_unixsocket2-1.0.1-20260519112939-py3-none-any.whl#sha256=7f0bbfc823535680dd0e1ad2aedad8dc958130a180c421288244a33509ea2b0d +securesystemslib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/securesystemslib/securesystemslib-0.28.0-20260519112950-py3-none-any.whl#sha256=4b33353c4d80e63f2417fff600939c30580c49721c76b0f7cf1ea4a18a131c4b +setuptools @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/setuptools/setuptools-82.0.1-20260519113000-py3-none-any.whl#sha256=3e5b8439ed8ba11221d6479f27a25a261cba045c357a912dc60e236710504ef6 simplejson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/simplejson/simplejson-3.20.2-20260326173342-cp313-cp313-win_amd64.whl#sha256=cd71398a228fa91cd9ee2bb88079ba6693c60a68c14e684d386181a8a5eb67bc -stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260518160604-py3-none-any.whl#sha256=4fda71787750545abe0ff0845544b6729dca0e3bf18ab799bacdefebd9f703b5 -supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260518160617-py2.py3-none-any.whl#sha256=01f0c6c7fbc4b9a0ccb659a6463319eb83742ba0d6c156e5256484aaedef2917 -vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260518160629-py3-none-any.whl#sha256=3a094a32c4a892c32be2acb3e77452c8d7b907b6b6ebaa1e6b0a1f5bbecf4d38 -websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260518160641-py3-none-any.whl#sha256=cb12e51596b0dbb085df6efdbd7d00cc315ea04e88f667513702899903ec39fc +stevedore @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/stevedore/stevedore-5.8.0-20260519113000-py3-none-any.whl#sha256=4fda71787750545abe0ff0845544b6729dca0e3bf18ab799bacdefebd9f703b5 +supervisor @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/supervisor/supervisor-4.3.0-20260519113011-py2.py3-none-any.whl#sha256=01f0c6c7fbc4b9a0ccb659a6463319eb83742ba0d6c156e5256484aaedef2917 +vertica-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/vertica-python/vertica_python-1.4.0-20260519113021-py3-none-any.whl#sha256=3a094a32c4a892c32be2acb3e77452c8d7b907b6b6ebaa1e6b0a1f5bbecf4d38 +websocket-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/built/websocket-client/websocket_client-1.9.0-20260519113032-py3-none-any.whl#sha256=cb12e51596b0dbb085df6efdbd7d00cc315ea04e88f667513702899903ec39fc annotated-types @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/annotated-types/annotated_types-0.7.0-py3-none-any.whl#sha256=1f02e8b43a8fbbc3f3e0d4f0f4bfc8131bcb4eebe8849b8e5c773f3a1c582a53 attrs @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/attrs/attrs-26.1.0-py3-none-any.whl#sha256=c647aa4a12dfbad9333ca4e71fe62ddc36f4e63b2d260a37a8b83d2f043ac309 aws-msk-iam-sasl-signer-python @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/aws-msk-iam-sasl-signer-python/aws_msk_iam_sasl_signer_python-1.0.2-py2.py3-none-any.whl#sha256=310eb2db9ca0ff55ed06a24212739b87533e7f1cf6f34e43aabbd97a3b21290e @@ -49,7 +49,6 @@ envier @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE} fastavro @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/fastavro/fastavro-1.12.1-cp313-cp313-win_amd64.whl#sha256=5aa777b8ee595b50aa084104cd70670bf25a7bbb9fd8bb5d07524b0785ee1699 hazelcast-python-client @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/hazelcast-python-client/hazelcast_python_client-5.6.0-py3-none-any.whl#sha256=e2cec409068990ca9b4381fe97160cc2375412334782bef45ab4c8fe4d10536c idna @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/idna/idna-3.15-py3-none-any.whl#sha256=048adeaf8c2d788c40fee287673ccaa74c24ffd8dcf09ffa555a2fbb59f10ac8 -importlib-metadata @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/importlib-metadata/importlib_metadata-8.7.1-py3-none-any.whl#sha256=5a1f80bf1daa489495071efbb095d75a634cf28a8bc299581244063b53176151 in-toto @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/in-toto/in_toto-2.0.0-py3-none-any.whl#sha256=eaf71733cdd5b2309b58b24169c13c24701da72baa43b7432d1dffc308e7bf32 invoke @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/invoke/invoke-3.0.3-py3-none-any.whl#sha256=f11327165e5cbb89b2ad1d88d3292b5113332c43b8553b494da435d6ec6f5053 iso8601 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/iso8601/iso8601-2.1.0-py3-none-any.whl#sha256=aac4145c4dcb66ad8b648a02830f5e2ff6c24af20f4f482689be402db2429242 @@ -67,7 +66,7 @@ mmh3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/e msal @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal/msal-1.36.0-py3-none-any.whl#sha256=36ecac30e2ff4322d956029aabce3c82301c29f0acb1ad89b94edcabb0e58ec4 msal-extensions @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/msal-extensions/msal_extensions-1.3.1-py3-none-any.whl#sha256=96d3de4d034504e969ac5e85bae8106c8373b5c6568e4c8fa7af2eca9dbe6bca oauthlib @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/oauthlib/oauthlib-3.3.1-py3-none-any.whl#sha256=88119c938d2b8fb88561af5f6ee0eec8cc8d552b7bb1f712743136eb7523b7a1 -opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.41.1-py3-none-any.whl#sha256=a22df900e75c76dc08440710e51f52f1aa6b451b429298896023e60db5b3139f +opentelemetry-api @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/opentelemetry-api/opentelemetry_api-1.42.0-py3-none-any.whl#sha256=558d88f88192a973579910ef6f2c13db47a268d5ec2e53e83e50e74a39a02922 orjson @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/orjson/orjson-3.11.7-cp313-cp313-win_amd64.whl#sha256=b9f95dcdea9d4f805daa9ddf02617a89e484c6985fa03055459f90e87d7a0757 packaging @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/packaging/packaging-26.0-py3-none-any.whl#sha256=b36f1fef9334a5588b4166f8bcd26a14e521f2b55e6b9de3aaa80d3ff7a37529 paramiko @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/paramiko/paramiko-4.0.0-py3-none-any.whl#sha256=0e20e00ac666503bf0b4eda3b6d833465a2b7aff2e2b3d79a8bba5ef144ee3b9 @@ -113,5 +112,4 @@ typing-inspection @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEE tzdata @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/tzdata/tzdata-2026.2-py2.py3-none-any.whl#sha256=bbe9af844f658da81a5f95019480da3a89415801f6cc966806612cc7169bffe7 urllib3 @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/urllib3/urllib3-2.6.3-py3-none-any.whl#sha256=bf272323e553dfb2e87d9bfd225ca7b0f467b919d7bbd355436d3fd37cb0acd4 wrapt @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/wrapt/wrapt-2.1.2-cp313-cp313-win_amd64.whl#sha256=f8bc1c264d8d1cf5b3560a87bbdd31131573eb25f9f9447bb6252b8d4c44a3a1 -zipp @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zipp/zipp-3.23.1-py3-none-any.whl#sha256=0b3596c50a5c700c9cb40ba8d86d9f2cc4807e9bedb06bcdf7fac85633e444dc zstandard @ https://agent-int-packages.datadoghq.com/${INTEGRATIONS_WHEELS_STORAGE}/external/zstandard/zstandard-0.25.0-cp313-cp313-win_amd64.whl#sha256=1f830a0dac88719af0ae43b8b2d6aef487d437036468ef3c2ea59c51f9d55fd5 diff --git a/.github/workflows/test-all.yml b/.github/workflows/test-all.yml index 8d60ea2567f71..8a1d4ccb8b92c 100644 --- a/.github/workflows/test-all.yml +++ b/.github/workflows/test-all.yml @@ -736,6 +736,7 @@ jobs: - py3.13-23.8 - py3.13-24.8 - py3.13-25.3 + - py3.13-25.8 fail-fast: false j4131274: uses: ./.github/workflows/test-target.yml diff --git a/apache/manifest.json b/apache/manifest.json index 53f37e72079ed..4566505882a39 100644 --- a/apache/manifest.json +++ b/apache/manifest.json @@ -14,6 +14,7 @@ "media": [], "classifier_tags": [ "Category::Log Collection", + "Category::SIEM", "Supported OS::Linux", "Supported OS::Windows", "Supported OS::macOS", @@ -80,4 +81,4 @@ "apache_processes": "assets/saved_views/apache_processes.json" } } -} \ No newline at end of file +} diff --git a/arctic_wolf_aurora_endpoint_security/manifest.json b/arctic_wolf_aurora_endpoint_security/manifest.json index 45346e4cbb4df..e72d94413b5a0 100644 --- a/arctic_wolf_aurora_endpoint_security/manifest.json +++ b/arctic_wolf_aurora_endpoint_security/manifest.json @@ -59,6 +59,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/asana/manifest.json b/asana/manifest.json index 008cf5f1aa31a..54751fa722a42 100644 --- a/asana/manifest.json +++ b/asana/manifest.json @@ -21,6 +21,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] @@ -50,4 +51,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/avast/manifest.json b/avast/manifest.json index 67f79b0bb7667..c88ddea9cefa5 100644 --- a/avast/manifest.json +++ b/avast/manifest.json @@ -31,6 +31,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/barracuda_secure_edge/manifest.json b/barracuda_secure_edge/manifest.json index 129ee28345d25..e6c091ad32bcf 100644 --- a/barracuda_secure_edge/manifest.json +++ b/barracuda_secure_edge/manifest.json @@ -29,6 +29,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Queried Data Type::Logs", "Submitted Data Type::Logs" diff --git a/beyondtrust_identity_security_insights/manifest.json b/beyondtrust_identity_security_insights/manifest.json index 1a558fe205773..4ad58b5e5dd74 100644 --- a/beyondtrust_identity_security_insights/manifest.json +++ b/beyondtrust_identity_security_insights/manifest.json @@ -27,6 +27,7 @@ "Category::Log Collection", "Offering::Integration", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs" ] }, @@ -52,4 +53,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/beyondtrust_password_safe/manifest.json b/beyondtrust_password_safe/manifest.json index ae7b83ae193fd..2742f5ac33edb 100644 --- a/beyondtrust_password_safe/manifest.json +++ b/beyondtrust_password_safe/manifest.json @@ -39,6 +39,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/beyondtrust_privileged_remote_access/manifest.json b/beyondtrust_privileged_remote_access/manifest.json index b386642be5168..ae68ed463be71 100644 --- a/beyondtrust_privileged_remote_access/manifest.json +++ b/beyondtrust_privileged_remote_access/manifest.json @@ -56,6 +56,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Supported OS::Linux", "Offering::Integration", "Submitted Data Type::Logs", diff --git a/bitdefender/manifest.json b/bitdefender/manifest.json index 7b36ea1b5e33c..790cc7f178008 100644 --- a/bitdefender/manifest.json +++ b/bitdefender/manifest.json @@ -59,6 +59,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/bitwarden/manifest.json b/bitwarden/manifest.json index bcc0023361a40..0bdad8a587f5f 100644 --- a/bitwarden/manifest.json +++ b/bitwarden/manifest.json @@ -36,6 +36,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/bluecat_edge/manifest.json b/bluecat_edge/manifest.json index 3558c21cb0a4e..7e0e00fa0ae27 100644 --- a/bluecat_edge/manifest.json +++ b/bluecat_edge/manifest.json @@ -37,6 +37,7 @@ "Category::Log Collection", "Category::Network", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/bluecat_integrity/manifest.json b/bluecat_integrity/manifest.json index 282c22cd24f13..dfa9b1da9ae1f 100644 --- a/bluecat_integrity/manifest.json +++ b/bluecat_integrity/manifest.json @@ -46,6 +46,7 @@ "classifier_tags": [ "Category::Network", "Category::Security", + "Category::SIEM", "Category::Log Collection", "Submitted Data Type::Logs", "Offering::Integration" diff --git a/box/manifest.json b/box/manifest.json index a9ca5621c9f9d..f1dab55691b9c 100644 --- a/box/manifest.json +++ b/box/manifest.json @@ -37,6 +37,7 @@ "Category::Collaboration", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/carbon_black_cloud/manifest.json b/carbon_black_cloud/manifest.json index 990ea36f22afa..1e0101163748d 100644 --- a/carbon_black_cloud/manifest.json +++ b/carbon_black_cloud/manifest.json @@ -47,6 +47,7 @@ "Category::AWS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/cato_networks/manifest.json b/cato_networks/manifest.json index e816cab74b472..84e70f1b447ba 100644 --- a/cato_networks/manifest.json +++ b/cato_networks/manifest.json @@ -56,6 +56,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Category::Cloud", "Offering::Integration", "Submitted Data Type::Logs" diff --git a/checkpoint_harmony_email_and_collaboration/manifest.json b/checkpoint_harmony_email_and_collaboration/manifest.json index 325c4913470ff..59b56e46d9a28 100644 --- a/checkpoint_harmony_email_and_collaboration/manifest.json +++ b/checkpoint_harmony_email_and_collaboration/manifest.json @@ -32,6 +32,7 @@ "Category::Log Collection", "Category::Security", "Category::Collaboration", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -60,4 +61,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/checkpoint_harmony_endpoint/manifest.json b/checkpoint_harmony_endpoint/manifest.json index 7b1d4afe53c78..5d211c13c716f 100644 --- a/checkpoint_harmony_endpoint/manifest.json +++ b/checkpoint_harmony_endpoint/manifest.json @@ -29,6 +29,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Queried Data Type::Logs", "Submitted Data Type::Logs" diff --git a/checkpoint_quantum_firewall/manifest.json b/checkpoint_quantum_firewall/manifest.json index 439eeef5fdbda..927341ba93eb1 100644 --- a/checkpoint_quantum_firewall/manifest.json +++ b/checkpoint_quantum_firewall/manifest.json @@ -59,6 +59,7 @@ "Supported OS::macOS", "Category::Security", "Category::Network", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/cisco_asa/manifest.json b/cisco_asa/manifest.json index 2022338395c2e..86cdf14e8c4a2 100644 --- a/cisco_asa/manifest.json +++ b/cisco_asa/manifest.json @@ -60,6 +60,7 @@ "Category::Security", "Category::Network", "Category::Log Collection", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -90,4 +91,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/cisco_duo/manifest.json b/cisco_duo/manifest.json index 09d1608bc323e..24f01f3275113 100644 --- a/cisco_duo/manifest.json +++ b/cisco_duo/manifest.json @@ -41,6 +41,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] @@ -71,4 +72,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/cisco_secure_client/manifest.json b/cisco_secure_client/manifest.json index 9fc4b4ac0e245..c64e6c2d62e75 100644 --- a/cisco_secure_client/manifest.json +++ b/cisco_secure_client/manifest.json @@ -50,6 +50,7 @@ "Category::Network", "Category::Security", "Category::Log Collection", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] @@ -83,4 +84,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/cisco_secure_email_threat_defense/manifest.json b/cisco_secure_email_threat_defense/manifest.json index 4b00bc06e744c..5f2c35d75d6e6 100644 --- a/cisco_secure_email_threat_defense/manifest.json +++ b/cisco_secure_email_threat_defense/manifest.json @@ -22,6 +22,7 @@ "Category::Log Collection", "Category::Security", "Category::Cloud", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/cisco_secure_endpoint/manifest.json b/cisco_secure_endpoint/manifest.json index 155cdd513389a..64077030bc479 100644 --- a/cisco_secure_endpoint/manifest.json +++ b/cisco_secure_endpoint/manifest.json @@ -27,6 +27,7 @@ "Category::Log Collection", "Category::Security", "Category::Cloud", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/cisco_secure_firewall/manifest.json b/cisco_secure_firewall/manifest.json index f71d3f0f8607f..f56d5a93f812f 100644 --- a/cisco_secure_firewall/manifest.json +++ b/cisco_secure_firewall/manifest.json @@ -60,6 +60,7 @@ "Category::Network", "Category::Security", "Category::Log Collection", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] @@ -102,4 +103,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/cisco_secure_web_appliance/manifest.json b/cisco_secure_web_appliance/manifest.json index c8a016517f33d..c9aa33c5e477e 100644 --- a/cisco_secure_web_appliance/manifest.json +++ b/cisco_secure_web_appliance/manifest.json @@ -29,6 +29,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/cisco_umbrella_dns/manifest.json b/cisco_umbrella_dns/manifest.json index c3221f0b40049..73029ab9bd810 100644 --- a/cisco_umbrella_dns/manifest.json +++ b/cisco_umbrella_dns/manifest.json @@ -27,6 +27,7 @@ "Category::Log Collection", "Category::Network", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] @@ -54,4 +55,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/clickhouse/README.md b/clickhouse/README.md index 7c1d5c4fb5f67..3fa77877157cd 100644 --- a/clickhouse/README.md +++ b/clickhouse/README.md @@ -106,7 +106,7 @@ See [service_checks.json][9] for a list of service checks provided by this integ Need help? Contact [Datadog support][10]. -[1]: https://clickhouse.yandex +[1]: https://clickhouse.com/ [2]: https://docs.datadoghq.com/agent/kubernetes/integrations/ [3]: /account/settings/agent/latest [4]: https://github.com/DataDog/integrations-core/blob/master/clickhouse/datadog_checks/clickhouse/data/conf.yaml.example diff --git a/clickhouse/assets/configuration/spec.yaml b/clickhouse/assets/configuration/spec.yaml index 15f566e4b4e44..f2aa3c5733635 100644 --- a/clickhouse/assets/configuration/spec.yaml +++ b/clickhouse/assets/configuration/spec.yaml @@ -120,6 +120,16 @@ files: value: type: boolean example: false + - name: use_legacy_queries + description: Enable the legacy query set for collecting metrics. Set to `false` to disable. + value: + type: boolean + example: true + - name: use_advanced_queries + description: Enable the advanced query set for collecting metrics. Set to `false` to disable. + value: + type: boolean + example: true - name: query_samples description: Configure collection of database samples snapshots from system.processes options: @@ -405,16 +415,42 @@ files: - template: logs example: - source: clickhouse + service: clickhouse + type: file + path: /var/log/clickhouse-server/clickhouse-server.log + tags: + - format:plain + log_processing_rules: + - type: multi_line + name: new_log_start_with_date + pattern: '\d{4}\.\d{2}\.\d{2}' + - source: clickhouse + service: clickhouse + type: file + path: /var/log/clickhouse-server/clickhouse-server.err.log + tags: + - format:plain + log_processing_rules: + - type: multi_line + name: new_log_start_with_date + pattern: '\d{4}\.\d{2}\.\d{2}' + - source: clickhouse + service: clickhouse type: file path: /var/log/clickhouse-server/clickhouse-server.log + tags: + - format:json log_processing_rules: - type: multi_line - name: log_start_with_date - pattern: \d{4}\.\d{2}\.\d{2} + name: new_log_start_with_json + pattern: '\{' - source: clickhouse + service: clickhouse type: file path: /var/log/clickhouse-server/clickhouse-server.err.log + tags: + - format:json log_processing_rules: - type: multi_line - name: log_start_with_date - pattern: \d{4}\.\d{2}\.\d{2} + name: new_log_start_with_json + pattern: '\{' diff --git a/clickhouse/assets/dashboards/overview.json b/clickhouse/assets/dashboards/overview.json index 04e9b1959e73e..70fa1189d46ad 100644 --- a/clickhouse/assets/dashboards/overview.json +++ b/clickhouse/assets/dashboards/overview.json @@ -1,463 +1,2311 @@ { - "title": "ClickHouse Overview", + "author_name": "Datadog", "description": "## ClickHouse Dashboard\n\nThis is an example ClickHouse dashboard demonstrating the metrics that the integration collects.", - "widgets": [ - { - "id": 0, - "definition": { - "type": "image", - "url": "/static/images/logos/clickhouse_large.svg", - "sizing": "zoom" - }, - "layout": { - "x": 0, - "y": 0, - "width": 26, - "height": 12 - } - }, + "layout_type": "ordered", + "template_variables": [ { - "id": 1, - "definition": { - "type": "note", - "content": "Insertion", - "background_color": "gray", - "font_size": "18", - "text_align": "center", - "show_tick": true, - "tick_pos": "50%", - "tick_edge": "bottom" - }, - "layout": { - "x": 28, - "y": 0, - "width": 70, - "height": 8 - } - }, + "available_values": [], + "default": "*", + "name": "host", + "prefix": "host" + } + ], + "title": "ClickHouse Overview", + "widgets": [ { - "id": 2, "definition": { - "type": "timeseries", - "requests": [ + "background_color": "blue", + "layout_type": "ordered", + "show_title": true, + "title": "Service Overview", + "type": "group", + "widgets": [ { - "q": "avg:clickhouse.table.insert.size.count{$host}.as_count()", - "display_type": "bars", - "style": { - "palette": "dog_classic", - "line_type": "solid", - "line_width": "normal" + "definition": { + "sizing": "zoom", + "type": "image", + "url": "/static/images/logos/clickhouse_large.svg" + }, + "id": 5764316427665224, + "layout": { + "height": 2, + "width": 2, + "x": 0, + "y": 0 } - } - ], - "custom_links": [], - "title": "Bytes per second", - "title_size": "16", - "title_align": "left", - "show_legend": false, - "legend_size": "0" - }, - "layout": { - "x": 28, - "y": 10, - "width": 34, - "height": 15 - } - }, - { - "id": 3, - "definition": { - "type": "timeseries", - "requests": [ + }, { - "q": "avg:clickhouse.table.mergetree.insert.delayed.count{$host}.as_count()", - "display_type": "bars", - "style": { - "palette": "dog_classic", - "line_type": "solid", - "line_width": "normal" + "definition": { + "autoscale": true, + "precision": 0, + "requests": [ + { + "formulas": [ + { + "formula": "query1", + "number_format": { + "unit": { + "type": "canonical_unit" + } + } + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.asynchronous_metrics.NumberOfDatabases{$host}" + } + ], + "response_format": "scalar" + } + ], + "title": "Number of databases", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 1895617520464427, + "layout": { + "height": 1, + "width": 2, + "x": 2, + "y": 0 } - } - ], - "custom_links": [], - "title": "Delayed inserts per second", - "title_size": "16", - "title_align": "left", - "show_legend": false, - "legend_size": "0" - }, - "layout": { - "x": 64, - "y": 26, - "width": 34, - "height": 15 - } - }, - { - "id": 4, - "definition": { - "type": "timeseries", - "requests": [ + }, { - "q": "avg:clickhouse.table.insert.row.count{$host}.as_count()", - "display_type": "bars", - "style": { - "palette": "dog_classic", - "line_type": "solid", - "line_width": "normal" + "definition": { + "autoscale": true, + "precision": 2, + "requests": [ + { + "formulas": [ + { + "formula": "query1", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "byte_in_decimal_bytes_family" + } + } + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.asynchronous_metrics.TotalBytesOfMergeTreeTables{$host}" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area", + "yaxis": { + "include_zero": true + } + }, + "title": "Total data in MergeTree tables", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 417951404553199, + "layout": { + "height": 2, + "width": 2, + "x": 4, + "y": 0 } - } - ], - "custom_links": [], - "title": "Rows per second", - "title_size": "16", - "title_align": "left", - "show_legend": false, - "legend_size": "0" - }, - "layout": { - "x": 64, - "y": 10, - "width": 34, - "height": 15 - } - }, - { - "id": 5, - "definition": { - "type": "timeseries", - "requests": [ + }, { - "q": "avg:clickhouse.query.insert.count{$host}.as_count()", - "display_type": "bars", - "style": { - "palette": "dog_classic", - "line_type": "solid", - "line_width": "normal" + "definition": { + "autoscale": true, + "precision": 2, + "requests": [ + { + "formulas": [ + { + "formula": "query1", + "number_format": { + "unit": { + "per_unit_name": "second", + "type": "canonical_unit", + "unit_name": "byte_in_decimal_bytes_family" + } + } + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.SelectedBytes.count{$host}.as_rate()" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area", + "yaxis": { + "include_zero": true + } + }, + "title": "Data selected per second", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 8035765627629770, + "layout": { + "height": 2, + "width": 2, + "x": 6, + "y": 0 } - } - ], - "custom_links": [], - "title": "Inserts per second", - "title_size": "16", - "title_align": "left", - "show_legend": false, - "legend_size": "0" - }, - "layout": { - "x": 28, - "y": 26, - "width": 34, - "height": 15 - } - }, - { - "id": 6, - "definition": { - "type": "query_value", - "requests": [ + }, + { + "definition": { + "autoscale": true, + "precision": 2, + "requests": [ + { + "formulas": [ + { + "formula": "query1", + "number_format": { + "unit": { + "per_unit_name": "second", + "type": "canonical_unit", + "unit_name": "byte_in_decimal_bytes_family" + } + } + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.MergeTreeDataWriterUncompressedBytes.count{$host}.as_rate()" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area", + "yaxis": { + "include_zero": true + } + }, + "title": "Data inserted per second", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 6858505644032706, + "layout": { + "height": 2, + "width": 2, + "x": 8, + "y": 0 + } + }, + { + "definition": { + "autoscale": true, + "precision": 0, + "requests": [ + { + "formulas": [ + { + "formula": "query1 + query2" + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.metrics.HTTPConnection{$host}" + }, + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query2", + "query": "avg:clickhouse.metrics.TCPConnection{$host}" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area" + }, + "title": "Active HTTP/TCP Connections", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 8256573178191249, + "layout": { + "height": 2, + "width": 2, + "x": 10, + "y": 0 + } + }, + { + "definition": { + "autoscale": true, + "precision": 0, + "requests": [ + { + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.asynchronous_metrics.NumberOfTables{$host}" + } + ], + "response_format": "scalar" + } + ], + "title": "Number of tables", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 4162078586401351, + "layout": { + "height": 1, + "width": 2, + "x": 2, + "y": 1 + } + }, + { + "definition": { + "autoscale": true, + "precision": 1, + "requests": [ + { + "conditional_formats": [ + { + "comparator": ">", + "palette": "white_on_green", + "value": 0 + }, + { + "comparator": ">=", + "palette": "white_on_yellow", + "value": 60 + }, + { + "comparator": ">=", + "palette": "white_on_red", + "value": 80 + } + ], + "formulas": [ + { + "formula": "(query1 + query2) * 100" + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.asynchronous_metrics.OSUserTimeNormalized{$host}" + }, + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query2", + "query": "avg:clickhouse.asynchronous_metrics.OSSystemTimeNormalized{$host}" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area" + }, + "title": "Max Server CPU Usage", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 5942031891537476, + "layout": { + "height": 2, + "width": 2, + "x": 0, + "y": 2 + } + }, + { + "definition": { + "autoscale": true, + "precision": 1, + "requests": [ + { + "conditional_formats": [ + { + "comparator": ">", + "palette": "white_on_green", + "value": 0 + }, + { + "comparator": ">=", + "palette": "white_on_yellow", + "value": 60 + }, + { + "comparator": ">=", + "palette": "white_on_red", + "value": 80 + } + ], + "formulas": [ + { + "formula": "query1 / query2 * 100", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "percent" + } + } + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.metrics.MemoryTracking{$host}" + }, + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query2", + "query": "avg:clickhouse.asynchronous_metrics.OSMemoryTotal{$host}" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area" + }, + "title": "Max Server Memory Usage", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 1537151942731114, + "layout": { + "height": 2, + "width": 2, + "x": 2, + "y": 2 + } + }, + { + "definition": { + "autoscale": true, + "precision": 0, + "requests": [ + { + "conditional_formats": [ + { + "comparator": ">", + "palette": "white_on_green", + "value": 0 + }, + { + "comparator": ">=", + "palette": "white_on_yellow", + "value": 200 + }, + { + "comparator": ">=", + "palette": "white_on_red", + "value": 300 + } + ], + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.asynchronous_metrics.MaxPartCountForPartition{$host}" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area" + }, + "title": "Max Parts Per Partition", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 4097650215759096, + "layout": { + "height": 2, + "width": 2, + "x": 4, + "y": 2 + } + }, + { + "definition": { + "autoscale": false, + "precision": 2, + "requests": [ + { + "conditional_formats": [ + { + "comparator": ">=", + "palette": "white_on_green", + "value": 0 + }, + { + "comparator": ">=", + "palette": "white_on_yellow", + "value": 0.2 + }, + { + "comparator": ">=", + "palette": "white_on_red", + "value": 0.5 + } + ], + "formulas": [ + { + "formula": "query1 / query2", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "percent" + } + } + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.events.FailedSelectQuery.count{$host}.as_rate()" + }, + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query2", + "query": "avg:clickhouse.events.SelectQuery.count{$host}.as_rate()" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area" + }, + "title": "Max Percent of Failed SELECTs", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 4846722208943930, + "layout": { + "height": 2, + "width": 2, + "x": 6, + "y": 2 + } + }, { - "q": "avg:clickhouse.uptime{$host}", - "aggregator": "last" + "definition": { + "autoscale": false, + "precision": 2, + "requests": [ + { + "conditional_formats": [ + { + "comparator": ">=", + "palette": "white_on_green", + "value": 0 + }, + { + "comparator": ">=", + "palette": "white_on_yellow", + "value": 0.1 + }, + { + "comparator": ">=", + "palette": "white_on_red", + "value": 0.5 + } + ], + "formulas": [ + { + "formula": "(query1 + query2) / (query3 + query4)", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "percent" + } + } + } + ], + "queries": [ + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.events.FailedInsertQuery.count{$host}.as_rate()" + }, + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query2", + "query": "avg:clickhouse.events.events.FailedAsyncInsertQuery.count{$host}.as_rate()" + }, + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query3", + "query": "avg:clickhouse.events.InsertQuery.count{$host}.as_rate()" + }, + { + "aggregator": "avg", + "data_source": "metrics", + "name": "query4", + "query": "avg:clickhouse.events.events.AsyncInsertQuery.count{$host}.as_rate()" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area" + }, + "title": "Max Percent of Failed INSERTs", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 8876929136187786, + "layout": { + "height": 2, + "width": 2, + "x": 8, + "y": 2 + } + }, + { + "definition": { + "autoscale": true, + "precision": 2, + "requests": [ + { + "conditional_formats": [ + { + "comparator": ">=", + "palette": "white_on_green", + "value": 0 + }, + { + "comparator": ">=", + "palette": "white_on_yellow", + "value": 5 + } + ], + "formulas": [ + { + "formula": "derivative(query1)" + } + ], + "queries": [ + { + "aggregator": "last", + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.events.LogError.total{$host}" + } + ], + "response_format": "scalar" + } + ], + "timeseries_background": { + "type": "area" + }, + "title": "Max logged errors", + "title_align": "left", + "title_size": "16", + "type": "query_value" + }, + "id": 2481116336939173, + "layout": { + "height": 2, + "width": 2, + "x": 10, + "y": 2 + } } - ], - "custom_links": [], - "title": "Uptime", - "title_size": "16", - "title_align": "left", - "autoscale": true, - "precision": 2 + ] }, + "id": 2794871871549802, "layout": { + "height": 5, + "width": 12, "x": 0, - "y": 14, - "width": 26, - "height": 17 + "y": 0 } }, { - "id": 7, "definition": { - "type": "note", - "content": "Active connections", - "background_color": "gray", - "font_size": "18", - "text_align": "center", - "show_tick": true, - "tick_pos": "50%", - "tick_edge": "bottom" - }, - "layout": { - "x": 0, - "y": 33, - "width": 26, - "height": 8 - } - }, - { - "id": 8, - "definition": { - "type": "query_value", - "requests": [ + "background_color": "blue", + "layout_type": "ordered", + "show_title": true, + "title": "Resource Usage", + "type": "group", + "widgets": [ { - "q": "avg:clickhouse.connection.http{$host}", - "aggregator": "last" + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "horizontal", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "throughput(query1)", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "core" + } + } + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.events.OSCPUVirtualTimeMicroseconds{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": false, + "time": {}, + "title": "CPU Cores Used by Queries/Merges", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 4530172737349968, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 0 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "horizontal", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "alias": "Normalized CPU", + "formula": "(query1 + query2) * 100", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "percent" + } + } + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.asynchronous_metrics.OSUserTimeNormalized{$host}" + }, + { + "data_source": "metrics", + "name": "query2", + "query": "avg:clickhouse.asynchronous_metrics.OSSystemTimeNormalized{$host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": false, + "time": {}, + "title": "Normalized CPU usage", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 6349995027913271, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 0 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "horizontal", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "byte_in_decimal_bytes_family" + } + } + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.metrics.MemoryTracking{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": false, + "time": {}, + "title": "Memory Usage (RSS)", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 4077136782935358, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 2 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.metrics.TCPConnection{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": false, + "time": {}, + "title": "Server Connections (TCP)", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 2340660657448585, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 2 + } + }, + { + "definition": { + "legend_columns": [ + "value" + ], + "legend_layout": "auto", + "markers": [], + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "alias": "received", + "formula": "query1", + "number_format": { + "unit": { + "per_unit_name": "second", + "type": "canonical_unit", + "unit_name": "byte_in_decimal_bytes_family" + } + } + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.NetworkReceiveBytes.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "order_reverse": false, + "palette": "dog_classic" + } + }, + { + "display_type": "line", + "formulas": [ + { + "alias": "sent", + "formula": "query0" + } + ], + "on_right_yaxis": true, + "queries": [ + { + "data_source": "metrics", + "name": "query0", + "query": "sum:clickhouse.events.NetworkSendBytes.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "order_reverse": false, + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "time": {}, + "title": "Network Usage", + "title_align": "left", + "title_size": "16", + "type": "timeseries", + "yaxis": { + "include_zero": true, + "scale": "linear" + } + }, + "id": 60505037593735, + "layout": { + "height": 2, + "width": 12, + "x": 0, + "y": 4 + } } - ], - "custom_links": [], - "title": "HTTP", - "title_size": "16", - "title_align": "left", - "autoscale": true, - "precision": 2 + ] }, + "id": 5910515090391063, "layout": { + "height": 7, + "width": 12, "x": 0, - "y": 43, - "width": 26, - "height": 6 + "y": 5 } }, { - "id": 9, "definition": { - "type": "query_value", - "requests": [ + "background_color": "blue", + "layout_type": "ordered", + "show_title": true, + "title": "Queries Overview", + "type": "group", + "widgets": [ + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.Query.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Total Queries", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 2094024551391421, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 0 + } + }, { - "q": "avg:clickhouse.connection.tcp{$host}", - "aggregator": "last" + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "throughput(query1) / query2", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "microsecond" + } + } + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.events.QueryTimeMicroseconds{$host} by {host}" + }, + { + "data_source": "metrics", + "name": "query2", + "query": "sum:clickhouse.events.Query.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Query latency (average)", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 3166284248131607, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 0 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.QueryMemoryLimitExceeded.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Queries with MEMORY_LIMIT_EXCEEDED", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 3707245391804739, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 2 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.FailedQuery.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Failed Queries", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 6217137121670019, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 2 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.SelectQuery.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "SELECT Queries", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 335114273420748, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 4 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.InsertQuery.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Synchronous INSERT Queries", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 7997313230684699, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 4 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.FailedSelectQuery.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Failed SELECT Queries", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 3883456223499858, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 6 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.FailedInsertQuery.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Failed Synchronous INSERT Queries", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 7880037430408383, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 6 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "throughput(query1) / query2", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "microsecond" + } + } + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.events.SelectQueryTimeMicroseconds{$host} by {host}" + }, + { + "data_source": "metrics", + "name": "query2", + "query": "sum:clickhouse.events.SelectQuery.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "SELECT query latency (average)", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 4542132281779956, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 8 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "throughput(query1) / query2", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "microsecond" + } + } + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.events.InsertQueryTimeMicroseconds{$host} by {host}" + }, + { + "data_source": "metrics", + "name": "query2", + "query": "sum:clickhouse.events.InsertQuery.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Synchronous INSERT query latency (average)", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 6161541427664761, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 8 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.AsyncInsertQuery.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Asynchronous INSERT Queries", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 421112828613415, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 10 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.FailedAsyncInsertQuery.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Failed Asynchronous INSERT Queries", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 4478182648845564, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 10 + } } - ], - "custom_links": [], - "title": "TCP", - "title_size": "16", - "title_align": "left", - "autoscale": true, - "precision": 2 + ] }, + "id": 703548159870290, "layout": { + "height": 13, + "width": 12, "x": 0, - "y": 50, - "width": 26, - "height": 6 + "y": 12 } }, { - "id": 10, "definition": { - "type": "query_value", - "requests": [ + "background_color": "blue", + "layout_type": "ordered", + "show_title": true, + "title": "Merges Overview", + "type": "group", + "widgets": [ { - "q": "avg:clickhouse.connection.interserver{$host}", - "aggregator": "last" + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.Merge.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Merges", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 7663827226666638, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 0 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.metrics.PartMutation{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Mutations", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 8471900967393056, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 0 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1", + "number_format": { + "unit": { + "type": "canonical_unit", + "unit_name": "byte_in_decimal_bytes_family" + } + } + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "avg:clickhouse.metrics.MergesMutationsMemoryTracking{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Memory used by mutations & merges", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 3048800568482802, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 2 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.MergedRows.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Merged rows", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 4848789002410075, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 2 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1", + "number_format": { + "unit": { + "per_unit_name": "second", + "type": "canonical_unit", + "unit_name": "byte_in_decimal_bytes_family" + } + } + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "sum:clickhouse.events.MergedUncompressedBytes.count{$host} by {host}.as_rate()" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Merged bytes (uncompressed)", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 3555325623303214, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 4 + } } - ], - "custom_links": [], - "title": "Interserver", - "title_size": "16", - "title_align": "left", - "autoscale": true, - "precision": 2 + ] }, + "id": 7278456602880349, "layout": { + "height": 7, + "width": 12, "x": 0, - "y": 57, - "width": 26, - "height": 6 + "y": 25 } }, { - "id": 11, "definition": { - "type": "note", - "content": "Replication", - "background_color": "gray", - "font_size": "18", - "text_align": "center", - "show_tick": true, - "tick_pos": "50%", - "tick_edge": "bottom" - }, - "layout": { - "x": 100, - "y": 0, - "width": 71, - "height": 8 - } - }, - { - "id": 12, - "definition": { - "type": "timeseries", - "requests": [ + "background_color": "blue", + "layout_type": "ordered", + "show_title": true, + "title": "Parts Stats", + "type": "group", + "widgets": [ { - "q": "avg:clickhouse.table.replicated.part.check{$host}", - "display_type": "line", - "style": { - "palette": "dog_classic", - "line_type": "solid", - "line_width": "normal" + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.asynchronous_metrics.TotalPartsOfMergeTreeTables{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Total parts", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 478139865127726, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 0 } - } - ], - "custom_links": [], - "title": "Checks", - "title_size": "16", - "title_align": "left", - "show_legend": false, - "legend_size": "0" - }, - "layout": { - "x": 104, - "y": 10, - "width": 63, - "height": 15 - } - }, - { - "id": 13, - "definition": { - "type": "timeseries", - "requests": [ + }, { - "q": "avg:clickhouse.table.replicated.part.fetch{$host}", - "display_type": "line", - "style": { - "palette": "dog_classic", - "line_type": "solid", - "line_width": "normal" + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.metrics.PartsPreActive{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Pre-active parts", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 6139980056101870, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 0 } - } - ], - "custom_links": [], - "title": "Fetch", - "title_size": "16", - "title_align": "left", - "show_legend": false, - "legend_size": "0" - }, - "layout": { - "x": 104, - "y": 26, - "width": 63, - "height": 15 - } - }, - { - "id": 14, - "definition": { - "type": "timeseries", - "requests": [ + }, { - "q": "avg:clickhouse.table.replicated.part.send{$host}", - "display_type": "line", - "style": { - "palette": "dog_classic", - "line_type": "solid", - "line_width": "normal" + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.metrics.PartsTemporary{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Temporary parts", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 1997066867035733, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 2 } - } - ], - "custom_links": [], - "title": "Send", - "title_size": "16", - "title_align": "left", - "show_legend": false, - "legend_size": "0" - }, - "layout": { - "x": 104, - "y": 42, - "width": 63, - "height": 15 - } - }, - { - "id": 15, - "definition": { - "type": "note", - "content": "Query", - "background_color": "gray", - "font_size": "18", - "text_align": "center", - "show_tick": true, - "tick_pos": "50%", - "tick_edge": "bottom" - }, - "layout": { - "x": 28, - "y": 43, - "width": 70, - "height": 8 - } - }, - { - "id": 16, - "definition": { - "type": "timeseries", - "requests": [ + }, { - "q": "avg:clickhouse.query.active{$host}", - "display_type": "line", - "style": { - "palette": "dog_classic", - "line_type": "solid", - "line_width": "normal" + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.metrics.PartsOutdated{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Outdated parts", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 6246036345627431, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 2 } - } - ], - "custom_links": [], - "title": "Active", - "title_size": "16", - "title_align": "left", - "show_legend": false, - "legend_size": "0" - }, - "layout": { - "x": 28, - "y": 53, - "width": 34, - "height": 15 - } - }, - { - "id": 17, - "definition": { - "type": "timeseries", - "requests": [ + }, { - "q": "avg:clickhouse.query.memory{$host}", - "display_type": "line", - "style": { - "palette": "dog_classic", - "line_type": "solid", - "line_width": "normal" + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.metrics.PartsActive{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Active parts", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 1490221204129830, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 4 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.metrics.PartsDeleting{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Parts being deleted", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 7286148043072935, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 4 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.metrics.PartsCompact{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Compact parts", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 8515812189807602, + "layout": { + "height": 2, + "width": 6, + "x": 0, + "y": 6 + } + }, + { + "definition": { + "legend_columns": [ + "avg", + "min", + "max", + "value", + "sum" + ], + "legend_layout": "auto", + "requests": [ + { + "display_type": "line", + "formulas": [ + { + "formula": "query1" + } + ], + "queries": [ + { + "data_source": "metrics", + "name": "query1", + "query": "max:clickhouse.metrics.PartsWide{$host} by {host}" + } + ], + "response_format": "timeseries", + "style": { + "line_type": "solid", + "line_width": "normal", + "order_by": "values", + "palette": "dog_classic" + } + } + ], + "show_legend": true, + "title": "Wide parts", + "title_align": "left", + "title_size": "16", + "type": "timeseries" + }, + "id": 3471941784089904, + "layout": { + "height": 2, + "width": 6, + "x": 6, + "y": 6 } } - ], - "custom_links": [], - "title": "Memory in use", - "title_size": "16", - "title_align": "left", - "show_legend": false, - "legend_size": "0" + ] }, + "id": 2681620878265490, "layout": { - "x": 64, - "y": 53, - "width": 34, - "height": 15 + "height": 9, + "width": 12, + "x": 0, + "y": 32 } } - ], - "template_variables": [ - { - "name": "host", - "default": "*", - "prefix": "host" - } - ], - "layout_type": "free", - "is_read_only": true, - "notify_list": [] -} + ] +} \ No newline at end of file diff --git a/clickhouse/assets/logs/clickhouse.yaml b/clickhouse/assets/logs/clickhouse.yaml index cac648d1397cc..754f0522a879c 100644 --- a/clickhouse/assets/logs/clickhouse.yaml +++ b/clickhouse/assets/logs/clickhouse.yaml @@ -35,8 +35,9 @@ pipeline: matchRules: | clickhouse %{_date} \[ %{_pid} \] \{%{_uuid}\} <%{_level}> (%{_service_common}( %{_app})?|%{_service_verbose}): %{data:message} samples: - - '2019.11.06 05:19:07.473780 [ 7 ] {} default.tableau (ReplicatedMergeTreeQueue): Loaded queue' - - '2019.11.06 05:19:07.489819 [ 32 ] {a05c4495-ebdb-4f1d-894a-523a8d3a1d5f} executeQuery: (from 127.0.0.1:43218) INSERT INTO tableau VALUES' + - '2025.09.01 13:39:22.975130 [ 81 ] {} Application: Integrity check of the executable skipped because the reference checksum could not be read.' + - '2025.09.01 14:09:28.195723 [ 1110 ] {} system.query_log (fedb888e-9036-4aa8-b24d-0e8bd6840a33) (MergerMutator): Selected 6 parts from 202509_1_84_17 to 202509_89_89_0. Merge selecting phase took: 0ms' + - '2025.09.01 14:09:28.208450 [ 1355 ] {fedb888e-9036-4aa8-b24d-0e8bd6840a33::202509_1_89_18} system.query_log (fedb888e-9036-4aa8-b24d-0e8bd6840a33) (MergerMutator): Merged 6 parts: [202509_1_84_17, 202509_89_89_0] -> 202509_1_89_18' - type: date-remapper name: Define `timestamp` as the official date of the log enabled: true diff --git a/clickhouse/changelog.d/21294.changed b/clickhouse/changelog.d/21294.changed new file mode 100644 index 0000000000000..1c2d4e5dfe8f2 --- /dev/null +++ b/clickhouse/changelog.d/21294.changed @@ -0,0 +1 @@ +Update the list of supported ClickHouse versions and relevant metrics to the latest. diff --git a/clickhouse/datadog_checks/clickhouse/advanced_queries/__init__.py b/clickhouse/datadog_checks/clickhouse/advanced_queries/__init__.py new file mode 100644 index 0000000000000..939110bd80c08 --- /dev/null +++ b/clickhouse/datadog_checks/clickhouse/advanced_queries/__init__.py @@ -0,0 +1,10 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +from .system_async_metrics import SystemAsynchronousMetrics +from .system_errors import SystemErrors +from .system_events import SystemEvents +from .system_metrics import SystemMetrics + +__all__ = ['SystemAsynchronousMetrics', 'SystemErrors', 'SystemEvents', 'SystemMetrics'] diff --git a/clickhouse/datadog_checks/clickhouse/advanced_queries/system_async_metrics.py b/clickhouse/datadog_checks/clickhouse/advanced_queries/system_async_metrics.py new file mode 100644 index 0000000000000..c203ad9a785d9 --- /dev/null +++ b/clickhouse/datadog_checks/clickhouse/advanced_queries/system_async_metrics.py @@ -0,0 +1,273 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +# This file is autogenerated. +# To change this file you should edit scripts/templates/system_async_metrics.tpl and then run the following command: +# hatch run metrics:generate + +# https://clickhouse.com/docs/operations/system-tables/asynchronous_metrics +SystemAsynchronousMetrics = { + 'name': 'system_asynchronous_metrics', + 'query': 'SELECT value, metric FROM system.asynchronous_metrics', + 'columns': [ + {'name': 'metric_value', 'type': 'source'}, + { + 'name': 'metric_name', + 'type': 'match', + 'source': 'metric_value', + 'items': { + 'AsynchronousHeavyMetricsCalculationTimeSpent': { + 'name': 'asynchronous_metrics.AsynchronousHeavyMetricsCalculationTimeSpent', + 'type': 'gauge', + }, + 'AsynchronousHeavyMetricsUpdateInterval': { + 'name': 'asynchronous_metrics.AsynchronousHeavyMetricsUpdateInterval', + 'type': 'gauge', + }, + 'AsynchronousMetricsCalculationTimeSpent': { + 'name': 'asynchronous_metrics.AsynchronousMetricsCalculationTimeSpent', + 'type': 'gauge', + }, + 'AsynchronousMetricsUpdateInterval': { + 'name': 'asynchronous_metrics.AsynchronousMetricsUpdateInterval', + 'type': 'gauge', + }, + 'CGroupMaxCPU': {'name': 'asynchronous_metrics.CGroupMaxCPU', 'type': 'gauge'}, + 'CGroupMemoryTotal': {'name': 'asynchronous_metrics.CGroupMemoryTotal', 'type': 'gauge'}, + 'CGroupMemoryUsed': {'name': 'asynchronous_metrics.CGroupMemoryUsed', 'type': 'gauge'}, + 'CGroupSystemTime': {'name': 'asynchronous_metrics.CGroupSystemTime', 'type': 'gauge'}, + 'CGroupSystemTimeNormalized': { + 'name': 'asynchronous_metrics.CGroupSystemTimeNormalized', + 'type': 'gauge', + }, + 'CGroupUserTime': {'name': 'asynchronous_metrics.CGroupUserTime', 'type': 'gauge'}, + 'CGroupUserTimeNormalized': {'name': 'asynchronous_metrics.CGroupUserTimeNormalized', 'type': 'gauge'}, + 'CompiledExpressionCacheBytes': { + 'name': 'asynchronous_metrics.CompiledExpressionCacheBytes', + 'type': 'gauge', + }, + 'CompiledExpressionCacheCount': { + 'name': 'asynchronous_metrics.CompiledExpressionCacheCount', + 'type': 'gauge', + }, + 'DictionaryTotalFailedUpdates': { + 'name': 'asynchronous_metrics.DictionaryTotalFailedUpdates', + 'type': 'gauge', + }, + 'FilesystemCacheBytes': {'name': 'asynchronous_metrics.FilesystemCacheBytes', 'type': 'gauge'}, + 'FilesystemCacheCapacity': {'name': 'asynchronous_metrics.FilesystemCacheCapacity', 'type': 'gauge'}, + 'FilesystemCacheFiles': {'name': 'asynchronous_metrics.FilesystemCacheFiles', 'type': 'gauge'}, + 'FilesystemLogsPathAvailableBytes': { + 'name': 'asynchronous_metrics.FilesystemLogsPathAvailableBytes', + 'type': 'gauge', + }, + 'FilesystemLogsPathAvailableINodes': { + 'name': 'asynchronous_metrics.FilesystemLogsPathAvailableINodes', + 'type': 'gauge', + }, + 'FilesystemLogsPathTotalBytes': { + 'name': 'asynchronous_metrics.FilesystemLogsPathTotalBytes', + 'type': 'gauge', + }, + 'FilesystemLogsPathTotalINodes': { + 'name': 'asynchronous_metrics.FilesystemLogsPathTotalINodes', + 'type': 'gauge', + }, + 'FilesystemLogsPathUsedBytes': { + 'name': 'asynchronous_metrics.FilesystemLogsPathUsedBytes', + 'type': 'gauge', + }, + 'FilesystemLogsPathUsedINodes': { + 'name': 'asynchronous_metrics.FilesystemLogsPathUsedINodes', + 'type': 'gauge', + }, + 'FilesystemMainPathAvailableBytes': { + 'name': 'asynchronous_metrics.FilesystemMainPathAvailableBytes', + 'type': 'gauge', + }, + 'FilesystemMainPathAvailableINodes': { + 'name': 'asynchronous_metrics.FilesystemMainPathAvailableINodes', + 'type': 'gauge', + }, + 'FilesystemMainPathTotalBytes': { + 'name': 'asynchronous_metrics.FilesystemMainPathTotalBytes', + 'type': 'gauge', + }, + 'FilesystemMainPathTotalINodes': { + 'name': 'asynchronous_metrics.FilesystemMainPathTotalINodes', + 'type': 'gauge', + }, + 'FilesystemMainPathUsedBytes': { + 'name': 'asynchronous_metrics.FilesystemMainPathUsedBytes', + 'type': 'gauge', + }, + 'FilesystemMainPathUsedINodes': { + 'name': 'asynchronous_metrics.FilesystemMainPathUsedINodes', + 'type': 'gauge', + }, + 'HashTableStatsCacheEntries': { + 'name': 'asynchronous_metrics.HashTableStatsCacheEntries', + 'type': 'gauge', + }, + 'HashTableStatsCacheHits': {'name': 'asynchronous_metrics.HashTableStatsCacheHits', 'type': 'gauge'}, + 'HashTableStatsCacheMisses': { + 'name': 'asynchronous_metrics.HashTableStatsCacheMisses', + 'type': 'gauge', + }, + 'IndexMarkCacheBytes': {'name': 'asynchronous_metrics.IndexMarkCacheBytes', 'type': 'gauge'}, + 'IndexMarkCacheFiles': {'name': 'asynchronous_metrics.IndexMarkCacheFiles', 'type': 'gauge'}, + 'IndexUncompressedCacheBytes': { + 'name': 'asynchronous_metrics.IndexUncompressedCacheBytes', + 'type': 'gauge', + }, + 'IndexUncompressedCacheCells': { + 'name': 'asynchronous_metrics.IndexUncompressedCacheCells', + 'type': 'gauge', + }, + 'Jitter': {'name': 'asynchronous_metrics.Jitter', 'type': 'gauge'}, + 'LoadAverage1': {'name': 'asynchronous_metrics.LoadAverage1', 'type': 'gauge'}, + 'LoadAverage15': {'name': 'asynchronous_metrics.LoadAverage15', 'type': 'gauge'}, + 'LoadAverage5': {'name': 'asynchronous_metrics.LoadAverage5', 'type': 'gauge'}, + 'MMapCacheCells': {'name': 'asynchronous_metrics.MMapCacheCells', 'type': 'gauge'}, + 'MarkCacheBytes': {'name': 'asynchronous_metrics.MarkCacheBytes', 'type': 'gauge'}, + 'MarkCacheFiles': {'name': 'asynchronous_metrics.MarkCacheFiles', 'type': 'gauge'}, + 'MaxPartCountForPartition': {'name': 'asynchronous_metrics.MaxPartCountForPartition', 'type': 'gauge'}, + 'MemoryCode': {'name': 'asynchronous_metrics.MemoryCode', 'type': 'gauge'}, + 'MemoryDataAndStack': {'name': 'asynchronous_metrics.MemoryDataAndStack', 'type': 'gauge'}, + 'MemoryResident': {'name': 'asynchronous_metrics.MemoryResident', 'type': 'gauge'}, + 'MemoryResidentMax': {'name': 'asynchronous_metrics.MemoryResidentMax', 'type': 'gauge'}, + 'MemoryShared': {'name': 'asynchronous_metrics.MemoryShared', 'type': 'gauge'}, + 'MemoryVirtual': {'name': 'asynchronous_metrics.MemoryVirtual', 'type': 'gauge'}, + 'NetworkTCPReceiveQueue': {'name': 'asynchronous_metrics.NetworkTCPReceiveQueue', 'type': 'gauge'}, + 'NetworkTCPSocketRemoteAddresses': { + 'name': 'asynchronous_metrics.NetworkTCPSocketRemoteAddresses', + 'type': 'gauge', + }, + 'NetworkTCPSockets': {'name': 'asynchronous_metrics.NetworkTCPSockets', 'type': 'gauge'}, + 'NetworkTCPTransmitQueue': {'name': 'asynchronous_metrics.NetworkTCPTransmitQueue', 'type': 'gauge'}, + 'NetworkTCPUnrecoveredRetransmits': { + 'name': 'asynchronous_metrics.NetworkTCPUnrecoveredRetransmits', + 'type': 'gauge', + }, + 'NumberOfDatabases': {'name': 'asynchronous_metrics.NumberOfDatabases', 'type': 'gauge'}, + 'NumberOfDetachedByUserParts': { + 'name': 'asynchronous_metrics.NumberOfDetachedByUserParts', + 'type': 'gauge', + }, + 'NumberOfDetachedParts': {'name': 'asynchronous_metrics.NumberOfDetachedParts', 'type': 'gauge'}, + 'NumberOfPendingMutations': {'name': 'asynchronous_metrics.NumberOfPendingMutations', 'type': 'gauge'}, + 'NumberOfPendingMutationsOverExecutionTime': { + 'name': 'asynchronous_metrics.NumberOfPendingMutationsOverExecutionTime', + 'type': 'gauge', + }, + 'NumberOfStuckMutations': {'name': 'asynchronous_metrics.NumberOfStuckMutations', 'type': 'gauge'}, + 'NumberOfTables': {'name': 'asynchronous_metrics.NumberOfTables', 'type': 'gauge'}, + 'NumberOfTablesSystem': {'name': 'asynchronous_metrics.NumberOfTablesSystem', 'type': 'gauge'}, + 'OSCPUOverload': {'name': 'asynchronous_metrics.OSCPUOverload', 'type': 'gauge'}, + 'OSContextSwitches': {'name': 'asynchronous_metrics.OSContextSwitches', 'type': 'gauge'}, + 'OSGuestNiceTimeNormalized': { + 'name': 'asynchronous_metrics.OSGuestNiceTimeNormalized', + 'type': 'gauge', + }, + 'OSGuestTimeNormalized': {'name': 'asynchronous_metrics.OSGuestTimeNormalized', 'type': 'gauge'}, + 'OSIOWaitTimeNormalized': {'name': 'asynchronous_metrics.OSIOWaitTimeNormalized', 'type': 'gauge'}, + 'OSIdleTimeNormalized': {'name': 'asynchronous_metrics.OSIdleTimeNormalized', 'type': 'gauge'}, + 'OSInterrupts': {'name': 'asynchronous_metrics.OSInterrupts', 'type': 'gauge'}, + 'OSIrqTimeNormalized': {'name': 'asynchronous_metrics.OSIrqTimeNormalized', 'type': 'gauge'}, + 'OSMemoryAvailable': {'name': 'asynchronous_metrics.OSMemoryAvailable', 'type': 'gauge'}, + 'OSMemoryBuffers': {'name': 'asynchronous_metrics.OSMemoryBuffers', 'type': 'gauge'}, + 'OSMemoryCached': {'name': 'asynchronous_metrics.OSMemoryCached', 'type': 'gauge'}, + 'OSMemoryFreePlusCached': {'name': 'asynchronous_metrics.OSMemoryFreePlusCached', 'type': 'gauge'}, + 'OSMemoryFreeWithoutCached': { + 'name': 'asynchronous_metrics.OSMemoryFreeWithoutCached', + 'type': 'gauge', + }, + 'OSMemorySwapCached': {'name': 'asynchronous_metrics.OSMemorySwapCached', 'type': 'gauge'}, + 'OSMemoryTotal': {'name': 'asynchronous_metrics.OSMemoryTotal', 'type': 'gauge'}, + 'OSNiceTimeNormalized': {'name': 'asynchronous_metrics.OSNiceTimeNormalized', 'type': 'gauge'}, + 'OSOpenFiles': {'name': 'asynchronous_metrics.OSOpenFiles', 'type': 'gauge'}, + 'OSProcessesBlocked': {'name': 'asynchronous_metrics.OSProcessesBlocked', 'type': 'gauge'}, + 'OSProcessesCreated': {'name': 'asynchronous_metrics.OSProcessesCreated', 'type': 'gauge'}, + 'OSProcessesRunning': {'name': 'asynchronous_metrics.OSProcessesRunning', 'type': 'gauge'}, + 'OSSoftIrqTimeNormalized': {'name': 'asynchronous_metrics.OSSoftIrqTimeNormalized', 'type': 'gauge'}, + 'OSStealTimeNormalized': {'name': 'asynchronous_metrics.OSStealTimeNormalized', 'type': 'gauge'}, + 'OSSystemTimeNormalized': {'name': 'asynchronous_metrics.OSSystemTimeNormalized', 'type': 'gauge'}, + 'OSThreadsRunnable': {'name': 'asynchronous_metrics.OSThreadsRunnable', 'type': 'gauge'}, + 'OSThreadsTotal': {'name': 'asynchronous_metrics.OSThreadsTotal', 'type': 'gauge'}, + 'OSUptime': {'name': 'asynchronous_metrics.OSUptime', 'type': 'gauge'}, + 'OSUserTimeNormalized': {'name': 'asynchronous_metrics.OSUserTimeNormalized', 'type': 'gauge'}, + 'PageCacheBytes': {'name': 'asynchronous_metrics.PageCacheBytes', 'type': 'gauge'}, + 'PageCacheCells': {'name': 'asynchronous_metrics.PageCacheCells', 'type': 'gauge'}, + 'PageCacheMaxBytes': {'name': 'asynchronous_metrics.PageCacheMaxBytes', 'type': 'gauge'}, + 'PageCachePinnedBytes': {'name': 'asynchronous_metrics.PageCachePinnedBytes', 'type': 'gauge'}, + 'PrimaryIndexCacheBytes': {'name': 'asynchronous_metrics.PrimaryIndexCacheBytes', 'type': 'gauge'}, + 'PrimaryIndexCacheFiles': {'name': 'asynchronous_metrics.PrimaryIndexCacheFiles', 'type': 'gauge'}, + 'QueryCacheBytes': {'name': 'asynchronous_metrics.QueryCacheBytes', 'type': 'gauge'}, + 'QueryCacheEntries': {'name': 'asynchronous_metrics.QueryCacheEntries', 'type': 'gauge'}, + 'ReplicasMaxAbsoluteDelay': {'name': 'asynchronous_metrics.ReplicasMaxAbsoluteDelay', 'type': 'gauge'}, + 'ReplicasMaxInsertsInQueue': { + 'name': 'asynchronous_metrics.ReplicasMaxInsertsInQueue', + 'type': 'gauge', + }, + 'ReplicasMaxMergesInQueue': {'name': 'asynchronous_metrics.ReplicasMaxMergesInQueue', 'type': 'gauge'}, + 'ReplicasMaxQueueSize': {'name': 'asynchronous_metrics.ReplicasMaxQueueSize', 'type': 'gauge'}, + 'ReplicasMaxRelativeDelay': {'name': 'asynchronous_metrics.ReplicasMaxRelativeDelay', 'type': 'gauge'}, + 'ReplicasSumInsertsInQueue': { + 'name': 'asynchronous_metrics.ReplicasSumInsertsInQueue', + 'type': 'gauge', + }, + 'ReplicasSumMergesInQueue': {'name': 'asynchronous_metrics.ReplicasSumMergesInQueue', 'type': 'gauge'}, + 'ReplicasSumQueueSize': {'name': 'asynchronous_metrics.ReplicasSumQueueSize', 'type': 'gauge'}, + 'TotalBytesOfMergeTreeTables': { + 'name': 'asynchronous_metrics.TotalBytesOfMergeTreeTables', + 'type': 'gauge', + }, + 'TotalBytesOfMergeTreeTablesSystem': { + 'name': 'asynchronous_metrics.TotalBytesOfMergeTreeTablesSystem', + 'type': 'gauge', + }, + 'TotalIndexGranularityBytesInMemory': { + 'name': 'asynchronous_metrics.TotalIndexGranularityBytesInMemory', + 'type': 'gauge', + }, + 'TotalIndexGranularityBytesInMemoryAllocated': { + 'name': 'asynchronous_metrics.TotalIndexGranularityBytesInMemoryAllocated', + 'type': 'gauge', + }, + 'TotalPartsOfMergeTreeTables': { + 'name': 'asynchronous_metrics.TotalPartsOfMergeTreeTables', + 'type': 'gauge', + }, + 'TotalPartsOfMergeTreeTablesSystem': { + 'name': 'asynchronous_metrics.TotalPartsOfMergeTreeTablesSystem', + 'type': 'gauge', + }, + 'TotalPrimaryKeyBytesInMemory': { + 'name': 'asynchronous_metrics.TotalPrimaryKeyBytesInMemory', + 'type': 'gauge', + }, + 'TotalPrimaryKeyBytesInMemoryAllocated': { + 'name': 'asynchronous_metrics.TotalPrimaryKeyBytesInMemoryAllocated', + 'type': 'gauge', + }, + 'TotalRowsOfMergeTreeTables': { + 'name': 'asynchronous_metrics.TotalRowsOfMergeTreeTables', + 'type': 'gauge', + }, + 'TotalRowsOfMergeTreeTablesSystem': { + 'name': 'asynchronous_metrics.TotalRowsOfMergeTreeTablesSystem', + 'type': 'gauge', + }, + 'TrackedMemory': {'name': 'asynchronous_metrics.TrackedMemory', 'type': 'gauge'}, + 'UncompressedCacheBytes': {'name': 'asynchronous_metrics.UncompressedCacheBytes', 'type': 'gauge'}, + 'UncompressedCacheCells': {'name': 'asynchronous_metrics.UncompressedCacheCells', 'type': 'gauge'}, + 'UnreclaimableRSS': {'name': 'asynchronous_metrics.UnreclaimableRSS', 'type': 'gauge'}, + 'Uptime': {'name': 'asynchronous_metrics.Uptime', 'type': 'gauge'}, + 'VMMaxMapCount': {'name': 'asynchronous_metrics.VMMaxMapCount', 'type': 'gauge'}, + 'VMNumMaps': {'name': 'asynchronous_metrics.VMNumMaps', 'type': 'gauge'}, + 'jemalloc.epoch': {'name': 'asynchronous_metrics.jemalloc.epoch', 'type': 'gauge'}, + }, + }, + ], +} diff --git a/clickhouse/datadog_checks/clickhouse/advanced_queries/system_errors.py b/clickhouse/datadog_checks/clickhouse/advanced_queries/system_errors.py new file mode 100644 index 0000000000000..685e5b6ffbe8a --- /dev/null +++ b/clickhouse/datadog_checks/clickhouse/advanced_queries/system_errors.py @@ -0,0 +1,15 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +# https://clickhouse.com/docs/operations/system-tables/errors +SystemErrors = { + 'name': 'system.errors', + 'query': 'SELECT value, name, code, remote FROM system.errors WHERE value > 0', + 'columns': [ + {'name': 'errors.raised', 'type': 'monotonic_count'}, + {'name': 'error_name', 'type': 'tag'}, + {'name': 'error_code', 'type': 'tag'}, + {'name': 'remote', 'type': 'tag', 'boolean': True}, + ], +} diff --git a/clickhouse/datadog_checks/clickhouse/advanced_queries/system_events.py b/clickhouse/datadog_checks/clickhouse/advanced_queries/system_events.py new file mode 100644 index 0000000000000..3a8ef7ef2662c --- /dev/null +++ b/clickhouse/datadog_checks/clickhouse/advanced_queries/system_events.py @@ -0,0 +1,3073 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +# This file is autogenerated. +# To change this file you should edit scripts/templates/system_events.tpl and then run the following command: +# hatch run metrics:generate + +# https://clickhouse.com/docs/operations/system-tables/events +SystemEvents = { + 'name': 'system_events', + 'query': 'SELECT value, event FROM system.events', + 'columns': [ + {'name': 'metric_value', 'type': 'source'}, + { + 'name': 'metric_name', + 'type': 'match', + 'source': 'metric_value', + 'items': { + 'AIORead': {'name': 'events.AIORead', 'type': 'monotonic_gauge'}, + 'AIOReadBytes': {'name': 'events.AIOReadBytes', 'type': 'monotonic_gauge'}, + 'AIOWrite': {'name': 'events.AIOWrite', 'type': 'monotonic_gauge'}, + 'AIOWriteBytes': {'name': 'events.AIOWriteBytes', 'type': 'monotonic_gauge'}, + 'AddressesDiscovered': {'name': 'events.AddressesDiscovered', 'type': 'monotonic_gauge'}, + 'AddressesExpired': {'name': 'events.AddressesExpired', 'type': 'monotonic_gauge'}, + 'AddressesMarkedAsFailed': {'name': 'events.AddressesMarkedAsFailed', 'type': 'monotonic_gauge'}, + 'AggregatingSortedMilliseconds': { + 'name': 'events.AggregatingSortedMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'AggregationHashTablesInitializedAsTwoLevel': { + 'name': 'events.AggregationHashTablesInitializedAsTwoLevel', + 'type': 'monotonic_gauge', + }, + 'AggregationOptimizedEqualRangesOfKeys': { + 'name': 'events.AggregationOptimizedEqualRangesOfKeys', + 'type': 'monotonic_gauge', + }, + 'AggregationPreallocatedElementsInHashTables': { + 'name': 'events.AggregationPreallocatedElementsInHashTables', + 'type': 'monotonic_gauge', + }, + 'AnalyzePatchRangesMicroseconds': { + 'name': 'events.AnalyzePatchRangesMicroseconds', + 'type': 'monotonic_gauge', + }, + 'ApplyPatchesMicroseconds': {'name': 'events.ApplyPatchesMicroseconds', 'type': 'monotonic_gauge'}, + 'ArenaAllocBytes': {'name': 'events.ArenaAllocBytes', 'type': 'monotonic_gauge'}, + 'ArenaAllocChunks': {'name': 'events.ArenaAllocChunks', 'type': 'monotonic_gauge'}, + 'AsyncInsertBytes': {'name': 'events.AsyncInsertBytes', 'type': 'monotonic_gauge'}, + 'AsyncInsertCacheHits': {'name': 'events.AsyncInsertCacheHits', 'type': 'monotonic_gauge'}, + 'AsyncInsertQuery': {'name': 'events.AsyncInsertQuery', 'type': 'monotonic_gauge'}, + 'AsyncInsertRows': {'name': 'events.AsyncInsertRows', 'type': 'monotonic_gauge'}, + 'AsyncLoaderWaitMicroseconds': { + 'name': 'events.AsyncLoaderWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'AsyncLoggingConsoleDroppedMessages': { + 'name': 'events.AsyncLoggingConsoleDroppedMessages', + 'type': 'monotonic_gauge', + }, + 'AsyncLoggingConsoleTotalMessages': { + 'name': 'events.AsyncLoggingConsoleTotalMessages', + 'type': 'monotonic_gauge', + }, + 'AsyncLoggingErrorFileLogDroppedMessages': { + 'name': 'events.AsyncLoggingErrorFileLogDroppedMessages', + 'type': 'monotonic_gauge', + }, + 'AsyncLoggingErrorFileLogTotalMessages': { + 'name': 'events.AsyncLoggingErrorFileLogTotalMessages', + 'type': 'monotonic_gauge', + }, + 'AsyncLoggingFileLogDroppedMessages': { + 'name': 'events.AsyncLoggingFileLogDroppedMessages', + 'type': 'monotonic_gauge', + }, + 'AsyncLoggingFileLogTotalMessages': { + 'name': 'events.AsyncLoggingFileLogTotalMessages', + 'type': 'monotonic_gauge', + }, + 'AsyncLoggingSyslogDroppedMessages': { + 'name': 'events.AsyncLoggingSyslogDroppedMessages', + 'type': 'monotonic_gauge', + }, + 'AsyncLoggingSyslogTotalMessages': { + 'name': 'events.AsyncLoggingSyslogTotalMessages', + 'type': 'monotonic_gauge', + }, + 'AsyncLoggingTextLogDroppedMessages': { + 'name': 'events.AsyncLoggingTextLogDroppedMessages', + 'type': 'monotonic_gauge', + }, + 'AsyncLoggingTextLogTotalMessages': { + 'name': 'events.AsyncLoggingTextLogTotalMessages', + 'type': 'monotonic_gauge', + }, + 'AsynchronousReadWaitMicroseconds': { + 'name': 'events.AsynchronousReadWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'AsynchronousReaderIgnoredBytes': { + 'name': 'events.AsynchronousReaderIgnoredBytes', + 'type': 'monotonic_gauge', + }, + 'AsynchronousRemoteReadWaitMicroseconds': { + 'name': 'events.AsynchronousRemoteReadWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'AzureCommitBlockList': {'name': 'events.AzureCommitBlockList', 'type': 'monotonic_gauge'}, + 'AzureCopyObject': {'name': 'events.AzureCopyObject', 'type': 'monotonic_gauge'}, + 'AzureCreateContainer': {'name': 'events.AzureCreateContainer', 'type': 'monotonic_gauge'}, + 'AzureDeleteObjects': {'name': 'events.AzureDeleteObjects', 'type': 'monotonic_gauge'}, + 'AzureGetObject': {'name': 'events.AzureGetObject', 'type': 'monotonic_gauge'}, + 'AzureGetProperties': {'name': 'events.AzureGetProperties', 'type': 'monotonic_gauge'}, + 'AzureGetRequestThrottlerCount': { + 'name': 'events.AzureGetRequestThrottlerCount', + 'type': 'monotonic_gauge', + }, + 'AzureGetRequestThrottlerSleepMicroseconds': { + 'name': 'events.AzureGetRequestThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'AzureListObjects': {'name': 'events.AzureListObjects', 'type': 'monotonic_gauge'}, + 'AzurePutRequestThrottlerCount': { + 'name': 'events.AzurePutRequestThrottlerCount', + 'type': 'monotonic_gauge', + }, + 'AzurePutRequestThrottlerSleepMicroseconds': { + 'name': 'events.AzurePutRequestThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'AzureReadMicroseconds': { + 'name': 'events.AzureReadMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'AzureReadRequestsCount': {'name': 'events.AzureReadRequestsCount', 'type': 'monotonic_gauge'}, + 'AzureReadRequestsErrors': {'name': 'events.AzureReadRequestsErrors', 'type': 'monotonic_gauge'}, + 'AzureReadRequestsRedirects': {'name': 'events.AzureReadRequestsRedirects', 'type': 'monotonic_gauge'}, + 'AzureReadRequestsThrottling': { + 'name': 'events.AzureReadRequestsThrottling', + 'type': 'monotonic_gauge', + }, + 'AzureStageBlock': {'name': 'events.AzureStageBlock', 'type': 'monotonic_gauge'}, + 'AzureUpload': {'name': 'events.AzureUpload', 'type': 'monotonic_gauge'}, + 'AzureWriteMicroseconds': { + 'name': 'events.AzureWriteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'AzureWriteRequestsCount': {'name': 'events.AzureWriteRequestsCount', 'type': 'monotonic_gauge'}, + 'AzureWriteRequestsErrors': {'name': 'events.AzureWriteRequestsErrors', 'type': 'monotonic_gauge'}, + 'AzureWriteRequestsRedirects': { + 'name': 'events.AzureWriteRequestsRedirects', + 'type': 'monotonic_gauge', + }, + 'AzureWriteRequestsThrottling': { + 'name': 'events.AzureWriteRequestsThrottling', + 'type': 'monotonic_gauge', + }, + 'BackgroundLoadingMarksTasks': { + 'name': 'events.BackgroundLoadingMarksTasks', + 'type': 'monotonic_gauge', + }, + 'BackupEntriesCollectorForTablesDataMicroseconds': { + 'name': 'events.BackupEntriesCollectorForTablesDataMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'BackupEntriesCollectorMicroseconds': { + 'name': 'events.BackupEntriesCollectorMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'BackupEntriesCollectorRunPostTasksMicroseconds': { + 'name': 'events.BackupEntriesCollectorRunPostTasksMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'BackupLockFileReads': {'name': 'events.BackupLockFileReads', 'type': 'monotonic_gauge'}, + 'BackupPreparingFileInfosMicroseconds': { + 'name': 'events.BackupPreparingFileInfosMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'BackupReadLocalBytesToCalculateChecksums': { + 'name': 'events.BackupReadLocalBytesToCalculateChecksums', + 'type': 'monotonic_gauge', + }, + 'BackupReadLocalFilesToCalculateChecksums': { + 'name': 'events.BackupReadLocalFilesToCalculateChecksums', + 'type': 'monotonic_gauge', + }, + 'BackupReadMetadataMicroseconds': { + 'name': 'events.BackupReadMetadataMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'BackupReadRemoteBytesToCalculateChecksums': { + 'name': 'events.BackupReadRemoteBytesToCalculateChecksums', + 'type': 'monotonic_gauge', + }, + 'BackupReadRemoteFilesToCalculateChecksums': { + 'name': 'events.BackupReadRemoteFilesToCalculateChecksums', + 'type': 'monotonic_gauge', + }, + 'BackupThrottlerBytes': {'name': 'events.BackupThrottlerBytes', 'type': 'monotonic_gauge'}, + 'BackupThrottlerSleepMicroseconds': { + 'name': 'events.BackupThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'BackupWriteMetadataMicroseconds': { + 'name': 'events.BackupWriteMetadataMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'BackupsOpenedForRead': {'name': 'events.BackupsOpenedForRead', 'type': 'monotonic_gauge'}, + 'BackupsOpenedForUnlock': {'name': 'events.BackupsOpenedForUnlock', 'type': 'monotonic_gauge'}, + 'BackupsOpenedForWrite': {'name': 'events.BackupsOpenedForWrite', 'type': 'monotonic_gauge'}, + 'BuildPatchesJoinMicroseconds': { + 'name': 'events.BuildPatchesJoinMicroseconds', + 'type': 'monotonic_gauge', + }, + 'BuildPatchesMergeMicroseconds': { + 'name': 'events.BuildPatchesMergeMicroseconds', + 'type': 'monotonic_gauge', + }, + 'CacheWarmerBytesDownloaded': {'name': 'events.CacheWarmerBytesDownloaded', 'type': 'monotonic_gauge'}, + 'CacheWarmerDataPartsDownloaded': { + 'name': 'events.CacheWarmerDataPartsDownloaded', + 'type': 'monotonic_gauge', + }, + 'CachedReadBufferCacheWriteBytes': { + 'name': 'events.CachedReadBufferCacheWriteBytes', + 'type': 'monotonic_gauge', + }, + 'CachedReadBufferCacheWriteMicroseconds': { + 'name': 'events.CachedReadBufferCacheWriteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CachedReadBufferCreateBufferMicroseconds': { + 'name': 'events.CachedReadBufferCreateBufferMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CachedReadBufferPredownloadedBytes': { + 'name': 'events.CachedReadBufferPredownloadedBytes', + 'type': 'monotonic_gauge', + }, + 'CachedReadBufferReadFromCacheBytes': { + 'name': 'events.CachedReadBufferReadFromCacheBytes', + 'type': 'monotonic_gauge', + }, + 'CachedReadBufferReadFromCacheHits': { + 'name': 'events.CachedReadBufferReadFromCacheHits', + 'type': 'monotonic_gauge', + }, + 'CachedReadBufferReadFromCacheMicroseconds': { + 'name': 'events.CachedReadBufferReadFromCacheMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CachedReadBufferReadFromCacheMisses': { + 'name': 'events.CachedReadBufferReadFromCacheMisses', + 'type': 'monotonic_gauge', + }, + 'CachedReadBufferReadFromSourceBytes': { + 'name': 'events.CachedReadBufferReadFromSourceBytes', + 'type': 'monotonic_gauge', + }, + 'CachedReadBufferReadFromSourceMicroseconds': { + 'name': 'events.CachedReadBufferReadFromSourceMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CachedReadBufferWaitReadBufferMicroseconds': { + 'name': 'events.CachedReadBufferWaitReadBufferMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CachedWriteBufferCacheWriteBytes': { + 'name': 'events.CachedWriteBufferCacheWriteBytes', + 'type': 'monotonic_gauge', + }, + 'CachedWriteBufferCacheWriteMicroseconds': { + 'name': 'events.CachedWriteBufferCacheWriteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CannotRemoveEphemeralNode': {'name': 'events.CannotRemoveEphemeralNode', 'type': 'monotonic_gauge'}, + 'CannotWriteToWriteBufferDiscard': { + 'name': 'events.CannotWriteToWriteBufferDiscard', + 'type': 'monotonic_gauge', + }, + 'CoalescingSortedMilliseconds': { + 'name': 'events.CoalescingSortedMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'CollapsingSortedMilliseconds': { + 'name': 'events.CollapsingSortedMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'CommonBackgroundExecutorTaskCancelMicroseconds': { + 'name': 'events.CommonBackgroundExecutorTaskCancelMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CommonBackgroundExecutorTaskExecuteStepMicroseconds': { + 'name': 'events.CommonBackgroundExecutorTaskExecuteStepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CommonBackgroundExecutorTaskResetMicroseconds': { + 'name': 'events.CommonBackgroundExecutorTaskResetMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CommonBackgroundExecutorWaitMicroseconds': { + 'name': 'events.CommonBackgroundExecutorWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CompileExpressionsBytes': {'name': 'events.CompileExpressionsBytes', 'type': 'monotonic_gauge'}, + 'CompileExpressionsMicroseconds': { + 'name': 'events.CompileExpressionsMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CompileFunction': {'name': 'events.CompileFunction', 'type': 'monotonic_gauge'}, + 'CompiledFunctionExecute': {'name': 'events.CompiledFunctionExecute', 'type': 'monotonic_gauge'}, + 'CompressedReadBufferBlocks': {'name': 'events.CompressedReadBufferBlocks', 'type': 'monotonic_gauge'}, + 'CompressedReadBufferBytes': {'name': 'events.CompressedReadBufferBytes', 'type': 'monotonic_gauge'}, + 'CompressedReadBufferChecksumDoesntMatch': { + 'name': 'events.CompressedReadBufferChecksumDoesntMatch', + 'type': 'monotonic_gauge', + }, + 'CompressedReadBufferChecksumDoesntMatchMicroseconds': { + 'name': 'events.CompressedReadBufferChecksumDoesntMatchMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CompressedReadBufferChecksumDoesntMatchSingleBitMismatch': { + 'name': 'events.CompressedReadBufferChecksumDoesntMatchSingleBitMismatch', + 'type': 'monotonic_gauge', + }, + 'ConcurrencyControlDownscales': { + 'name': 'events.ConcurrencyControlDownscales', + 'type': 'monotonic_gauge', + }, + 'ConcurrencyControlPreemptedMicroseconds': { + 'name': 'events.ConcurrencyControlPreemptedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ConcurrencyControlPreemptions': { + 'name': 'events.ConcurrencyControlPreemptions', + 'type': 'monotonic_gauge', + }, + 'ConcurrencyControlQueriesDelayed': { + 'name': 'events.ConcurrencyControlQueriesDelayed', + 'type': 'monotonic_gauge', + }, + 'ConcurrencyControlSlotsAcquired': { + 'name': 'events.ConcurrencyControlSlotsAcquired', + 'type': 'monotonic_gauge', + }, + 'ConcurrencyControlSlotsAcquiredNonCompeting': { + 'name': 'events.ConcurrencyControlSlotsAcquiredNonCompeting', + 'type': 'monotonic_gauge', + }, + 'ConcurrencyControlSlotsDelayed': { + 'name': 'events.ConcurrencyControlSlotsDelayed', + 'type': 'monotonic_gauge', + }, + 'ConcurrencyControlSlotsGranted': { + 'name': 'events.ConcurrencyControlSlotsGranted', + 'type': 'monotonic_gauge', + }, + 'ConcurrencyControlUpscales': {'name': 'events.ConcurrencyControlUpscales', 'type': 'monotonic_gauge'}, + 'ConcurrencyControlWaitMicroseconds': { + 'name': 'events.ConcurrencyControlWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ConcurrentQuerySlotsAcquired': { + 'name': 'events.ConcurrentQuerySlotsAcquired', + 'type': 'monotonic_gauge', + }, + 'ConcurrentQueryWaitMicroseconds': { + 'name': 'events.ConcurrentQueryWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ConnectionPoolIsFullMicroseconds': { + 'name': 'events.ConnectionPoolIsFullMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ContextLock': {'name': 'events.ContextLock', 'type': 'monotonic_gauge'}, + 'ContextLockWaitMicroseconds': { + 'name': 'events.ContextLockWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CoordinatedMergesMergeAssignmentRequest': { + 'name': 'events.CoordinatedMergesMergeAssignmentRequest', + 'type': 'monotonic_gauge', + }, + 'CoordinatedMergesMergeAssignmentRequestMicroseconds': { + 'name': 'events.CoordinatedMergesMergeAssignmentRequestMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CoordinatedMergesMergeAssignmentResponse': { + 'name': 'events.CoordinatedMergesMergeAssignmentResponse', + 'type': 'monotonic_gauge', + }, + 'CoordinatedMergesMergeAssignmentResponseMicroseconds': { + 'name': 'events.CoordinatedMergesMergeAssignmentResponseMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CoordinatedMergesMergeCoordinatorFetchMetadataMicroseconds': { + 'name': 'events.CoordinatedMergesMergeCoordinatorFetchMetadataMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CoordinatedMergesMergeCoordinatorFilterMicroseconds': { + 'name': 'events.CoordinatedMergesMergeCoordinatorFilterMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount': { + 'name': 'events.CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount', + 'type': 'monotonic_gauge', + }, + 'CoordinatedMergesMergeCoordinatorLockStateExclusivelyMicroseconds': { + 'name': 'events.CoordinatedMergesMergeCoordinatorLockStateExclusivelyMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CoordinatedMergesMergeCoordinatorLockStateForShareCount': { + 'name': 'events.CoordinatedMergesMergeCoordinatorLockStateForShareCount', + 'type': 'monotonic_gauge', + }, + 'CoordinatedMergesMergeCoordinatorLockStateForShareMicroseconds': { + 'name': 'events.CoordinatedMergesMergeCoordinatorLockStateForShareMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CoordinatedMergesMergeCoordinatorSelectMergesMicroseconds': { + 'name': 'events.CoordinatedMergesMergeCoordinatorSelectMergesMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CoordinatedMergesMergeCoordinatorUpdateCount': { + 'name': 'events.CoordinatedMergesMergeCoordinatorUpdateCount', + 'type': 'monotonic_gauge', + }, + 'CoordinatedMergesMergeCoordinatorUpdateMicroseconds': { + 'name': 'events.CoordinatedMergesMergeCoordinatorUpdateMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CoordinatedMergesMergeWorkerUpdateCount': { + 'name': 'events.CoordinatedMergesMergeWorkerUpdateCount', + 'type': 'monotonic_gauge', + }, + 'CoordinatedMergesMergeWorkerUpdateMicroseconds': { + 'name': 'events.CoordinatedMergesMergeWorkerUpdateMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'CreatedLogEntryForMerge': {'name': 'events.CreatedLogEntryForMerge', 'type': 'monotonic_gauge'}, + 'CreatedLogEntryForMutation': {'name': 'events.CreatedLogEntryForMutation', 'type': 'monotonic_gauge'}, + 'CreatedReadBufferDirectIO': {'name': 'events.CreatedReadBufferDirectIO', 'type': 'monotonic_gauge'}, + 'CreatedReadBufferDirectIOFailed': { + 'name': 'events.CreatedReadBufferDirectIOFailed', + 'type': 'monotonic_gauge', + }, + 'CreatedReadBufferMMap': {'name': 'events.CreatedReadBufferMMap', 'type': 'monotonic_gauge'}, + 'CreatedReadBufferMMapFailed': { + 'name': 'events.CreatedReadBufferMMapFailed', + 'type': 'monotonic_gauge', + }, + 'CreatedReadBufferOrdinary': {'name': 'events.CreatedReadBufferOrdinary', 'type': 'monotonic_gauge'}, + 'DNSError': {'name': 'events.DNSError', 'type': 'monotonic_gauge'}, + 'DataAfterMutationDiffersFromReplica': { + 'name': 'events.DataAfterMutationDiffersFromReplica', + 'type': 'monotonic_gauge', + }, + 'DefaultImplementationForNullsRows': { + 'name': 'events.DefaultImplementationForNullsRows', + 'type': 'monotonic_gauge', + }, + 'DefaultImplementationForNullsRowsWithNulls': { + 'name': 'events.DefaultImplementationForNullsRowsWithNulls', + 'type': 'monotonic_gauge', + }, + 'DelayedInserts': {'name': 'events.DelayedInserts', 'type': 'monotonic_gauge'}, + 'DelayedInsertsMilliseconds': { + 'name': 'events.DelayedInsertsMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'DelayedMutations': {'name': 'events.DelayedMutations', 'type': 'monotonic_gauge'}, + 'DelayedMutationsMilliseconds': { + 'name': 'events.DelayedMutationsMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'DeltaLakePartitionPrunedFiles': { + 'name': 'events.DeltaLakePartitionPrunedFiles', + 'type': 'monotonic_gauge', + }, + 'DictCacheKeysExpired': {'name': 'events.DictCacheKeysExpired', 'type': 'monotonic_gauge'}, + 'DictCacheKeysHit': {'name': 'events.DictCacheKeysHit', 'type': 'monotonic_gauge'}, + 'DictCacheKeysNotFound': {'name': 'events.DictCacheKeysNotFound', 'type': 'monotonic_gauge'}, + 'DictCacheKeysRequested': {'name': 'events.DictCacheKeysRequested', 'type': 'monotonic_gauge'}, + 'DictCacheKeysRequestedFound': { + 'name': 'events.DictCacheKeysRequestedFound', + 'type': 'monotonic_gauge', + }, + 'DictCacheKeysRequestedMiss': {'name': 'events.DictCacheKeysRequestedMiss', 'type': 'monotonic_gauge'}, + 'DictCacheLockReadNs': { + 'name': 'events.DictCacheLockReadNs', + 'type': 'temporal_percent', + 'scale': 'nanosecond', + }, + 'DictCacheLockWriteNs': { + 'name': 'events.DictCacheLockWriteNs', + 'type': 'temporal_percent', + 'scale': 'nanosecond', + }, + 'DictCacheRequestTimeNs': { + 'name': 'events.DictCacheRequestTimeNs', + 'type': 'temporal_percent', + 'scale': 'nanosecond', + }, + 'DictCacheRequests': {'name': 'events.DictCacheRequests', 'type': 'monotonic_gauge'}, + 'DirectorySync': {'name': 'events.DirectorySync', 'type': 'monotonic_gauge'}, + 'DirectorySyncElapsedMicroseconds': { + 'name': 'events.DirectorySyncElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskAzureCommitBlockList': {'name': 'events.DiskAzureCommitBlockList', 'type': 'monotonic_gauge'}, + 'DiskAzureCopyObject': {'name': 'events.DiskAzureCopyObject', 'type': 'monotonic_gauge'}, + 'DiskAzureCreateContainer': {'name': 'events.DiskAzureCreateContainer', 'type': 'monotonic_gauge'}, + 'DiskAzureDeleteObjects': {'name': 'events.DiskAzureDeleteObjects', 'type': 'monotonic_gauge'}, + 'DiskAzureGetObject': {'name': 'events.DiskAzureGetObject', 'type': 'monotonic_gauge'}, + 'DiskAzureGetProperties': {'name': 'events.DiskAzureGetProperties', 'type': 'monotonic_gauge'}, + 'DiskAzureGetRequestThrottlerCount': { + 'name': 'events.DiskAzureGetRequestThrottlerCount', + 'type': 'monotonic_gauge', + }, + 'DiskAzureGetRequestThrottlerSleepMicroseconds': { + 'name': 'events.DiskAzureGetRequestThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskAzureListObjects': {'name': 'events.DiskAzureListObjects', 'type': 'monotonic_gauge'}, + 'DiskAzurePutRequestThrottlerCount': { + 'name': 'events.DiskAzurePutRequestThrottlerCount', + 'type': 'monotonic_gauge', + }, + 'DiskAzurePutRequestThrottlerSleepMicroseconds': { + 'name': 'events.DiskAzurePutRequestThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskAzureReadMicroseconds': { + 'name': 'events.DiskAzureReadMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskAzureReadRequestsCount': {'name': 'events.DiskAzureReadRequestsCount', 'type': 'monotonic_gauge'}, + 'DiskAzureReadRequestsErrors': { + 'name': 'events.DiskAzureReadRequestsErrors', + 'type': 'monotonic_gauge', + }, + 'DiskAzureReadRequestsRedirects': { + 'name': 'events.DiskAzureReadRequestsRedirects', + 'type': 'monotonic_gauge', + }, + 'DiskAzureReadRequestsThrottling': { + 'name': 'events.DiskAzureReadRequestsThrottling', + 'type': 'monotonic_gauge', + }, + 'DiskAzureStageBlock': {'name': 'events.DiskAzureStageBlock', 'type': 'monotonic_gauge'}, + 'DiskAzureUpload': {'name': 'events.DiskAzureUpload', 'type': 'monotonic_gauge'}, + 'DiskAzureWriteMicroseconds': { + 'name': 'events.DiskAzureWriteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskAzureWriteRequestsCount': { + 'name': 'events.DiskAzureWriteRequestsCount', + 'type': 'monotonic_gauge', + }, + 'DiskAzureWriteRequestsErrors': { + 'name': 'events.DiskAzureWriteRequestsErrors', + 'type': 'monotonic_gauge', + }, + 'DiskAzureWriteRequestsRedirects': { + 'name': 'events.DiskAzureWriteRequestsRedirects', + 'type': 'monotonic_gauge', + }, + 'DiskAzureWriteRequestsThrottling': { + 'name': 'events.DiskAzureWriteRequestsThrottling', + 'type': 'monotonic_gauge', + }, + 'DiskConnectionsCreated': {'name': 'events.DiskConnectionsCreated', 'type': 'monotonic_gauge'}, + 'DiskConnectionsElapsedMicroseconds': { + 'name': 'events.DiskConnectionsElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskConnectionsErrors': {'name': 'events.DiskConnectionsErrors', 'type': 'monotonic_gauge'}, + 'DiskConnectionsExpired': {'name': 'events.DiskConnectionsExpired', 'type': 'monotonic_gauge'}, + 'DiskConnectionsPreserved': {'name': 'events.DiskConnectionsPreserved', 'type': 'monotonic_gauge'}, + 'DiskConnectionsReset': {'name': 'events.DiskConnectionsReset', 'type': 'monotonic_gauge'}, + 'DiskConnectionsReused': {'name': 'events.DiskConnectionsReused', 'type': 'monotonic_gauge'}, + 'DiskPlainRewritableAzureDirectoryCreated': { + 'name': 'events.DiskPlainRewritableAzureDirectoryCreated', + 'type': 'monotonic_gauge', + }, + 'DiskPlainRewritableAzureDirectoryRemoved': { + 'name': 'events.DiskPlainRewritableAzureDirectoryRemoved', + 'type': 'monotonic_gauge', + }, + 'DiskPlainRewritableLegacyLayoutDiskCount': { + 'name': 'events.DiskPlainRewritableLegacyLayoutDiskCount', + 'type': 'monotonic_gauge', + }, + 'DiskPlainRewritableLocalDirectoryCreated': { + 'name': 'events.DiskPlainRewritableLocalDirectoryCreated', + 'type': 'monotonic_gauge', + }, + 'DiskPlainRewritableLocalDirectoryRemoved': { + 'name': 'events.DiskPlainRewritableLocalDirectoryRemoved', + 'type': 'monotonic_gauge', + }, + 'DiskPlainRewritableS3DirectoryCreated': { + 'name': 'events.DiskPlainRewritableS3DirectoryCreated', + 'type': 'monotonic_gauge', + }, + 'DiskPlainRewritableS3DirectoryRemoved': { + 'name': 'events.DiskPlainRewritableS3DirectoryRemoved', + 'type': 'monotonic_gauge', + }, + 'DiskReadElapsedMicroseconds': { + 'name': 'events.DiskReadElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskS3AbortMultipartUpload': {'name': 'events.DiskS3AbortMultipartUpload', 'type': 'monotonic_gauge'}, + 'DiskS3CompleteMultipartUpload': { + 'name': 'events.DiskS3CompleteMultipartUpload', + 'type': 'monotonic_gauge', + }, + 'DiskS3CopyObject': {'name': 'events.DiskS3CopyObject', 'type': 'monotonic_gauge'}, + 'DiskS3CreateMultipartUpload': { + 'name': 'events.DiskS3CreateMultipartUpload', + 'type': 'monotonic_gauge', + }, + 'DiskS3DeleteObjects': {'name': 'events.DiskS3DeleteObjects', 'type': 'monotonic_gauge'}, + 'DiskS3GetObject': {'name': 'events.DiskS3GetObject', 'type': 'monotonic_gauge'}, + 'DiskS3GetObjectAttributes': {'name': 'events.DiskS3GetObjectAttributes', 'type': 'monotonic_gauge'}, + 'DiskS3GetRequestThrottlerCount': { + 'name': 'events.DiskS3GetRequestThrottlerCount', + 'type': 'monotonic_gauge', + }, + 'DiskS3GetRequestThrottlerSleepMicroseconds': { + 'name': 'events.DiskS3GetRequestThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskS3HeadObject': {'name': 'events.DiskS3HeadObject', 'type': 'monotonic_gauge'}, + 'DiskS3ListObjects': {'name': 'events.DiskS3ListObjects', 'type': 'monotonic_gauge'}, + 'DiskS3PutObject': {'name': 'events.DiskS3PutObject', 'type': 'monotonic_gauge'}, + 'DiskS3PutRequestThrottlerCount': { + 'name': 'events.DiskS3PutRequestThrottlerCount', + 'type': 'monotonic_gauge', + }, + 'DiskS3PutRequestThrottlerSleepMicroseconds': { + 'name': 'events.DiskS3PutRequestThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskS3ReadMicroseconds': { + 'name': 'events.DiskS3ReadMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskS3ReadRequestAttempts': {'name': 'events.DiskS3ReadRequestAttempts', 'type': 'monotonic_gauge'}, + 'DiskS3ReadRequestRetryableErrors': { + 'name': 'events.DiskS3ReadRequestRetryableErrors', + 'type': 'monotonic_gauge', + }, + 'DiskS3ReadRequestsCount': {'name': 'events.DiskS3ReadRequestsCount', 'type': 'monotonic_gauge'}, + 'DiskS3ReadRequestsErrors': {'name': 'events.DiskS3ReadRequestsErrors', 'type': 'monotonic_gauge'}, + 'DiskS3ReadRequestsRedirects': { + 'name': 'events.DiskS3ReadRequestsRedirects', + 'type': 'monotonic_gauge', + }, + 'DiskS3ReadRequestsThrottling': { + 'name': 'events.DiskS3ReadRequestsThrottling', + 'type': 'monotonic_gauge', + }, + 'DiskS3UploadPart': {'name': 'events.DiskS3UploadPart', 'type': 'monotonic_gauge'}, + 'DiskS3UploadPartCopy': {'name': 'events.DiskS3UploadPartCopy', 'type': 'monotonic_gauge'}, + 'DiskS3WriteMicroseconds': { + 'name': 'events.DiskS3WriteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DiskS3WriteRequestAttempts': {'name': 'events.DiskS3WriteRequestAttempts', 'type': 'monotonic_gauge'}, + 'DiskS3WriteRequestRetryableErrors': { + 'name': 'events.DiskS3WriteRequestRetryableErrors', + 'type': 'monotonic_gauge', + }, + 'DiskS3WriteRequestsCount': {'name': 'events.DiskS3WriteRequestsCount', 'type': 'monotonic_gauge'}, + 'DiskS3WriteRequestsErrors': {'name': 'events.DiskS3WriteRequestsErrors', 'type': 'monotonic_gauge'}, + 'DiskS3WriteRequestsRedirects': { + 'name': 'events.DiskS3WriteRequestsRedirects', + 'type': 'monotonic_gauge', + }, + 'DiskS3WriteRequestsThrottling': { + 'name': 'events.DiskS3WriteRequestsThrottling', + 'type': 'monotonic_gauge', + }, + 'DiskWriteElapsedMicroseconds': { + 'name': 'events.DiskWriteElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheConnectAttempts': {'name': 'events.DistrCacheConnectAttempts', 'type': 'monotonic_gauge'}, + 'DistrCacheConnectMicroseconds': { + 'name': 'events.DistrCacheConnectMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheDataPacketsBytes': {'name': 'events.DistrCacheDataPacketsBytes', 'type': 'monotonic_gauge'}, + 'DistrCacheFallbackReadMicroseconds': { + 'name': 'events.DistrCacheFallbackReadMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheGetClient': {'name': 'events.DistrCacheGetClient', 'type': 'gauge'}, + 'DistrCacheGetClientMicroseconds': { + 'name': 'events.DistrCacheGetClientMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheGetResponseMicroseconds': { + 'name': 'events.DistrCacheGetResponseMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheHashRingRebuilds': {'name': 'events.DistrCacheHashRingRebuilds', 'type': 'monotonic_gauge'}, + 'DistrCacheHoldConnections': {'name': 'events.DistrCacheHoldConnections', 'type': 'gauge'}, + 'DistrCacheIgnoredBytesWhileWaitingProfileEvents': { + 'name': 'events.DistrCacheIgnoredBytesWhileWaitingProfileEvents', + 'type': 'monotonic_gauge', + }, + 'DistrCacheLockRegistryMicroseconds': { + 'name': 'events.DistrCacheLockRegistryMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheMakeRequestErrors': { + 'name': 'events.DistrCacheMakeRequestErrors', + 'type': 'monotonic_gauge', + }, + 'DistrCacheNextImplMicroseconds': { + 'name': 'events.DistrCacheNextImplMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheOpenedConnections': { + 'name': 'events.DistrCacheOpenedConnections', + 'type': 'monotonic_gauge', + }, + 'DistrCacheOpenedConnectionsBypassingPool': { + 'name': 'events.DistrCacheOpenedConnectionsBypassingPool', + 'type': 'monotonic_gauge', + }, + 'DistrCachePackets': {'name': 'events.DistrCachePackets', 'type': 'monotonic_gauge'}, + 'DistrCachePacketsBytes': {'name': 'events.DistrCachePacketsBytes', 'type': 'monotonic_gauge'}, + 'DistrCachePrecomputeRangesMicroseconds': { + 'name': 'events.DistrCachePrecomputeRangesMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheRangeChange': {'name': 'events.DistrCacheRangeChange', 'type': 'monotonic_gauge'}, + 'DistrCacheRangeResetBackward': { + 'name': 'events.DistrCacheRangeResetBackward', + 'type': 'monotonic_gauge', + }, + 'DistrCacheRangeResetForward': { + 'name': 'events.DistrCacheRangeResetForward', + 'type': 'monotonic_gauge', + }, + 'DistrCacheReadBytesFromCache': { + 'name': 'events.DistrCacheReadBytesFromCache', + 'type': 'monotonic_gauge', + }, + 'DistrCacheReadBytesFromFallbackBuffer': { + 'name': 'events.DistrCacheReadBytesFromFallbackBuffer', + 'type': 'monotonic_gauge', + }, + 'DistrCacheReadErrors': {'name': 'events.DistrCacheReadErrors', 'type': 'monotonic_gauge'}, + 'DistrCacheReadMicroseconds': { + 'name': 'events.DistrCacheReadMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheReceiveResponseErrors': { + 'name': 'events.DistrCacheReceiveResponseErrors', + 'type': 'monotonic_gauge', + }, + 'DistrCacheReconnectsAfterTimeout': { + 'name': 'events.DistrCacheReconnectsAfterTimeout', + 'type': 'monotonic_gauge', + }, + 'DistrCacheRegistryUpdateMicroseconds': { + 'name': 'events.DistrCacheRegistryUpdateMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheRegistryUpdates': {'name': 'events.DistrCacheRegistryUpdates', 'type': 'monotonic_gauge'}, + 'DistrCacheReusedConnections': { + 'name': 'events.DistrCacheReusedConnections', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerAckRequestPackets': { + 'name': 'events.DistrCacheServerAckRequestPackets', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerCachedReadBufferCacheHits': { + 'name': 'events.DistrCacheServerCachedReadBufferCacheHits', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerCachedReadBufferCacheMisses': { + 'name': 'events.DistrCacheServerCachedReadBufferCacheMisses', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerContinueRequestPackets': { + 'name': 'events.DistrCacheServerContinueRequestPackets', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerCredentialsRefresh': { + 'name': 'events.DistrCacheServerCredentialsRefresh', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerEndRequestPackets': { + 'name': 'events.DistrCacheServerEndRequestPackets', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerNewS3CachedClients': { + 'name': 'events.DistrCacheServerNewS3CachedClients', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerProcessRequestMicroseconds': { + 'name': 'events.DistrCacheServerProcessRequestMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheServerReceivedCredentialsRefreshPackets': { + 'name': 'events.DistrCacheServerReceivedCredentialsRefreshPackets', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerReusedS3CachedClients': { + 'name': 'events.DistrCacheServerReusedS3CachedClients', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerStartRequestPackets': { + 'name': 'events.DistrCacheServerStartRequestPackets', + 'type': 'monotonic_gauge', + }, + 'DistrCacheServerSwitches': {'name': 'events.DistrCacheServerSwitches', 'type': 'monotonic_gauge'}, + 'DistrCacheServerUpdates': {'name': 'events.DistrCacheServerUpdates', 'type': 'monotonic_gauge'}, + 'DistrCacheStartRangeMicroseconds': { + 'name': 'events.DistrCacheStartRangeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'DistrCacheUnusedDataPacketsBytes': { + 'name': 'events.DistrCacheUnusedDataPacketsBytes', + 'type': 'monotonic_gauge', + }, + 'DistrCacheUnusedPackets': {'name': 'events.DistrCacheUnusedPackets', 'type': 'monotonic_gauge'}, + 'DistrCacheUnusedPacketsBufferAllocations': { + 'name': 'events.DistrCacheUnusedPacketsBufferAllocations', + 'type': 'monotonic_gauge', + }, + 'DistrCacheUnusedPacketsBytes': { + 'name': 'events.DistrCacheUnusedPacketsBytes', + 'type': 'monotonic_gauge', + }, + 'DistributedAsyncInsertionFailures': { + 'name': 'events.DistributedAsyncInsertionFailures', + 'type': 'monotonic_gauge', + }, + 'DistributedConnectionFailAtAll': { + 'name': 'events.DistributedConnectionFailAtAll', + 'type': 'monotonic_gauge', + }, + 'DistributedConnectionFailTry': { + 'name': 'events.DistributedConnectionFailTry', + 'type': 'monotonic_gauge', + }, + 'DistributedConnectionMissingTable': { + 'name': 'events.DistributedConnectionMissingTable', + 'type': 'monotonic_gauge', + }, + 'DistributedConnectionReconnectCount': { + 'name': 'events.DistributedConnectionReconnectCount', + 'type': 'monotonic_gauge', + }, + 'DistributedConnectionSkipReadOnlyReplica': { + 'name': 'events.DistributedConnectionSkipReadOnlyReplica', + 'type': 'monotonic_gauge', + }, + 'DistributedConnectionStaleReplica': { + 'name': 'events.DistributedConnectionStaleReplica', + 'type': 'monotonic_gauge', + }, + 'DistributedConnectionTries': {'name': 'events.DistributedConnectionTries', 'type': 'monotonic_gauge'}, + 'DistributedConnectionUsable': { + 'name': 'events.DistributedConnectionUsable', + 'type': 'monotonic_gauge', + }, + 'DistributedDelayedInserts': {'name': 'events.DistributedDelayedInserts', 'type': 'monotonic_gauge'}, + 'DistributedDelayedInsertsMilliseconds': { + 'name': 'events.DistributedDelayedInsertsMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'DistributedRejectedInserts': {'name': 'events.DistributedRejectedInserts', 'type': 'monotonic_gauge'}, + 'DistributedSyncInsertionTimeoutExceeded': { + 'name': 'events.DistributedSyncInsertionTimeoutExceeded', + 'type': 'monotonic_gauge', + }, + 'DuplicatedInsertedBlocks': {'name': 'events.DuplicatedInsertedBlocks', 'type': 'monotonic_gauge'}, + 'EngineFileLikeReadFiles': {'name': 'events.EngineFileLikeReadFiles', 'type': 'monotonic_gauge'}, + 'ExecuteShellCommand': {'name': 'events.ExecuteShellCommand', 'type': 'monotonic_gauge'}, + 'ExternalAggregationCompressedBytes': { + 'name': 'events.ExternalAggregationCompressedBytes', + 'type': 'monotonic_gauge', + }, + 'ExternalAggregationMerge': {'name': 'events.ExternalAggregationMerge', 'type': 'monotonic_gauge'}, + 'ExternalAggregationUncompressedBytes': { + 'name': 'events.ExternalAggregationUncompressedBytes', + 'type': 'monotonic_gauge', + }, + 'ExternalAggregationWritePart': { + 'name': 'events.ExternalAggregationWritePart', + 'type': 'monotonic_gauge', + }, + 'ExternalDataSourceLocalCacheReadBytes': { + 'name': 'events.ExternalDataSourceLocalCacheReadBytes', + 'type': 'monotonic_gauge', + }, + 'ExternalJoinCompressedBytes': { + 'name': 'events.ExternalJoinCompressedBytes', + 'type': 'monotonic_gauge', + }, + 'ExternalJoinMerge': {'name': 'events.ExternalJoinMerge', 'type': 'monotonic_gauge'}, + 'ExternalJoinUncompressedBytes': { + 'name': 'events.ExternalJoinUncompressedBytes', + 'type': 'monotonic_gauge', + }, + 'ExternalJoinWritePart': {'name': 'events.ExternalJoinWritePart', 'type': 'monotonic_gauge'}, + 'ExternalProcessingCompressedBytesTotal': { + 'name': 'events.ExternalProcessingCompressedBytesTotal', + 'type': 'monotonic_gauge', + }, + 'ExternalProcessingFilesTotal': { + 'name': 'events.ExternalProcessingFilesTotal', + 'type': 'monotonic_gauge', + }, + 'ExternalProcessingUncompressedBytesTotal': { + 'name': 'events.ExternalProcessingUncompressedBytesTotal', + 'type': 'monotonic_gauge', + }, + 'ExternalSortCompressedBytes': { + 'name': 'events.ExternalSortCompressedBytes', + 'type': 'monotonic_gauge', + }, + 'ExternalSortMerge': {'name': 'events.ExternalSortMerge', 'type': 'monotonic_gauge'}, + 'ExternalSortUncompressedBytes': { + 'name': 'events.ExternalSortUncompressedBytes', + 'type': 'monotonic_gauge', + }, + 'ExternalSortWritePart': {'name': 'events.ExternalSortWritePart', 'type': 'monotonic_gauge'}, + 'FailedAsyncInsertQuery': {'name': 'events.FailedAsyncInsertQuery', 'type': 'monotonic_gauge'}, + 'FailedInsertQuery': {'name': 'events.FailedInsertQuery', 'type': 'monotonic_gauge'}, + 'FailedQuery': {'name': 'events.FailedQuery', 'type': 'monotonic_gauge'}, + 'FailedSelectQuery': {'name': 'events.FailedSelectQuery', 'type': 'monotonic_gauge'}, + 'FetchBackgroundExecutorTaskCancelMicroseconds': { + 'name': 'events.FetchBackgroundExecutorTaskCancelMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FetchBackgroundExecutorTaskExecuteStepMicroseconds': { + 'name': 'events.FetchBackgroundExecutorTaskExecuteStepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FetchBackgroundExecutorTaskResetMicroseconds': { + 'name': 'events.FetchBackgroundExecutorTaskResetMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FetchBackgroundExecutorWaitMicroseconds': { + 'name': 'events.FetchBackgroundExecutorWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileOpen': {'name': 'events.FileOpen', 'type': 'monotonic_gauge'}, + 'FileSegmentCacheWriteMicroseconds': { + 'name': 'events.FileSegmentCacheWriteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentCompleteMicroseconds': { + 'name': 'events.FileSegmentCompleteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentFailToIncreasePriority': { + 'name': 'events.FileSegmentFailToIncreasePriority', + 'type': 'monotonic_gauge', + }, + 'FileSegmentHolderCompleteMicroseconds': { + 'name': 'events.FileSegmentHolderCompleteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentLockMicroseconds': { + 'name': 'events.FileSegmentLockMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentPredownloadMicroseconds': { + 'name': 'events.FileSegmentPredownloadMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentReadMicroseconds': { + 'name': 'events.FileSegmentReadMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentRemoveMicroseconds': { + 'name': 'events.FileSegmentRemoveMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentUseMicroseconds': { + 'name': 'events.FileSegmentUseMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentUsedBytes': {'name': 'events.FileSegmentUsedBytes', 'type': 'monotonic_gauge'}, + 'FileSegmentWaitMicroseconds': { + 'name': 'events.FileSegmentWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentWaitReadBufferMicroseconds': { + 'name': 'events.FileSegmentWaitReadBufferMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSegmentWriteMicroseconds': { + 'name': 'events.FileSegmentWriteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FileSync': {'name': 'events.FileSync', 'type': 'monotonic_gauge'}, + 'FileSyncElapsedMicroseconds': { + 'name': 'events.FileSyncElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilesystemCacheBackgroundDownloadQueuePush': { + 'name': 'events.FilesystemCacheBackgroundDownloadQueuePush', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheBackgroundEvictedBytes': { + 'name': 'events.FilesystemCacheBackgroundEvictedBytes', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheBackgroundEvictedFileSegments': { + 'name': 'events.FilesystemCacheBackgroundEvictedFileSegments', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheCreatedKeyDirectories': { + 'name': 'events.FilesystemCacheCreatedKeyDirectories', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheEvictMicroseconds': { + 'name': 'events.FilesystemCacheEvictMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilesystemCacheEvictedBytes': { + 'name': 'events.FilesystemCacheEvictedBytes', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheEvictedFileSegments': { + 'name': 'events.FilesystemCacheEvictedFileSegments', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease': { + 'name': 'events.FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheEvictionReusedIterator': { + 'name': 'events.FilesystemCacheEvictionReusedIterator', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheEvictionSkippedEvictingFileSegments': { + 'name': 'events.FilesystemCacheEvictionSkippedEvictingFileSegments', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheEvictionSkippedFileSegments': { + 'name': 'events.FilesystemCacheEvictionSkippedFileSegments', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheEvictionTries': { + 'name': 'events.FilesystemCacheEvictionTries', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheFailToReserveSpaceBecauseOfCacheResize': { + 'name': 'events.FilesystemCacheFailToReserveSpaceBecauseOfCacheResize', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheFailToReserveSpaceBecauseOfLockContention': { + 'name': 'events.FilesystemCacheFailToReserveSpaceBecauseOfLockContention', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheFailedEvictionCandidates': { + 'name': 'events.FilesystemCacheFailedEvictionCandidates', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheFreeSpaceKeepingThreadRun': { + 'name': 'events.FilesystemCacheFreeSpaceKeepingThreadRun', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheFreeSpaceKeepingThreadWorkMilliseconds': { + 'name': 'events.FilesystemCacheFreeSpaceKeepingThreadWorkMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'FilesystemCacheGetMicroseconds': { + 'name': 'events.FilesystemCacheGetMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilesystemCacheGetOrSetMicroseconds': { + 'name': 'events.FilesystemCacheGetOrSetMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilesystemCacheHoldFileSegments': { + 'name': 'events.FilesystemCacheHoldFileSegments', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheLoadMetadataMicroseconds': { + 'name': 'events.FilesystemCacheLoadMetadataMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilesystemCacheLockCacheMicroseconds': { + 'name': 'events.FilesystemCacheLockCacheMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilesystemCacheLockKeyMicroseconds': { + 'name': 'events.FilesystemCacheLockKeyMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilesystemCacheLockMetadataMicroseconds': { + 'name': 'events.FilesystemCacheLockMetadataMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilesystemCacheReserveAttempts': { + 'name': 'events.FilesystemCacheReserveAttempts', + 'type': 'monotonic_gauge', + }, + 'FilesystemCacheReserveMicroseconds': { + 'name': 'events.FilesystemCacheReserveMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilesystemCacheUnusedHoldFileSegments': { + 'name': 'events.FilesystemCacheUnusedHoldFileSegments', + 'type': 'monotonic_gauge', + }, + 'FilterTransformPassedBytes': {'name': 'events.FilterTransformPassedBytes', 'type': 'monotonic_gauge'}, + 'FilterTransformPassedRows': {'name': 'events.FilterTransformPassedRows', 'type': 'monotonic_gauge'}, + 'FilteringMarksWithPrimaryKeyMicroseconds': { + 'name': 'events.FilteringMarksWithPrimaryKeyMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FilteringMarksWithSecondaryKeysMicroseconds': { + 'name': 'events.FilteringMarksWithSecondaryKeysMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'FunctionExecute': {'name': 'events.FunctionExecute', 'type': 'monotonic_gauge'}, + 'GWPAsanAllocateFailed': {'name': 'events.GWPAsanAllocateFailed', 'type': 'monotonic_gauge'}, + 'GWPAsanAllocateSuccess': {'name': 'events.GWPAsanAllocateSuccess', 'type': 'monotonic_gauge'}, + 'GWPAsanFree': {'name': 'events.GWPAsanFree', 'type': 'monotonic_gauge'}, + 'GatheredColumns': {'name': 'events.GatheredColumns', 'type': 'monotonic_gauge'}, + 'GatheringColumnMilliseconds': { + 'name': 'events.GatheringColumnMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'GlobalThreadPoolExpansions': {'name': 'events.GlobalThreadPoolExpansions', 'type': 'monotonic_gauge'}, + 'GlobalThreadPoolJobWaitTimeMicroseconds': { + 'name': 'events.GlobalThreadPoolJobWaitTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'GlobalThreadPoolJobs': {'name': 'events.GlobalThreadPoolJobs', 'type': 'monotonic_gauge'}, + 'GlobalThreadPoolLockWaitMicroseconds': { + 'name': 'events.GlobalThreadPoolLockWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'GlobalThreadPoolShrinks': {'name': 'events.GlobalThreadPoolShrinks', 'type': 'monotonic_gauge'}, + 'GlobalThreadPoolThreadCreationMicroseconds': { + 'name': 'events.GlobalThreadPoolThreadCreationMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'HTTPConnectionsCreated': {'name': 'events.HTTPConnectionsCreated', 'type': 'monotonic_gauge'}, + 'HTTPConnectionsElapsedMicroseconds': { + 'name': 'events.HTTPConnectionsElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'HTTPConnectionsErrors': {'name': 'events.HTTPConnectionsErrors', 'type': 'monotonic_gauge'}, + 'HTTPConnectionsExpired': {'name': 'events.HTTPConnectionsExpired', 'type': 'monotonic_gauge'}, + 'HTTPConnectionsPreserved': {'name': 'events.HTTPConnectionsPreserved', 'type': 'monotonic_gauge'}, + 'HTTPConnectionsReset': {'name': 'events.HTTPConnectionsReset', 'type': 'monotonic_gauge'}, + 'HTTPConnectionsReused': {'name': 'events.HTTPConnectionsReused', 'type': 'monotonic_gauge'}, + 'HTTPServerConnectionsClosed': { + 'name': 'events.HTTPServerConnectionsClosed', + 'type': 'monotonic_gauge', + }, + 'HTTPServerConnectionsCreated': { + 'name': 'events.HTTPServerConnectionsCreated', + 'type': 'monotonic_gauge', + }, + 'HTTPServerConnectionsExpired': { + 'name': 'events.HTTPServerConnectionsExpired', + 'type': 'monotonic_gauge', + }, + 'HTTPServerConnectionsPreserved': { + 'name': 'events.HTTPServerConnectionsPreserved', + 'type': 'monotonic_gauge', + }, + 'HTTPServerConnectionsReset': {'name': 'events.HTTPServerConnectionsReset', 'type': 'monotonic_gauge'}, + 'HTTPServerConnectionsReused': { + 'name': 'events.HTTPServerConnectionsReused', + 'type': 'monotonic_gauge', + }, + 'HardPageFaults': {'name': 'events.HardPageFaults', 'type': 'monotonic_gauge'}, + 'HashJoinPreallocatedElementsInHashTables': { + 'name': 'events.HashJoinPreallocatedElementsInHashTables', + 'type': 'monotonic_gauge', + }, + 'HedgedRequestsChangeReplica': { + 'name': 'events.HedgedRequestsChangeReplica', + 'type': 'monotonic_gauge', + }, + 'IOBufferAllocBytes': {'name': 'events.IOBufferAllocBytes', 'type': 'monotonic_gauge'}, + 'IOBufferAllocs': {'name': 'events.IOBufferAllocs', 'type': 'monotonic_gauge'}, + 'IOUringCQEsCompleted': {'name': 'events.IOUringCQEsCompleted', 'type': 'monotonic_gauge'}, + 'IOUringCQEsFailed': {'name': 'events.IOUringCQEsFailed', 'type': 'monotonic_gauge'}, + 'IOUringSQEsResubmitsAsync': {'name': 'events.IOUringSQEsResubmitsAsync', 'type': 'monotonic_gauge'}, + 'IOUringSQEsResubmitsSync': {'name': 'events.IOUringSQEsResubmitsSync', 'type': 'monotonic_gauge'}, + 'IOUringSQEsSubmitted': {'name': 'events.IOUringSQEsSubmitted', 'type': 'monotonic_gauge'}, + 'IcebergIteratorInitializationMicroseconds': { + 'name': 'events.IcebergIteratorInitializationMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'IcebergMetadataFilesCacheHits': { + 'name': 'events.IcebergMetadataFilesCacheHits', + 'type': 'monotonic_gauge', + }, + 'IcebergMetadataFilesCacheMisses': { + 'name': 'events.IcebergMetadataFilesCacheMisses', + 'type': 'monotonic_gauge', + }, + 'IcebergMetadataFilesCacheWeightLost': { + 'name': 'events.IcebergMetadataFilesCacheWeightLost', + 'type': 'monotonic_gauge', + }, + 'IcebergMetadataReadWaitTimeMicroseconds': { + 'name': 'events.IcebergMetadataReadWaitTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'IcebergMetadataReturnedObjectInfos': { + 'name': 'events.IcebergMetadataReturnedObjectInfos', + 'type': 'monotonic_gauge', + }, + 'IcebergMetadataUpdateMicroseconds': { + 'name': 'events.IcebergMetadataUpdateMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'IcebergMinMaxIndexPrunedFiles': { + 'name': 'events.IcebergMinMaxIndexPrunedFiles', + 'type': 'monotonic_gauge', + }, + 'IcebergPartitionPrunedFiles': { + 'name': 'events.IcebergPartitionPrunedFiles', + 'type': 'monotonic_gauge', + }, + 'IcebergPartitionPrunnedFiles': { + 'name': 'events.IcebergPartitionPrunnedFiles', + 'type': 'monotonic_gauge', + }, + 'IcebergTrivialCountOptimizationApplied': { + 'name': 'events.IcebergTrivialCountOptimizationApplied', + 'type': 'monotonic_gauge', + }, + 'IcebergVersionHintUsed': {'name': 'events.IcebergVersionHintUsed', 'type': 'monotonic_gauge'}, + 'IgnoredColdParts': {'name': 'events.IgnoredColdParts', 'type': 'monotonic_gauge'}, + 'IndexBinarySearchAlgorithm': {'name': 'events.IndexBinarySearchAlgorithm', 'type': 'monotonic_gauge'}, + 'IndexGenericExclusionSearchAlgorithm': { + 'name': 'events.IndexGenericExclusionSearchAlgorithm', + 'type': 'monotonic_gauge', + }, + 'InitialQuery': {'name': 'events.InitialQuery', 'type': 'monotonic_gauge'}, + 'InsertQueriesWithSubqueries': { + 'name': 'events.InsertQueriesWithSubqueries', + 'type': 'monotonic_gauge', + }, + 'InsertQuery': {'name': 'events.InsertQuery', 'type': 'monotonic_gauge'}, + 'InsertQueryTimeMicroseconds': { + 'name': 'events.InsertQueryTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'InsertedBytes': {'name': 'events.InsertedBytes', 'type': 'monotonic_gauge'}, + 'InsertedCompactParts': {'name': 'events.InsertedCompactParts', 'type': 'monotonic_gauge'}, + 'InsertedRows': {'name': 'events.InsertedRows', 'type': 'monotonic_gauge'}, + 'InsertedWideParts': {'name': 'events.InsertedWideParts', 'type': 'monotonic_gauge'}, + 'InterfaceHTTPReceiveBytes': {'name': 'events.InterfaceHTTPReceiveBytes', 'type': 'monotonic_gauge'}, + 'InterfaceHTTPSendBytes': {'name': 'events.InterfaceHTTPSendBytes', 'type': 'monotonic_gauge'}, + 'InterfaceInterserverReceiveBytes': { + 'name': 'events.InterfaceInterserverReceiveBytes', + 'type': 'monotonic_gauge', + }, + 'InterfaceInterserverSendBytes': { + 'name': 'events.InterfaceInterserverSendBytes', + 'type': 'monotonic_gauge', + }, + 'InterfaceMySQLReceiveBytes': {'name': 'events.InterfaceMySQLReceiveBytes', 'type': 'monotonic_gauge'}, + 'InterfaceMySQLSendBytes': {'name': 'events.InterfaceMySQLSendBytes', 'type': 'monotonic_gauge'}, + 'InterfaceNativeReceiveBytes': { + 'name': 'events.InterfaceNativeReceiveBytes', + 'type': 'monotonic_gauge', + }, + 'InterfaceNativeSendBytes': {'name': 'events.InterfaceNativeSendBytes', 'type': 'monotonic_gauge'}, + 'InterfacePostgreSQLReceiveBytes': { + 'name': 'events.InterfacePostgreSQLReceiveBytes', + 'type': 'monotonic_gauge', + }, + 'InterfacePostgreSQLSendBytes': { + 'name': 'events.InterfacePostgreSQLSendBytes', + 'type': 'monotonic_gauge', + }, + 'InterfacePrometheusReceiveBytes': { + 'name': 'events.InterfacePrometheusReceiveBytes', + 'type': 'monotonic_gauge', + }, + 'InterfacePrometheusSendBytes': { + 'name': 'events.InterfacePrometheusSendBytes', + 'type': 'monotonic_gauge', + }, + 'JoinBuildTableRowCount': {'name': 'events.JoinBuildTableRowCount', 'type': 'monotonic_gauge'}, + 'JoinProbeTableRowCount': {'name': 'events.JoinProbeTableRowCount', 'type': 'monotonic_gauge'}, + 'JoinResultRowCount': {'name': 'events.JoinResultRowCount', 'type': 'monotonic_gauge'}, + 'KafkaBackgroundReads': {'name': 'events.KafkaBackgroundReads', 'type': 'monotonic_gauge'}, + 'KafkaCommitFailures': {'name': 'events.KafkaCommitFailures', 'type': 'monotonic_gauge'}, + 'KafkaCommits': {'name': 'events.KafkaCommits', 'type': 'monotonic_gauge'}, + 'KafkaConsumerErrors': {'name': 'events.KafkaConsumerErrors', 'type': 'monotonic_gauge'}, + 'KafkaDirectReads': {'name': 'events.KafkaDirectReads', 'type': 'monotonic_gauge'}, + 'KafkaMessagesFailed': {'name': 'events.KafkaMessagesFailed', 'type': 'monotonic_gauge'}, + 'KafkaMessagesPolled': {'name': 'events.KafkaMessagesPolled', 'type': 'monotonic_gauge'}, + 'KafkaMessagesProduced': {'name': 'events.KafkaMessagesProduced', 'type': 'monotonic_gauge'}, + 'KafkaMessagesRead': {'name': 'events.KafkaMessagesRead', 'type': 'monotonic_gauge'}, + 'KafkaProducerErrors': {'name': 'events.KafkaProducerErrors', 'type': 'monotonic_gauge'}, + 'KafkaProducerFlushes': {'name': 'events.KafkaProducerFlushes', 'type': 'monotonic_gauge'}, + 'KafkaRebalanceAssignments': {'name': 'events.KafkaRebalanceAssignments', 'type': 'monotonic_gauge'}, + 'KafkaRebalanceErrors': {'name': 'events.KafkaRebalanceErrors', 'type': 'monotonic_gauge'}, + 'KafkaRebalanceRevocations': {'name': 'events.KafkaRebalanceRevocations', 'type': 'monotonic_gauge'}, + 'KafkaRowsRead': {'name': 'events.KafkaRowsRead', 'type': 'monotonic_gauge'}, + 'KafkaRowsRejected': {'name': 'events.KafkaRowsRejected', 'type': 'monotonic_gauge'}, + 'KafkaRowsWritten': {'name': 'events.KafkaRowsWritten', 'type': 'monotonic_gauge'}, + 'KafkaWrites': {'name': 'events.KafkaWrites', 'type': 'monotonic_gauge'}, + 'KeeperBatchMaxCount': {'name': 'events.KeeperBatchMaxCount', 'type': 'monotonic_gauge'}, + 'KeeperBatchMaxTotalSize': {'name': 'events.KeeperBatchMaxTotalSize', 'type': 'monotonic_gauge'}, + 'KeeperCheckRequest': {'name': 'events.KeeperCheckRequest', 'type': 'monotonic_gauge'}, + 'KeeperCommitWaitElapsedMicroseconds': { + 'name': 'events.KeeperCommitWaitElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'KeeperCommits': {'name': 'events.KeeperCommits', 'type': 'monotonic_gauge'}, + 'KeeperCommitsFailed': {'name': 'events.KeeperCommitsFailed', 'type': 'monotonic_gauge'}, + 'KeeperCreateRequest': {'name': 'events.KeeperCreateRequest', 'type': 'monotonic_gauge'}, + 'KeeperExistsRequest': {'name': 'events.KeeperExistsRequest', 'type': 'monotonic_gauge'}, + 'KeeperGetRequest': {'name': 'events.KeeperGetRequest', 'type': 'monotonic_gauge'}, + 'KeeperLatency': {'name': 'events.KeeperLatency', 'type': 'temporal_percent', 'scale': 'millisecond'}, + 'KeeperListRequest': {'name': 'events.KeeperListRequest', 'type': 'monotonic_gauge'}, + 'KeeperLogsEntryReadFromCommitCache': { + 'name': 'events.KeeperLogsEntryReadFromCommitCache', + 'type': 'monotonic_gauge', + }, + 'KeeperLogsEntryReadFromFile': { + 'name': 'events.KeeperLogsEntryReadFromFile', + 'type': 'monotonic_gauge', + }, + 'KeeperLogsEntryReadFromLatestCache': { + 'name': 'events.KeeperLogsEntryReadFromLatestCache', + 'type': 'monotonic_gauge', + }, + 'KeeperLogsPrefetchedEntries': { + 'name': 'events.KeeperLogsPrefetchedEntries', + 'type': 'monotonic_gauge', + }, + 'KeeperMultiReadRequest': {'name': 'events.KeeperMultiReadRequest', 'type': 'monotonic_gauge'}, + 'KeeperMultiRequest': {'name': 'events.KeeperMultiRequest', 'type': 'monotonic_gauge'}, + 'KeeperPacketsReceived': {'name': 'events.KeeperPacketsReceived', 'type': 'monotonic_gauge'}, + 'KeeperPacketsSent': {'name': 'events.KeeperPacketsSent', 'type': 'monotonic_gauge'}, + 'KeeperPreprocessElapsedMicroseconds': { + 'name': 'events.KeeperPreprocessElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'KeeperProcessElapsedMicroseconds': { + 'name': 'events.KeeperProcessElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'KeeperReadSnapshot': {'name': 'events.KeeperReadSnapshot', 'type': 'monotonic_gauge'}, + 'KeeperReconfigRequest': {'name': 'events.KeeperReconfigRequest', 'type': 'monotonic_gauge'}, + 'KeeperRemoveRequest': {'name': 'events.KeeperRemoveRequest', 'type': 'monotonic_gauge'}, + 'KeeperRequestRejectedDueToSoftMemoryLimitCount': { + 'name': 'events.KeeperRequestRejectedDueToSoftMemoryLimitCount', + 'type': 'monotonic_gauge', + }, + 'KeeperRequestTotal': {'name': 'events.KeeperRequestTotal', 'type': 'monotonic_gauge'}, + 'KeeperSaveSnapshot': {'name': 'events.KeeperSaveSnapshot', 'type': 'monotonic_gauge'}, + 'KeeperSetRequest': {'name': 'events.KeeperSetRequest', 'type': 'monotonic_gauge'}, + 'KeeperSnapshotApplys': {'name': 'events.KeeperSnapshotApplys', 'type': 'monotonic_gauge'}, + 'KeeperSnapshotApplysFailed': {'name': 'events.KeeperSnapshotApplysFailed', 'type': 'monotonic_gauge'}, + 'KeeperSnapshotCreations': {'name': 'events.KeeperSnapshotCreations', 'type': 'monotonic_gauge'}, + 'KeeperSnapshotCreationsFailed': { + 'name': 'events.KeeperSnapshotCreationsFailed', + 'type': 'monotonic_gauge', + }, + 'KeeperStorageLockWaitMicroseconds': { + 'name': 'events.KeeperStorageLockWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'KeeperTotalElapsedMicroseconds': { + 'name': 'events.KeeperTotalElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'LoadedDataParts': {'name': 'events.LoadedDataParts', 'type': 'monotonic_gauge'}, + 'LoadedDataPartsMicroseconds': { + 'name': 'events.LoadedDataPartsMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'LoadedMarksCount': {'name': 'events.LoadedMarksCount', 'type': 'monotonic_gauge'}, + 'LoadedMarksFiles': {'name': 'events.LoadedMarksFiles', 'type': 'monotonic_gauge'}, + 'LoadedMarksMemoryBytes': {'name': 'events.LoadedMarksMemoryBytes', 'type': 'monotonic_gauge'}, + 'LoadedPrimaryIndexBytes': {'name': 'events.LoadedPrimaryIndexBytes', 'type': 'monotonic_gauge'}, + 'LoadedPrimaryIndexFiles': {'name': 'events.LoadedPrimaryIndexFiles', 'type': 'monotonic_gauge'}, + 'LoadedPrimaryIndexRows': {'name': 'events.LoadedPrimaryIndexRows', 'type': 'monotonic_gauge'}, + 'LoadingMarksTasksCanceled': {'name': 'events.LoadingMarksTasksCanceled', 'type': 'monotonic_gauge'}, + 'LocalReadThrottlerBytes': {'name': 'events.LocalReadThrottlerBytes', 'type': 'monotonic_gauge'}, + 'LocalReadThrottlerSleepMicroseconds': { + 'name': 'events.LocalReadThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'LocalThreadPoolBusyMicroseconds': { + 'name': 'events.LocalThreadPoolBusyMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'LocalThreadPoolExpansions': {'name': 'events.LocalThreadPoolExpansions', 'type': 'monotonic_gauge'}, + 'LocalThreadPoolJobWaitTimeMicroseconds': { + 'name': 'events.LocalThreadPoolJobWaitTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'LocalThreadPoolJobs': { + 'name': 'events.LocalThreadPoolJobs', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'LocalThreadPoolLockWaitMicroseconds': { + 'name': 'events.LocalThreadPoolLockWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'LocalThreadPoolShrinks': {'name': 'events.LocalThreadPoolShrinks', 'type': 'monotonic_gauge'}, + 'LocalThreadPoolThreadCreationMicroseconds': { + 'name': 'events.LocalThreadPoolThreadCreationMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'LocalWriteThrottlerBytes': {'name': 'events.LocalWriteThrottlerBytes', 'type': 'monotonic_gauge'}, + 'LocalWriteThrottlerSleepMicroseconds': { + 'name': 'events.LocalWriteThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'LogDebug': {'name': 'events.LogDebug', 'type': 'monotonic_gauge'}, + 'LogError': {'name': 'events.LogError', 'type': 'monotonic_gauge'}, + 'LogFatal': {'name': 'events.LogFatal', 'type': 'monotonic_gauge'}, + 'LogInfo': {'name': 'events.LogInfo', 'type': 'monotonic_gauge'}, + 'LogTest': {'name': 'events.LogTest', 'type': 'monotonic_gauge'}, + 'LogTrace': {'name': 'events.LogTrace', 'type': 'monotonic_gauge'}, + 'LogWarning': {'name': 'events.LogWarning', 'type': 'monotonic_gauge'}, + 'LoggerElapsedNanoseconds': { + 'name': 'events.LoggerElapsedNanoseconds', + 'type': 'temporal_percent', + 'scale': 'nanosecond', + }, + 'MMappedFileCacheHits': {'name': 'events.MMappedFileCacheHits', 'type': 'monotonic_gauge'}, + 'MMappedFileCacheMisses': {'name': 'events.MMappedFileCacheMisses', 'type': 'monotonic_gauge'}, + 'MainConfigLoads': {'name': 'events.MainConfigLoads', 'type': 'monotonic_gauge'}, + 'MarkCacheEvictedBytes': {'name': 'events.MarkCacheEvictedBytes', 'type': 'monotonic_gauge'}, + 'MarkCacheEvictedFiles': {'name': 'events.MarkCacheEvictedFiles', 'type': 'monotonic_gauge'}, + 'MarkCacheEvictedMarks': {'name': 'events.MarkCacheEvictedMarks', 'type': 'monotonic_gauge'}, + 'MarkCacheHits': {'name': 'events.MarkCacheHits', 'type': 'monotonic_gauge'}, + 'MarkCacheMisses': {'name': 'events.MarkCacheMisses', 'type': 'monotonic_gauge'}, + 'MemoryAllocatorPurge': {'name': 'events.MemoryAllocatorPurge', 'type': 'monotonic_gauge'}, + 'MemoryAllocatorPurgeTimeMicroseconds': { + 'name': 'events.MemoryAllocatorPurgeTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MemoryOvercommitWaitTimeMicroseconds': { + 'name': 'events.MemoryOvercommitWaitTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MemoryWorkerRun': {'name': 'events.MemoryWorkerRun', 'type': 'monotonic_gauge'}, + 'MemoryWorkerRunElapsedMicroseconds': { + 'name': 'events.MemoryWorkerRunElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'Merge': {'name': 'events.Merge', 'type': 'monotonic_gauge'}, + 'MergeExecuteMilliseconds': { + 'name': 'events.MergeExecuteMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergeHorizontalStageExecuteMilliseconds': { + 'name': 'events.MergeHorizontalStageExecuteMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergeHorizontalStageTotalMilliseconds': { + 'name': 'events.MergeHorizontalStageTotalMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergeMutateBackgroundExecutorTaskCancelMicroseconds': { + 'name': 'events.MergeMutateBackgroundExecutorTaskCancelMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeMutateBackgroundExecutorTaskExecuteStepMicroseconds': { + 'name': 'events.MergeMutateBackgroundExecutorTaskExecuteStepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeMutateBackgroundExecutorTaskResetMicroseconds': { + 'name': 'events.MergeMutateBackgroundExecutorTaskResetMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeMutateBackgroundExecutorWaitMicroseconds': { + 'name': 'events.MergeMutateBackgroundExecutorWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergePrewarmStageExecuteMilliseconds': { + 'name': 'events.MergePrewarmStageExecuteMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergePrewarmStageTotalMilliseconds': { + 'name': 'events.MergePrewarmStageTotalMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergeProjectionStageExecuteMilliseconds': { + 'name': 'events.MergeProjectionStageExecuteMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergeProjectionStageTotalMilliseconds': { + 'name': 'events.MergeProjectionStageTotalMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergeSourceParts': {'name': 'events.MergeSourceParts', 'type': 'monotonic_gauge'}, + 'MergeTotalMilliseconds': { + 'name': 'events.MergeTotalMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergeTreeAllRangesAnnouncementsSent': { + 'name': 'events.MergeTreeAllRangesAnnouncementsSent', + 'type': 'monotonic_gauge', + }, + 'MergeTreeAllRangesAnnouncementsSentElapsedMicroseconds': { + 'name': 'events.MergeTreeAllRangesAnnouncementsSentElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeTreeDataProjectionWriterBlocks': { + 'name': 'events.MergeTreeDataProjectionWriterBlocks', + 'type': 'monotonic_gauge', + }, + 'MergeTreeDataProjectionWriterBlocksAlreadySorted': { + 'name': 'events.MergeTreeDataProjectionWriterBlocksAlreadySorted', + 'type': 'monotonic_gauge', + }, + 'MergeTreeDataProjectionWriterCompressedBytes': { + 'name': 'events.MergeTreeDataProjectionWriterCompressedBytes', + 'type': 'monotonic_gauge', + }, + 'MergeTreeDataProjectionWriterMergingBlocksMicroseconds': { + 'name': 'events.MergeTreeDataProjectionWriterMergingBlocksMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeTreeDataProjectionWriterRows': { + 'name': 'events.MergeTreeDataProjectionWriterRows', + 'type': 'monotonic_gauge', + }, + 'MergeTreeDataProjectionWriterSortingBlocksMicroseconds': { + 'name': 'events.MergeTreeDataProjectionWriterSortingBlocksMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeTreeDataProjectionWriterUncompressedBytes': { + 'name': 'events.MergeTreeDataProjectionWriterUncompressedBytes', + 'type': 'monotonic_gauge', + }, + 'MergeTreeDataWriterBlocks': {'name': 'events.MergeTreeDataWriterBlocks', 'type': 'monotonic_gauge'}, + 'MergeTreeDataWriterBlocksAlreadySorted': { + 'name': 'events.MergeTreeDataWriterBlocksAlreadySorted', + 'type': 'monotonic_gauge', + }, + 'MergeTreeDataWriterCompressedBytes': { + 'name': 'events.MergeTreeDataWriterCompressedBytes', + 'type': 'monotonic_gauge', + }, + 'MergeTreeDataWriterMergingBlocksMicroseconds': { + 'name': 'events.MergeTreeDataWriterMergingBlocksMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeTreeDataWriterProjectionsCalculationMicroseconds': { + 'name': 'events.MergeTreeDataWriterProjectionsCalculationMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeTreeDataWriterRows': {'name': 'events.MergeTreeDataWriterRows', 'type': 'monotonic_gauge'}, + 'MergeTreeDataWriterSkipIndicesCalculationMicroseconds': { + 'name': 'events.MergeTreeDataWriterSkipIndicesCalculationMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeTreeDataWriterSortingBlocksMicroseconds': { + 'name': 'events.MergeTreeDataWriterSortingBlocksMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeTreeDataWriterStatisticsCalculationMicroseconds': { + 'name': 'events.MergeTreeDataWriterStatisticsCalculationMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeTreeDataWriterUncompressedBytes': { + 'name': 'events.MergeTreeDataWriterUncompressedBytes', + 'type': 'monotonic_gauge', + }, + 'MergeTreePrefetchedReadPoolInit': { + 'name': 'events.MergeTreePrefetchedReadPoolInit', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeTreeReadTaskRequestsReceived': { + 'name': 'events.MergeTreeReadTaskRequestsReceived', + 'type': 'monotonic_gauge', + }, + 'MergeTreeReadTaskRequestsSent': { + 'name': 'events.MergeTreeReadTaskRequestsSent', + 'type': 'monotonic_gauge', + }, + 'MergeTreeReadTaskRequestsSentElapsedMicroseconds': { + 'name': 'events.MergeTreeReadTaskRequestsSentElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergeVerticalStageExecuteMilliseconds': { + 'name': 'events.MergeVerticalStageExecuteMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergeVerticalStageTotalMilliseconds': { + 'name': 'events.MergeVerticalStageTotalMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MergedColumns': {'name': 'events.MergedColumns', 'type': 'monotonic_gauge'}, + 'MergedIntoCompactParts': {'name': 'events.MergedIntoCompactParts', 'type': 'monotonic_gauge'}, + 'MergedIntoWideParts': {'name': 'events.MergedIntoWideParts', 'type': 'monotonic_gauge'}, + 'MergedRows': {'name': 'events.MergedRows', 'type': 'monotonic_gauge'}, + 'MergedUncompressedBytes': {'name': 'events.MergedUncompressedBytes', 'type': 'monotonic_gauge'}, + 'MergerMutatorPartsInRangesForMergeCount': { + 'name': 'events.MergerMutatorPartsInRangesForMergeCount', + 'type': 'monotonic_gauge', + }, + 'MergerMutatorPrepareRangesForMergeElapsedMicroseconds': { + 'name': 'events.MergerMutatorPrepareRangesForMergeElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergerMutatorRangesForMergeCount': { + 'name': 'events.MergerMutatorRangesForMergeCount', + 'type': 'monotonic_gauge', + }, + 'MergerMutatorSelectPartsForMergeElapsedMicroseconds': { + 'name': 'events.MergerMutatorSelectPartsForMergeElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergerMutatorSelectRangePartsCount': { + 'name': 'events.MergerMutatorSelectRangePartsCount', + 'type': 'monotonic_gauge', + }, + 'MergerMutatorsGetPartsForMergeElapsedMicroseconds': { + 'name': 'events.MergerMutatorsGetPartsForMergeElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergesThrottlerBytes': {'name': 'events.MergesThrottlerBytes', 'type': 'monotonic_gauge'}, + 'MergesThrottlerSleepMicroseconds': { + 'name': 'events.MergesThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MergingSortedMilliseconds': { + 'name': 'events.MergingSortedMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MetadataFromKeeperBackgroundCleanupErrors': { + 'name': 'events.MetadataFromKeeperBackgroundCleanupErrors', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperBackgroundCleanupObjects': { + 'name': 'events.MetadataFromKeeperBackgroundCleanupObjects', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperBackgroundCleanupTransactions': { + 'name': 'events.MetadataFromKeeperBackgroundCleanupTransactions', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperCacheHit': {'name': 'events.MetadataFromKeeperCacheHit', 'type': 'monotonic_gauge'}, + 'MetadataFromKeeperCacheMiss': { + 'name': 'events.MetadataFromKeeperCacheMiss', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperCacheUpdateMicroseconds': { + 'name': 'events.MetadataFromKeeperCacheUpdateMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MetadataFromKeeperCleanupTransactionCommit': { + 'name': 'events.MetadataFromKeeperCleanupTransactionCommit', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperCleanupTransactionCommitRetry': { + 'name': 'events.MetadataFromKeeperCleanupTransactionCommitRetry', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperIndividualOperations': { + 'name': 'events.MetadataFromKeeperIndividualOperations', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperIndividualOperationsMicroseconds': { + 'name': 'events.MetadataFromKeeperIndividualOperationsMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MetadataFromKeeperOperations': { + 'name': 'events.MetadataFromKeeperOperations', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperReconnects': { + 'name': 'events.MetadataFromKeeperReconnects', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperTransactionCommit': { + 'name': 'events.MetadataFromKeeperTransactionCommit', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperTransactionCommitRetry': { + 'name': 'events.MetadataFromKeeperTransactionCommitRetry', + 'type': 'monotonic_gauge', + }, + 'MetadataFromKeeperUpdateCacheOneLevel': { + 'name': 'events.MetadataFromKeeperUpdateCacheOneLevel', + 'type': 'monotonic_gauge', + }, + 'MoveBackgroundExecutorTaskCancelMicroseconds': { + 'name': 'events.MoveBackgroundExecutorTaskCancelMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MoveBackgroundExecutorTaskExecuteStepMicroseconds': { + 'name': 'events.MoveBackgroundExecutorTaskExecuteStepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MoveBackgroundExecutorTaskResetMicroseconds': { + 'name': 'events.MoveBackgroundExecutorTaskResetMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MoveBackgroundExecutorWaitMicroseconds': { + 'name': 'events.MoveBackgroundExecutorWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MutateTaskProjectionsCalculationMicroseconds': { + 'name': 'events.MutateTaskProjectionsCalculationMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'MutatedRows': {'name': 'events.MutatedRows', 'type': 'monotonic_gauge'}, + 'MutatedUncompressedBytes': {'name': 'events.MutatedUncompressedBytes', 'type': 'monotonic_gauge'}, + 'MutationAffectedRowsUpperBound': { + 'name': 'events.MutationAffectedRowsUpperBound', + 'type': 'monotonic_gauge', + }, + 'MutationAllPartColumns': {'name': 'events.MutationAllPartColumns', 'type': 'monotonic_gauge'}, + 'MutationCreatedEmptyParts': {'name': 'events.MutationCreatedEmptyParts', 'type': 'monotonic_gauge'}, + 'MutationExecuteMilliseconds': { + 'name': 'events.MutationExecuteMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MutationSomePartColumns': {'name': 'events.MutationSomePartColumns', 'type': 'monotonic_gauge'}, + 'MutationTotalMilliseconds': { + 'name': 'events.MutationTotalMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'MutationTotalParts': {'name': 'events.MutationTotalParts', 'type': 'monotonic_gauge'}, + 'MutationUntouchedParts': {'name': 'events.MutationUntouchedParts', 'type': 'monotonic_gauge'}, + 'MutationsAppliedOnFlyInAllParts': {'name': 'events.MutationsAppliedOnFlyInAllParts', 'type': 'gauge'}, + 'MutationsAppliedOnFlyInAllReadTasks': { + 'name': 'events.MutationsAppliedOnFlyInAllReadTasks', + 'type': 'monotonic_gauge', + }, + 'MutationsThrottlerBytes': {'name': 'events.MutationsThrottlerBytes', 'type': 'monotonic_gauge'}, + 'MutationsThrottlerSleepMicroseconds': { + 'name': 'events.MutationsThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'NetworkReceiveBytes': {'name': 'events.NetworkReceiveBytes', 'type': 'monotonic_gauge'}, + 'NetworkReceiveElapsedMicroseconds': { + 'name': 'events.NetworkReceiveElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'NetworkSendBytes': {'name': 'events.NetworkSendBytes', 'type': 'monotonic_gauge'}, + 'NetworkSendElapsedMicroseconds': { + 'name': 'events.NetworkSendElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'NotCreatedLogEntryForMerge': {'name': 'events.NotCreatedLogEntryForMerge', 'type': 'monotonic_gauge'}, + 'NotCreatedLogEntryForMutation': { + 'name': 'events.NotCreatedLogEntryForMutation', + 'type': 'monotonic_gauge', + }, + 'OSCPUVirtualTimeMicroseconds': { + 'name': 'events.OSCPUVirtualTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'OSCPUWaitMicroseconds': { + 'name': 'events.OSCPUWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'OSIOWaitMicroseconds': { + 'name': 'events.OSIOWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'OSReadBytes': {'name': 'events.OSReadBytes', 'type': 'monotonic_gauge'}, + 'OSReadChars': {'name': 'events.OSReadChars', 'type': 'monotonic_gauge'}, + 'OSWriteBytes': {'name': 'events.OSWriteBytes', 'type': 'monotonic_gauge'}, + 'OSWriteChars': {'name': 'events.OSWriteChars', 'type': 'monotonic_gauge'}, + 'ObjectStorageQueueCancelledFiles': { + 'name': 'events.ObjectStorageQueueCancelledFiles', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueCleanupMaxSetSizeOrTTLMicroseconds': { + 'name': 'events.ObjectStorageQueueCleanupMaxSetSizeOrTTLMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ObjectStorageQueueCommitRequests': { + 'name': 'events.ObjectStorageQueueCommitRequests', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueExceptionsDuringInsert': { + 'name': 'events.ObjectStorageQueueExceptionsDuringInsert', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueExceptionsDuringRead': { + 'name': 'events.ObjectStorageQueueExceptionsDuringRead', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueFailedFiles': { + 'name': 'events.ObjectStorageQueueFailedFiles', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueFailedToBatchSetProcessing': { + 'name': 'events.ObjectStorageQueueFailedToBatchSetProcessing', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueFilteredFiles': { + 'name': 'events.ObjectStorageQueueFilteredFiles', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueInsertIterations': { + 'name': 'events.ObjectStorageQueueInsertIterations', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueListedFiles': { + 'name': 'events.ObjectStorageQueueListedFiles', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueLockLocalFileStatusesMicroseconds': { + 'name': 'events.ObjectStorageQueueLockLocalFileStatusesMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ObjectStorageQueueProcessedFiles': { + 'name': 'events.ObjectStorageQueueProcessedFiles', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueProcessedRows': { + 'name': 'events.ObjectStorageQueueProcessedRows', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueuePullMicroseconds': { + 'name': 'events.ObjectStorageQueuePullMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ObjectStorageQueueReadBytes': { + 'name': 'events.ObjectStorageQueueReadBytes', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueReadFiles': { + 'name': 'events.ObjectStorageQueueReadFiles', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueReadRows': {'name': 'events.ObjectStorageQueueReadRows', 'type': 'monotonic_gauge'}, + 'ObjectStorageQueueRemovedObjects': { + 'name': 'events.ObjectStorageQueueRemovedObjects', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueSuccessfulCommits': { + 'name': 'events.ObjectStorageQueueSuccessfulCommits', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueTrySetProcessingFailed': { + 'name': 'events.ObjectStorageQueueTrySetProcessingFailed', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueTrySetProcessingRequests': { + 'name': 'events.ObjectStorageQueueTrySetProcessingRequests', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueTrySetProcessingSucceeded': { + 'name': 'events.ObjectStorageQueueTrySetProcessingSucceeded', + 'type': 'monotonic_gauge', + }, + 'ObjectStorageQueueUnsuccessfulCommits': { + 'name': 'events.ObjectStorageQueueUnsuccessfulCommits', + 'type': 'monotonic_gauge', + }, + 'ObsoleteReplicatedParts': {'name': 'events.ObsoleteReplicatedParts', 'type': 'monotonic_gauge'}, + 'OpenedFileCacheHits': {'name': 'events.OpenedFileCacheHits', 'type': 'monotonic_gauge'}, + 'OpenedFileCacheMicroseconds': { + 'name': 'events.OpenedFileCacheMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'OpenedFileCacheMisses': {'name': 'events.OpenedFileCacheMisses', 'type': 'monotonic_gauge'}, + 'OtherQueryTimeMicroseconds': { + 'name': 'events.OtherQueryTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'OverflowAny': {'name': 'events.OverflowAny', 'type': 'monotonic_gauge'}, + 'OverflowBreak': {'name': 'events.OverflowBreak', 'type': 'monotonic_gauge'}, + 'OverflowThrow': {'name': 'events.OverflowThrow', 'type': 'monotonic_gauge'}, + 'PageCacheBytesUnpinnedRoundedToHugePages': { + 'name': 'events.PageCacheBytesUnpinnedRoundedToHugePages', + 'type': 'gauge', + }, + 'PageCacheBytesUnpinnedRoundedToPages': { + 'name': 'events.PageCacheBytesUnpinnedRoundedToPages', + 'type': 'gauge', + }, + 'PageCacheChunkDataHits': {'name': 'events.PageCacheChunkDataHits', 'type': 'gauge'}, + 'PageCacheChunkDataMisses': {'name': 'events.PageCacheChunkDataMisses', 'type': 'gauge'}, + 'PageCacheChunkDataPartialHits': {'name': 'events.PageCacheChunkDataPartialHits', 'type': 'gauge'}, + 'PageCacheChunkMisses': {'name': 'events.PageCacheChunkMisses', 'type': 'gauge'}, + 'PageCacheChunkShared': {'name': 'events.PageCacheChunkShared', 'type': 'gauge'}, + 'PageCacheHits': {'name': 'events.PageCacheHits', 'type': 'monotonic_gauge'}, + 'PageCacheMisses': {'name': 'events.PageCacheMisses', 'type': 'monotonic_gauge'}, + 'PageCacheOvercommitResize': {'name': 'events.PageCacheOvercommitResize', 'type': 'monotonic_gauge'}, + 'PageCacheReadBytes': {'name': 'events.PageCacheReadBytes', 'type': 'monotonic_gauge'}, + 'PageCacheResized': {'name': 'events.PageCacheResized', 'type': 'monotonic_gauge'}, + 'PageCacheWeightLost': {'name': 'events.PageCacheWeightLost', 'type': 'monotonic_gauge'}, + 'ParallelReplicasAnnouncementMicroseconds': { + 'name': 'events.ParallelReplicasAnnouncementMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ParallelReplicasAvailableCount': { + 'name': 'events.ParallelReplicasAvailableCount', + 'type': 'monotonic_gauge', + }, + 'ParallelReplicasCollectingOwnedSegmentsMicroseconds': { + 'name': 'events.ParallelReplicasCollectingOwnedSegmentsMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ParallelReplicasDeniedRequests': { + 'name': 'events.ParallelReplicasDeniedRequests', + 'type': 'monotonic_gauge', + }, + 'ParallelReplicasHandleAnnouncementMicroseconds': { + 'name': 'events.ParallelReplicasHandleAnnouncementMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ParallelReplicasHandleRequestMicroseconds': { + 'name': 'events.ParallelReplicasHandleRequestMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ParallelReplicasNumRequests': { + 'name': 'events.ParallelReplicasNumRequests', + 'type': 'monotonic_gauge', + }, + 'ParallelReplicasProcessingPartsMicroseconds': { + 'name': 'events.ParallelReplicasProcessingPartsMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ParallelReplicasQueryCount': {'name': 'events.ParallelReplicasQueryCount', 'type': 'monotonic_gauge'}, + 'ParallelReplicasReadAssignedForStealingMarks': { + 'name': 'events.ParallelReplicasReadAssignedForStealingMarks', + 'type': 'monotonic_gauge', + }, + 'ParallelReplicasReadAssignedMarks': { + 'name': 'events.ParallelReplicasReadAssignedMarks', + 'type': 'monotonic_gauge', + }, + 'ParallelReplicasReadMarks': {'name': 'events.ParallelReplicasReadMarks', 'type': 'monotonic_gauge'}, + 'ParallelReplicasReadRequestMicroseconds': { + 'name': 'events.ParallelReplicasReadRequestMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ParallelReplicasReadUnassignedMarks': { + 'name': 'events.ParallelReplicasReadUnassignedMarks', + 'type': 'monotonic_gauge', + }, + 'ParallelReplicasStealingByHashMicroseconds': { + 'name': 'events.ParallelReplicasStealingByHashMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ParallelReplicasStealingLeftoversMicroseconds': { + 'name': 'events.ParallelReplicasStealingLeftoversMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ParallelReplicasUnavailableCount': { + 'name': 'events.ParallelReplicasUnavailableCount', + 'type': 'monotonic_gauge', + }, + 'ParallelReplicasUsedCount': {'name': 'events.ParallelReplicasUsedCount', 'type': 'monotonic_gauge'}, + 'ParquetDecodingTaskBatches': {'name': 'events.ParquetDecodingTaskBatches', 'type': 'monotonic_gauge'}, + 'ParquetDecodingTasks': {'name': 'events.ParquetDecodingTasks', 'type': 'monotonic_gauge'}, + 'ParquetFetchWaitTimeMicroseconds': { + 'name': 'events.ParquetFetchWaitTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ParquetPrunedRowGroups': {'name': 'events.ParquetPrunedRowGroups', 'type': 'monotonic_gauge'}, + 'ParquetReadRowGroups': {'name': 'events.ParquetReadRowGroups', 'type': 'monotonic_gauge'}, + 'PartsLockHoldMicroseconds': { + 'name': 'events.PartsLockHoldMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'PartsLockWaitMicroseconds': { + 'name': 'events.PartsLockWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'PartsWithAppliedMutationsOnFly': {'name': 'events.PartsWithAppliedMutationsOnFly', 'type': 'gauge'}, + 'PatchesAcquireLockMicroseconds': { + 'name': 'events.PatchesAcquireLockMicroseconds', + 'type': 'monotonic_gauge', + }, + 'PatchesAcquireLockTries': {'name': 'events.PatchesAcquireLockTries', 'type': 'monotonic_gauge'}, + 'PatchesAppliedInAllReadTasks': { + 'name': 'events.PatchesAppliedInAllReadTasks', + 'type': 'monotonic_gauge', + }, + 'PatchesJoinAppliedInAllReadTasks': { + 'name': 'events.PatchesJoinAppliedInAllReadTasks', + 'type': 'monotonic_gauge', + }, + 'PatchesMergeAppliedInAllReadTasks': { + 'name': 'events.PatchesMergeAppliedInAllReadTasks', + 'type': 'monotonic_gauge', + }, + 'PatchesReadUncompressedBytes': { + 'name': 'events.PatchesReadUncompressedBytes', + 'type': 'monotonic_gauge', + }, + 'PerfAlignmentFaults': {'name': 'events.PerfAlignmentFaults', 'type': 'monotonic_gauge'}, + 'PerfBranchInstructions': {'name': 'events.PerfBranchInstructions', 'type': 'monotonic_gauge'}, + 'PerfBranchMisses': {'name': 'events.PerfBranchMisses', 'type': 'monotonic_gauge'}, + 'PerfBusCycles': {'name': 'events.PerfBusCycles', 'type': 'monotonic_gauge'}, + 'PerfCPUClock': {'name': 'events.PerfCPUClock', 'type': 'monotonic_gauge'}, + 'PerfCPUCycles': {'name': 'events.PerfCPUCycles', 'type': 'monotonic_gauge'}, + 'PerfCPUMigrations': {'name': 'events.PerfCPUMigrations', 'type': 'monotonic_gauge'}, + 'PerfCacheMisses': {'name': 'events.PerfCacheMisses', 'type': 'monotonic_gauge'}, + 'PerfCacheReferences': {'name': 'events.PerfCacheReferences', 'type': 'monotonic_gauge'}, + 'PerfContextSwitches': {'name': 'events.PerfContextSwitches', 'type': 'monotonic_gauge'}, + 'PerfDataTLBMisses': {'name': 'events.PerfDataTLBMisses', 'type': 'monotonic_gauge'}, + 'PerfDataTLBReferences': {'name': 'events.PerfDataTLBReferences', 'type': 'monotonic_gauge'}, + 'PerfEmulationFaults': {'name': 'events.PerfEmulationFaults', 'type': 'monotonic_gauge'}, + 'PerfInstructionTLBMisses': {'name': 'events.PerfInstructionTLBMisses', 'type': 'monotonic_gauge'}, + 'PerfInstructionTLBReferences': { + 'name': 'events.PerfInstructionTLBReferences', + 'type': 'monotonic_gauge', + }, + 'PerfInstructions': {'name': 'events.PerfInstructions', 'type': 'monotonic_gauge'}, + 'PerfLocalMemoryMisses': {'name': 'events.PerfLocalMemoryMisses', 'type': 'monotonic_gauge'}, + 'PerfLocalMemoryReferences': {'name': 'events.PerfLocalMemoryReferences', 'type': 'monotonic_gauge'}, + 'PerfMinEnabledRunningTime': {'name': 'events.PerfMinEnabledRunningTime', 'type': 'monotonic_gauge'}, + 'PerfMinEnabledTime': {'name': 'events.PerfMinEnabledTime', 'type': 'monotonic_gauge'}, + 'PerfRefCPUCycles': {'name': 'events.PerfRefCPUCycles', 'type': 'monotonic_gauge'}, + 'PerfStalledCyclesBackend': {'name': 'events.PerfStalledCyclesBackend', 'type': 'monotonic_gauge'}, + 'PerfStalledCyclesFrontend': {'name': 'events.PerfStalledCyclesFrontend', 'type': 'monotonic_gauge'}, + 'PerfTaskClock': {'name': 'events.PerfTaskClock', 'type': 'monotonic_gauge'}, + 'PolygonsAddedToPool': {'name': 'events.PolygonsAddedToPool', 'type': 'monotonic_gauge'}, + 'PolygonsInPoolAllocatedBytes': { + 'name': 'events.PolygonsInPoolAllocatedBytes', + 'type': 'monotonic_gauge', + }, + 'PreferredWarmedUnmergedParts': { + 'name': 'events.PreferredWarmedUnmergedParts', + 'type': 'monotonic_gauge', + }, + 'PrimaryIndexCacheHits': {'name': 'events.PrimaryIndexCacheHits', 'type': 'monotonic_gauge'}, + 'PrimaryIndexCacheMisses': {'name': 'events.PrimaryIndexCacheMisses', 'type': 'monotonic_gauge'}, + 'QueriesWithSubqueries': {'name': 'events.QueriesWithSubqueries', 'type': 'monotonic_gauge'}, + 'Query': {'name': 'events.Query', 'type': 'monotonic_gauge'}, + 'QueryBackupThrottlerBytes': {'name': 'events.QueryBackupThrottlerBytes', 'type': 'monotonic_gauge'}, + 'QueryBackupThrottlerSleepMicroseconds': { + 'name': 'events.QueryBackupThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'QueryCacheHits': {'name': 'events.QueryCacheHits', 'type': 'monotonic_gauge'}, + 'QueryCacheMisses': {'name': 'events.QueryCacheMisses', 'type': 'monotonic_gauge'}, + 'QueryConditionCacheHits': {'name': 'events.QueryConditionCacheHits', 'type': 'monotonic_gauge'}, + 'QueryConditionCacheMisses': {'name': 'events.QueryConditionCacheMisses', 'type': 'monotonic_gauge'}, + 'QueryLocalReadThrottlerBytes': { + 'name': 'events.QueryLocalReadThrottlerBytes', + 'type': 'monotonic_gauge', + }, + 'QueryLocalReadThrottlerSleepMicroseconds': { + 'name': 'events.QueryLocalReadThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'QueryLocalWriteThrottlerBytes': { + 'name': 'events.QueryLocalWriteThrottlerBytes', + 'type': 'monotonic_gauge', + }, + 'QueryLocalWriteThrottlerSleepMicroseconds': { + 'name': 'events.QueryLocalWriteThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'QueryMaskingRulesMatch': {'name': 'events.QueryMaskingRulesMatch', 'type': 'monotonic_gauge'}, + 'QueryMemoryLimitExceeded': {'name': 'events.QueryMemoryLimitExceeded', 'type': 'monotonic_gauge'}, + 'QueryPreempted': {'name': 'events.QueryPreempted', 'type': 'monotonic_gauge'}, + 'QueryProfilerConcurrencyOverruns': { + 'name': 'events.QueryProfilerConcurrencyOverruns', + 'type': 'monotonic_gauge', + }, + 'QueryProfilerErrors': {'name': 'events.QueryProfilerErrors', 'type': 'monotonic_gauge'}, + 'QueryProfilerRuns': {'name': 'events.QueryProfilerRuns', 'type': 'monotonic_gauge'}, + 'QueryProfilerSignalOverruns': { + 'name': 'events.QueryProfilerSignalOverruns', + 'type': 'monotonic_gauge', + }, + 'QueryRemoteReadThrottlerBytes': { + 'name': 'events.QueryRemoteReadThrottlerBytes', + 'type': 'monotonic_gauge', + }, + 'QueryRemoteReadThrottlerSleepMicroseconds': { + 'name': 'events.QueryRemoteReadThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'QueryRemoteWriteThrottlerBytes': { + 'name': 'events.QueryRemoteWriteThrottlerBytes', + 'type': 'monotonic_gauge', + }, + 'QueryRemoteWriteThrottlerSleepMicroseconds': { + 'name': 'events.QueryRemoteWriteThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'QueryTimeMicroseconds': { + 'name': 'events.QueryTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'RWLockAcquiredReadLocks': {'name': 'events.RWLockAcquiredReadLocks', 'type': 'monotonic_gauge'}, + 'RWLockAcquiredWriteLocks': {'name': 'events.RWLockAcquiredWriteLocks', 'type': 'monotonic_gauge'}, + 'RWLockReadersWaitMilliseconds': { + 'name': 'events.RWLockReadersWaitMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'RWLockWritersWaitMilliseconds': { + 'name': 'events.RWLockWritersWaitMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'ReadBackoff': {'name': 'events.ReadBackoff', 'type': 'monotonic_gauge'}, + 'ReadBufferFromAzureBytes': {'name': 'events.ReadBufferFromAzureBytes', 'type': 'monotonic_gauge'}, + 'ReadBufferFromAzureInitMicroseconds': { + 'name': 'events.ReadBufferFromAzureInitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ReadBufferFromAzureMicroseconds': { + 'name': 'events.ReadBufferFromAzureMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ReadBufferFromAzureRequestsErrors': { + 'name': 'events.ReadBufferFromAzureRequestsErrors', + 'type': 'monotonic_gauge', + }, + 'ReadBufferFromFileDescriptorRead': { + 'name': 'events.ReadBufferFromFileDescriptorRead', + 'type': 'monotonic_gauge', + }, + 'ReadBufferFromFileDescriptorReadBytes': { + 'name': 'events.ReadBufferFromFileDescriptorReadBytes', + 'type': 'monotonic_gauge', + }, + 'ReadBufferFromFileDescriptorReadFailed': { + 'name': 'events.ReadBufferFromFileDescriptorReadFailed', + 'type': 'monotonic_gauge', + }, + 'ReadBufferFromS3Bytes': {'name': 'events.ReadBufferFromS3Bytes', 'type': 'monotonic_gauge'}, + 'ReadBufferFromS3InitMicroseconds': { + 'name': 'events.ReadBufferFromS3InitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ReadBufferFromS3Microseconds': { + 'name': 'events.ReadBufferFromS3Microseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ReadBufferFromS3RequestsErrors': { + 'name': 'events.ReadBufferFromS3RequestsErrors', + 'type': 'monotonic_gauge', + }, + 'ReadBufferSeekCancelConnection': { + 'name': 'events.ReadBufferSeekCancelConnection', + 'type': 'monotonic_gauge', + }, + 'ReadCompressedBytes': {'name': 'events.ReadCompressedBytes', 'type': 'monotonic_gauge'}, + 'ReadPatchesMicroseconds': {'name': 'events.ReadPatchesMicroseconds', 'type': 'monotonic_gauge'}, + 'ReadTaskRequestsReceived': {'name': 'events.ReadTaskRequestsReceived', 'type': 'monotonic_gauge'}, + 'ReadTaskRequestsSent': {'name': 'events.ReadTaskRequestsSent', 'type': 'monotonic_gauge'}, + 'ReadTaskRequestsSentElapsedMicroseconds': { + 'name': 'events.ReadTaskRequestsSentElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ReadTasksWithAppliedMutationsOnFly': { + 'name': 'events.ReadTasksWithAppliedMutationsOnFly', + 'type': 'monotonic_gauge', + }, + 'ReadTasksWithAppliedPatches': { + 'name': 'events.ReadTasksWithAppliedPatches', + 'type': 'monotonic_gauge', + }, + 'ReadWriteBufferFromHTTPBytes': { + 'name': 'events.ReadWriteBufferFromHTTPBytes', + 'type': 'monotonic_gauge', + }, + 'ReadWriteBufferFromHTTPRequestsSent': { + 'name': 'events.ReadWriteBufferFromHTTPRequestsSent', + 'type': 'monotonic_gauge', + }, + 'RealTimeMicroseconds': { + 'name': 'events.RealTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'RefreshableViewLockTableRetry': { + 'name': 'events.RefreshableViewLockTableRetry', + 'type': 'monotonic_gauge', + }, + 'RefreshableViewRefreshFailed': { + 'name': 'events.RefreshableViewRefreshFailed', + 'type': 'monotonic_gauge', + }, + 'RefreshableViewRefreshSuccess': { + 'name': 'events.RefreshableViewRefreshSuccess', + 'type': 'monotonic_gauge', + }, + 'RefreshableViewSyncReplicaRetry': { + 'name': 'events.RefreshableViewSyncReplicaRetry', + 'type': 'monotonic_gauge', + }, + 'RefreshableViewSyncReplicaSuccess': { + 'name': 'events.RefreshableViewSyncReplicaSuccess', + 'type': 'monotonic_gauge', + }, + 'RegexpLocalCacheHit': {'name': 'events.RegexpLocalCacheHit', 'type': 'monotonic_gauge'}, + 'RegexpLocalCacheMiss': {'name': 'events.RegexpLocalCacheMiss', 'type': 'monotonic_gauge'}, + 'RegexpWithMultipleNeedlesCreated': { + 'name': 'events.RegexpWithMultipleNeedlesCreated', + 'type': 'monotonic_gauge', + }, + 'RegexpWithMultipleNeedlesGlobalCacheHit': { + 'name': 'events.RegexpWithMultipleNeedlesGlobalCacheHit', + 'type': 'monotonic_gauge', + }, + 'RegexpWithMultipleNeedlesGlobalCacheMiss': { + 'name': 'events.RegexpWithMultipleNeedlesGlobalCacheMiss', + 'type': 'monotonic_gauge', + }, + 'RejectedInserts': {'name': 'events.RejectedInserts', 'type': 'monotonic_gauge'}, + 'RejectedLightweightUpdates': {'name': 'events.RejectedLightweightUpdates', 'type': 'monotonic_gauge'}, + 'RejectedMutations': {'name': 'events.RejectedMutations', 'type': 'monotonic_gauge'}, + 'RemoteFSBuffers': {'name': 'events.RemoteFSBuffers', 'type': 'monotonic_gauge'}, + 'RemoteFSCancelledPrefetches': { + 'name': 'events.RemoteFSCancelledPrefetches', + 'type': 'monotonic_gauge', + }, + 'RemoteFSLazySeeks': {'name': 'events.RemoteFSLazySeeks', 'type': 'monotonic_gauge'}, + 'RemoteFSPrefetchedBytes': {'name': 'events.RemoteFSPrefetchedBytes', 'type': 'monotonic_gauge'}, + 'RemoteFSPrefetchedReads': {'name': 'events.RemoteFSPrefetchedReads', 'type': 'monotonic_gauge'}, + 'RemoteFSPrefetches': {'name': 'events.RemoteFSPrefetches', 'type': 'monotonic_gauge'}, + 'RemoteFSSeeks': {'name': 'events.RemoteFSSeeks', 'type': 'monotonic_gauge'}, + 'RemoteFSSeeksWithReset': {'name': 'events.RemoteFSSeeksWithReset', 'type': 'monotonic_gauge'}, + 'RemoteFSUnprefetchedBytes': {'name': 'events.RemoteFSUnprefetchedBytes', 'type': 'monotonic_gauge'}, + 'RemoteFSUnprefetchedReads': {'name': 'events.RemoteFSUnprefetchedReads', 'type': 'monotonic_gauge'}, + 'RemoteFSUnusedPrefetches': {'name': 'events.RemoteFSUnusedPrefetches', 'type': 'monotonic_gauge'}, + 'RemoteReadThrottlerBytes': {'name': 'events.RemoteReadThrottlerBytes', 'type': 'monotonic_gauge'}, + 'RemoteReadThrottlerSleepMicroseconds': { + 'name': 'events.RemoteReadThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'RemoteWriteThrottlerBytes': {'name': 'events.RemoteWriteThrottlerBytes', 'type': 'monotonic_gauge'}, + 'RemoteWriteThrottlerSleepMicroseconds': { + 'name': 'events.RemoteWriteThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ReplacingSortedMilliseconds': { + 'name': 'events.ReplacingSortedMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'ReplicaPartialShutdown': {'name': 'events.ReplicaPartialShutdown', 'type': 'monotonic_gauge'}, + 'ReplicatedCoveredPartsInZooKeeperOnStart': { + 'name': 'events.ReplicatedCoveredPartsInZooKeeperOnStart', + 'type': 'monotonic_gauge', + }, + 'ReplicatedDataLoss': {'name': 'events.ReplicatedDataLoss', 'type': 'monotonic_gauge'}, + 'ReplicatedPartChecks': {'name': 'events.ReplicatedPartChecks', 'type': 'monotonic_gauge'}, + 'ReplicatedPartChecksFailed': {'name': 'events.ReplicatedPartChecksFailed', 'type': 'monotonic_gauge'}, + 'ReplicatedPartFailedFetches': { + 'name': 'events.ReplicatedPartFailedFetches', + 'type': 'monotonic_gauge', + }, + 'ReplicatedPartFetches': {'name': 'events.ReplicatedPartFetches', 'type': 'monotonic_gauge'}, + 'ReplicatedPartFetchesOfMerged': { + 'name': 'events.ReplicatedPartFetchesOfMerged', + 'type': 'monotonic_gauge', + }, + 'ReplicatedPartMerges': {'name': 'events.ReplicatedPartMerges', 'type': 'monotonic_gauge'}, + 'ReplicatedPartMutations': {'name': 'events.ReplicatedPartMutations', 'type': 'monotonic_gauge'}, + 'RestorePartsSkippedBytes': {'name': 'events.RestorePartsSkippedBytes', 'type': 'monotonic_gauge'}, + 'RestorePartsSkippedFiles': {'name': 'events.RestorePartsSkippedFiles', 'type': 'monotonic_gauge'}, + 'RowsReadByMainReader': {'name': 'events.RowsReadByMainReader', 'type': 'monotonic_gauge'}, + 'RowsReadByPrewhereReaders': {'name': 'events.RowsReadByPrewhereReaders', 'type': 'monotonic_gauge'}, + 'S3AbortMultipartUpload': {'name': 'events.S3AbortMultipartUpload', 'type': 'monotonic_gauge'}, + 'S3Clients': {'name': 'events.S3Clients', 'type': 'monotonic_gauge'}, + 'S3CompleteMultipartUpload': {'name': 'events.S3CompleteMultipartUpload', 'type': 'monotonic_gauge'}, + 'S3CopyObject': {'name': 'events.S3CopyObject', 'type': 'monotonic_gauge'}, + 'S3CreateMultipartUpload': {'name': 'events.S3CreateMultipartUpload', 'type': 'monotonic_gauge'}, + 'S3DeleteObjects': {'name': 'events.S3DeleteObjects', 'type': 'monotonic_gauge'}, + 'S3GetObject': {'name': 'events.S3GetObject', 'type': 'monotonic_gauge'}, + 'S3GetObjectAttributes': {'name': 'events.S3GetObjectAttributes', 'type': 'monotonic_gauge'}, + 'S3GetRequestThrottlerCount': {'name': 'events.S3GetRequestThrottlerCount', 'type': 'monotonic_gauge'}, + 'S3GetRequestThrottlerSleepMicroseconds': { + 'name': 'events.S3GetRequestThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'S3HeadObject': {'name': 'events.S3HeadObject', 'type': 'monotonic_gauge'}, + 'S3ListObjects': {'name': 'events.S3ListObjects', 'type': 'monotonic_gauge'}, + 'S3PutObject': {'name': 'events.S3PutObject', 'type': 'monotonic_gauge'}, + 'S3PutRequestThrottlerCount': {'name': 'events.S3PutRequestThrottlerCount', 'type': 'monotonic_gauge'}, + 'S3PutRequestThrottlerSleepMicroseconds': { + 'name': 'events.S3PutRequestThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'S3QueueSetFileFailedMicroseconds': { + 'name': 'events.S3QueueSetFileFailedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'S3QueueSetFileProcessedMicroseconds': { + 'name': 'events.S3QueueSetFileProcessedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'S3QueueSetFileProcessingMicroseconds': { + 'name': 'events.S3QueueSetFileProcessingMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'S3ReadMicroseconds': { + 'name': 'events.S3ReadMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'S3ReadRequestAttempts': {'name': 'events.S3ReadRequestAttempts', 'type': 'monotonic_gauge'}, + 'S3ReadRequestRetryableErrors': { + 'name': 'events.S3ReadRequestRetryableErrors', + 'type': 'monotonic_gauge', + }, + 'S3ReadRequestsCount': {'name': 'events.S3ReadRequestsCount', 'type': 'monotonic_gauge'}, + 'S3ReadRequestsErrors': {'name': 'events.S3ReadRequestsErrors', 'type': 'monotonic_gauge'}, + 'S3ReadRequestsRedirects': {'name': 'events.S3ReadRequestsRedirects', 'type': 'monotonic_gauge'}, + 'S3ReadRequestsThrottling': {'name': 'events.S3ReadRequestsThrottling', 'type': 'monotonic_gauge'}, + 'S3UploadPart': {'name': 'events.S3UploadPart', 'type': 'monotonic_gauge'}, + 'S3UploadPartCopy': {'name': 'events.S3UploadPartCopy', 'type': 'monotonic_gauge'}, + 'S3WriteMicroseconds': { + 'name': 'events.S3WriteMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'S3WriteRequestAttempts': {'name': 'events.S3WriteRequestAttempts', 'type': 'monotonic_gauge'}, + 'S3WriteRequestRetryableErrors': { + 'name': 'events.S3WriteRequestRetryableErrors', + 'type': 'monotonic_gauge', + }, + 'S3WriteRequestsCount': {'name': 'events.S3WriteRequestsCount', 'type': 'monotonic_gauge'}, + 'S3WriteRequestsErrors': {'name': 'events.S3WriteRequestsErrors', 'type': 'monotonic_gauge'}, + 'S3WriteRequestsRedirects': {'name': 'events.S3WriteRequestsRedirects', 'type': 'monotonic_gauge'}, + 'S3WriteRequestsThrottling': {'name': 'events.S3WriteRequestsThrottling', 'type': 'monotonic_gauge'}, + 'ScalarSubqueriesCacheMiss': {'name': 'events.ScalarSubqueriesCacheMiss', 'type': 'monotonic_gauge'}, + 'ScalarSubqueriesGlobalCacheHit': { + 'name': 'events.ScalarSubqueriesGlobalCacheHit', + 'type': 'monotonic_gauge', + }, + 'ScalarSubqueriesLocalCacheHit': { + 'name': 'events.ScalarSubqueriesLocalCacheHit', + 'type': 'monotonic_gauge', + }, + 'SchedulerIOReadBytes': {'name': 'events.SchedulerIOReadBytes', 'type': 'monotonic_gauge'}, + 'SchedulerIOReadRequests': {'name': 'events.SchedulerIOReadRequests', 'type': 'monotonic_gauge'}, + 'SchedulerIOReadWaitMicroseconds': { + 'name': 'events.SchedulerIOReadWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SchedulerIOWriteBytes': {'name': 'events.SchedulerIOWriteBytes', 'type': 'monotonic_gauge'}, + 'SchedulerIOWriteRequests': {'name': 'events.SchedulerIOWriteRequests', 'type': 'monotonic_gauge'}, + 'SchedulerIOWriteWaitMicroseconds': { + 'name': 'events.SchedulerIOWriteWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SchemaInferenceCacheEvictions': { + 'name': 'events.SchemaInferenceCacheEvictions', + 'type': 'monotonic_gauge', + }, + 'SchemaInferenceCacheHits': {'name': 'events.SchemaInferenceCacheHits', 'type': 'monotonic_gauge'}, + 'SchemaInferenceCacheInvalidations': { + 'name': 'events.SchemaInferenceCacheInvalidations', + 'type': 'monotonic_gauge', + }, + 'SchemaInferenceCacheMisses': {'name': 'events.SchemaInferenceCacheMisses', 'type': 'monotonic_gauge'}, + 'SchemaInferenceCacheNumRowsHits': { + 'name': 'events.SchemaInferenceCacheNumRowsHits', + 'type': 'monotonic_gauge', + }, + 'SchemaInferenceCacheNumRowsMisses': { + 'name': 'events.SchemaInferenceCacheNumRowsMisses', + 'type': 'monotonic_gauge', + }, + 'SchemaInferenceCacheSchemaHits': { + 'name': 'events.SchemaInferenceCacheSchemaHits', + 'type': 'monotonic_gauge', + }, + 'SchemaInferenceCacheSchemaMisses': { + 'name': 'events.SchemaInferenceCacheSchemaMisses', + 'type': 'monotonic_gauge', + }, + 'Seek': {'name': 'events.Seek', 'type': 'monotonic_gauge'}, + 'SelectQueriesWithPrimaryKeyUsage': { + 'name': 'events.SelectQueriesWithPrimaryKeyUsage', + 'type': 'monotonic_gauge', + }, + 'SelectQueriesWithSubqueries': { + 'name': 'events.SelectQueriesWithSubqueries', + 'type': 'monotonic_gauge', + }, + 'SelectQuery': {'name': 'events.SelectQuery', 'type': 'monotonic_gauge'}, + 'SelectQueryTimeMicroseconds': { + 'name': 'events.SelectQueryTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SelectedBytes': {'name': 'events.SelectedBytes', 'type': 'monotonic_gauge'}, + 'SelectedMarks': {'name': 'events.SelectedMarks', 'type': 'monotonic_gauge'}, + 'SelectedMarksTotal': {'name': 'events.SelectedMarksTotal', 'type': 'monotonic_gauge'}, + 'SelectedParts': {'name': 'events.SelectedParts', 'type': 'monotonic_gauge'}, + 'SelectedPartsTotal': {'name': 'events.SelectedPartsTotal', 'type': 'monotonic_gauge'}, + 'SelectedRanges': {'name': 'events.SelectedRanges', 'type': 'monotonic_gauge'}, + 'SelectedRows': {'name': 'events.SelectedRows', 'type': 'monotonic_gauge'}, + 'ServerStartupMilliseconds': { + 'name': 'events.ServerStartupMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'SharedDatabaseCatalogFailedToApplyState': { + 'name': 'events.SharedDatabaseCatalogFailedToApplyState', + 'type': 'monotonic_gauge', + }, + 'SharedDatabaseCatalogStateApplicationMicroseconds': { + 'name': 'events.SharedDatabaseCatalogStateApplicationMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SharedMergeTreeCondemnedPartsKillRequest': { + 'name': 'events.SharedMergeTreeCondemnedPartsKillRequest', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeCondemnedPartsLockConfict': { + 'name': 'events.SharedMergeTreeCondemnedPartsLockConfict', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeCondemnedPartsRemoved': { + 'name': 'events.SharedMergeTreeCondemnedPartsRemoved', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeDataPartsFetchAttempt': { + 'name': 'events.SharedMergeTreeDataPartsFetchAttempt', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeDataPartsFetchFromPeer': { + 'name': 'events.SharedMergeTreeDataPartsFetchFromPeer', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeDataPartsFetchFromPeerMicroseconds': { + 'name': 'events.SharedMergeTreeDataPartsFetchFromPeerMicroseconds', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeDataPartsFetchFromS3': { + 'name': 'events.SharedMergeTreeDataPartsFetchFromS3', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeGetPartsBatchToLoadMicroseconds': { + 'name': 'events.SharedMergeTreeGetPartsBatchToLoadMicroseconds', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeHandleBlockingParts': { + 'name': 'events.SharedMergeTreeHandleBlockingParts', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeHandleBlockingPartsMicroseconds': { + 'name': 'events.SharedMergeTreeHandleBlockingPartsMicroseconds', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeHandleFetchPartsMicroseconds': { + 'name': 'events.SharedMergeTreeHandleFetchPartsMicroseconds', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeHandleOutdatedParts': { + 'name': 'events.SharedMergeTreeHandleOutdatedParts', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeHandleOutdatedPartsMicroseconds': { + 'name': 'events.SharedMergeTreeHandleOutdatedPartsMicroseconds', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeLoadChecksumAndIndexesMicroseconds': { + 'name': 'events.SharedMergeTreeLoadChecksumAndIndexesMicroseconds', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeMergeMutationAssignmentAttempt': { + 'name': 'events.SharedMergeTreeMergeMutationAssignmentAttempt', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeMergeMutationAssignmentFailedWithConflict': { + 'name': 'events.SharedMergeTreeMergeMutationAssignmentFailedWithConflict', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo': { + 'name': 'events.SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeMergeMutationAssignmentSuccessful': { + 'name': 'events.SharedMergeTreeMergeMutationAssignmentSuccessful', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeMergePartsMovedToCondemned': { + 'name': 'events.SharedMergeTreeMergePartsMovedToCondemned', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeMergePartsMovedToOudated': { + 'name': 'events.SharedMergeTreeMergePartsMovedToOudated', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeMergeSelectingTaskMicroseconds': { + 'name': 'events.SharedMergeTreeMergeSelectingTaskMicroseconds', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeMetadataCacheHintLoadedFromCache': { + 'name': 'events.SharedMergeTreeMetadataCacheHintLoadedFromCache', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeOptimizeAsync': { + 'name': 'events.SharedMergeTreeOptimizeAsync', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeOptimizeSync': { + 'name': 'events.SharedMergeTreeOptimizeSync', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeOutdatedPartsConfirmationInvocations': { + 'name': 'events.SharedMergeTreeOutdatedPartsConfirmationInvocations', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeOutdatedPartsConfirmationRequest': { + 'name': 'events.SharedMergeTreeOutdatedPartsConfirmationRequest', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeOutdatedPartsHTTPRequest': { + 'name': 'events.SharedMergeTreeOutdatedPartsHTTPRequest', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeOutdatedPartsHTTPResponse': { + 'name': 'events.SharedMergeTreeOutdatedPartsHTTPResponse', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeScheduleDataProcessingJob': { + 'name': 'events.SharedMergeTreeScheduleDataProcessingJob', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeScheduleDataProcessingJobMicroseconds': { + 'name': 'events.SharedMergeTreeScheduleDataProcessingJobMicroseconds', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeScheduleDataProcessingJobNothingToScheduled': { + 'name': 'events.SharedMergeTreeScheduleDataProcessingJobNothingToScheduled', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds': { + 'name': 'events.SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeVirtualPartsUpdateMicroseconds': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdateMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SharedMergeTreeVirtualPartsUpdates': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdates', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeVirtualPartsUpdatesByLeader': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdatesByLeader', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeVirtualPartsUpdatesFromPeer': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdatesFromPeer', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SharedMergeTreeVirtualPartsUpdatesFromZooKeeper': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeper', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection', + 'type': 'monotonic_gauge', + }, + 'SharedMergeTreeVirtualPartsUpdatesPeerNotFound': { + 'name': 'events.SharedMergeTreeVirtualPartsUpdatesPeerNotFound', + 'type': 'monotonic_gauge', + }, + 'SleepFunctionCalls': {'name': 'events.SleepFunctionCalls', 'type': 'monotonic_gauge'}, + 'SleepFunctionElapsedMicroseconds': { + 'name': 'events.SleepFunctionElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SleepFunctionMicroseconds': { + 'name': 'events.SleepFunctionMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SlowRead': {'name': 'events.SlowRead', 'type': 'monotonic_gauge'}, + 'SoftPageFaults': {'name': 'events.SoftPageFaults', 'type': 'monotonic_gauge'}, + 'StorageBufferErrorOnFlush': {'name': 'events.StorageBufferErrorOnFlush', 'type': 'monotonic_gauge'}, + 'StorageBufferFlush': {'name': 'events.StorageBufferFlush', 'type': 'monotonic_gauge'}, + 'StorageBufferLayerLockReadersWaitMilliseconds': { + 'name': 'events.StorageBufferLayerLockReadersWaitMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'StorageBufferLayerLockWritersWaitMilliseconds': { + 'name': 'events.StorageBufferLayerLockWritersWaitMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'StorageBufferPassedAllMinThresholds': { + 'name': 'events.StorageBufferPassedAllMinThresholds', + 'type': 'monotonic_gauge', + }, + 'StorageBufferPassedBytesFlushThreshold': { + 'name': 'events.StorageBufferPassedBytesFlushThreshold', + 'type': 'monotonic_gauge', + }, + 'StorageBufferPassedBytesMaxThreshold': { + 'name': 'events.StorageBufferPassedBytesMaxThreshold', + 'type': 'monotonic_gauge', + }, + 'StorageBufferPassedRowsFlushThreshold': { + 'name': 'events.StorageBufferPassedRowsFlushThreshold', + 'type': 'monotonic_gauge', + }, + 'StorageBufferPassedRowsMaxThreshold': { + 'name': 'events.StorageBufferPassedRowsMaxThreshold', + 'type': 'monotonic_gauge', + }, + 'StorageBufferPassedTimeFlushThreshold': { + 'name': 'events.StorageBufferPassedTimeFlushThreshold', + 'type': 'monotonic_gauge', + }, + 'StorageBufferPassedTimeMaxThreshold': { + 'name': 'events.StorageBufferPassedTimeMaxThreshold', + 'type': 'monotonic_gauge', + }, + 'StorageConnectionsCreated': {'name': 'events.StorageConnectionsCreated', 'type': 'monotonic_gauge'}, + 'StorageConnectionsElapsedMicroseconds': { + 'name': 'events.StorageConnectionsElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'StorageConnectionsErrors': {'name': 'events.StorageConnectionsErrors', 'type': 'monotonic_gauge'}, + 'StorageConnectionsExpired': {'name': 'events.StorageConnectionsExpired', 'type': 'monotonic_gauge'}, + 'StorageConnectionsPreserved': { + 'name': 'events.StorageConnectionsPreserved', + 'type': 'monotonic_gauge', + }, + 'StorageConnectionsReset': {'name': 'events.StorageConnectionsReset', 'type': 'monotonic_gauge'}, + 'StorageConnectionsReused': {'name': 'events.StorageConnectionsReused', 'type': 'monotonic_gauge'}, + 'SummingSortedMilliseconds': { + 'name': 'events.SummingSortedMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'SuspendSendingQueryToShard': {'name': 'events.SuspendSendingQueryToShard', 'type': 'monotonic_gauge'}, + 'SynchronousReadWaitMicroseconds': { + 'name': 'events.SynchronousReadWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SynchronousRemoteReadWaitMicroseconds': { + 'name': 'events.SynchronousRemoteReadWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'SystemLogErrorOnFlush': {'name': 'events.SystemLogErrorOnFlush', 'type': 'monotonic_gauge'}, + 'SystemTimeMicroseconds': { + 'name': 'events.SystemTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'TableFunctionExecute': {'name': 'events.TableFunctionExecute', 'type': 'monotonic_gauge'}, + 'ThreadPoolReaderPageCacheHit': { + 'name': 'events.ThreadPoolReaderPageCacheHit', + 'type': 'monotonic_gauge', + }, + 'ThreadPoolReaderPageCacheHitBytes': { + 'name': 'events.ThreadPoolReaderPageCacheHitBytes', + 'type': 'monotonic_gauge', + }, + 'ThreadPoolReaderPageCacheHitElapsedMicroseconds': { + 'name': 'events.ThreadPoolReaderPageCacheHitElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ThreadPoolReaderPageCacheMiss': { + 'name': 'events.ThreadPoolReaderPageCacheMiss', + 'type': 'monotonic_gauge', + }, + 'ThreadPoolReaderPageCacheMissBytes': { + 'name': 'events.ThreadPoolReaderPageCacheMissBytes', + 'type': 'monotonic_gauge', + }, + 'ThreadPoolReaderPageCacheMissElapsedMicroseconds': { + 'name': 'events.ThreadPoolReaderPageCacheMissElapsedMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ThreadpoolReaderPrepareMicroseconds': { + 'name': 'events.ThreadpoolReaderPrepareMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ThreadpoolReaderReadBytes': {'name': 'events.ThreadpoolReaderReadBytes', 'type': 'monotonic_gauge'}, + 'ThreadpoolReaderSubmit': {'name': 'events.ThreadpoolReaderSubmit', 'type': 'monotonic_gauge'}, + 'ThreadpoolReaderSubmitLookupInCacheMicroseconds': { + 'name': 'events.ThreadpoolReaderSubmitLookupInCacheMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ThreadpoolReaderSubmitReadSynchronously': { + 'name': 'events.ThreadpoolReaderSubmitReadSynchronously', + 'type': 'monotonic_gauge', + }, + 'ThreadpoolReaderSubmitReadSynchronouslyBytes': { + 'name': 'events.ThreadpoolReaderSubmitReadSynchronouslyBytes', + 'type': 'monotonic_gauge', + }, + 'ThreadpoolReaderSubmitReadSynchronouslyMicroseconds': { + 'name': 'events.ThreadpoolReaderSubmitReadSynchronouslyMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ThreadpoolReaderTaskMicroseconds': { + 'name': 'events.ThreadpoolReaderTaskMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ThrottlerSleepMicroseconds': { + 'name': 'events.ThrottlerSleepMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'TinyS3Clients': {'name': 'events.TinyS3Clients', 'type': 'monotonic_gauge'}, + 'USearchAddComputedDistances': { + 'name': 'events.USearchAddComputedDistances', + 'type': 'monotonic_gauge', + }, + 'USearchAddCount': {'name': 'events.USearchAddCount', 'type': 'monotonic_gauge'}, + 'USearchAddVisitedMembers': {'name': 'events.USearchAddVisitedMembers', 'type': 'monotonic_gauge'}, + 'USearchSearchComputedDistances': { + 'name': 'events.USearchSearchComputedDistances', + 'type': 'monotonic_gauge', + }, + 'USearchSearchCount': {'name': 'events.USearchSearchCount', 'type': 'monotonic_gauge'}, + 'USearchSearchVisitedMembers': { + 'name': 'events.USearchSearchVisitedMembers', + 'type': 'monotonic_gauge', + }, + 'UncompressedCacheHits': {'name': 'events.UncompressedCacheHits', 'type': 'monotonic_gauge'}, + 'UncompressedCacheMisses': {'name': 'events.UncompressedCacheMisses', 'type': 'monotonic_gauge'}, + 'UncompressedCacheWeightLost': { + 'name': 'events.UncompressedCacheWeightLost', + 'type': 'monotonic_gauge', + }, + 'UserTimeMicroseconds': { + 'name': 'events.UserTimeMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'VectorSimilarityIndexCacheHits': { + 'name': 'events.VectorSimilarityIndexCacheHits', + 'type': 'monotonic_gauge', + }, + 'VectorSimilarityIndexCacheMisses': { + 'name': 'events.VectorSimilarityIndexCacheMisses', + 'type': 'monotonic_gauge', + }, + 'VectorSimilarityIndexCacheWeightLost': { + 'name': 'events.VectorSimilarityIndexCacheWeightLost', + 'type': 'monotonic_gauge', + }, + 'VersionedCollapsingSortedMilliseconds': { + 'name': 'events.VersionedCollapsingSortedMilliseconds', + 'type': 'temporal_percent', + 'scale': 'millisecond', + }, + 'WaitMarksLoadMicroseconds': { + 'name': 'events.WaitMarksLoadMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'WaitPrefetchTaskMicroseconds': { + 'name': 'events.WaitPrefetchTaskMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'WriteBufferFromFileDescriptorWrite': { + 'name': 'events.WriteBufferFromFileDescriptorWrite', + 'type': 'monotonic_gauge', + }, + 'WriteBufferFromFileDescriptorWriteBytes': { + 'name': 'events.WriteBufferFromFileDescriptorWriteBytes', + 'type': 'monotonic_gauge', + }, + 'WriteBufferFromFileDescriptorWriteFailed': { + 'name': 'events.WriteBufferFromFileDescriptorWriteFailed', + 'type': 'monotonic_gauge', + }, + 'WriteBufferFromHTTPBytes': {'name': 'events.WriteBufferFromHTTPBytes', 'type': 'monotonic_gauge'}, + 'WriteBufferFromHTTPRequestsSent': { + 'name': 'events.WriteBufferFromHTTPRequestsSent', + 'type': 'monotonic_gauge', + }, + 'WriteBufferFromS3Bytes': {'name': 'events.WriteBufferFromS3Bytes', 'type': 'monotonic_gauge'}, + 'WriteBufferFromS3Microseconds': { + 'name': 'events.WriteBufferFromS3Microseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'WriteBufferFromS3RequestsErrors': { + 'name': 'events.WriteBufferFromS3RequestsErrors', + 'type': 'monotonic_gauge', + }, + 'WriteBufferFromS3WaitInflightLimitMicroseconds': { + 'name': 'events.WriteBufferFromS3WaitInflightLimitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ZooKeeperBytesReceived': {'name': 'events.ZooKeeperBytesReceived', 'type': 'monotonic_gauge'}, + 'ZooKeeperBytesSent': {'name': 'events.ZooKeeperBytesSent', 'type': 'monotonic_gauge'}, + 'ZooKeeperCheck': {'name': 'events.ZooKeeperCheck', 'type': 'monotonic_gauge'}, + 'ZooKeeperClose': {'name': 'events.ZooKeeperClose', 'type': 'monotonic_gauge'}, + 'ZooKeeperCreate': {'name': 'events.ZooKeeperCreate', 'type': 'monotonic_gauge'}, + 'ZooKeeperExists': {'name': 'events.ZooKeeperExists', 'type': 'monotonic_gauge'}, + 'ZooKeeperGet': {'name': 'events.ZooKeeperGet', 'type': 'monotonic_gauge'}, + 'ZooKeeperGetACL': {'name': 'events.ZooKeeperGetACL', 'type': 'monotonic_gauge'}, + 'ZooKeeperHardwareExceptions': { + 'name': 'events.ZooKeeperHardwareExceptions', + 'type': 'monotonic_gauge', + }, + 'ZooKeeperInit': {'name': 'events.ZooKeeperInit', 'type': 'monotonic_gauge'}, + 'ZooKeeperList': {'name': 'events.ZooKeeperList', 'type': 'monotonic_gauge'}, + 'ZooKeeperMulti': {'name': 'events.ZooKeeperMulti', 'type': 'monotonic_gauge'}, + 'ZooKeeperMultiRead': {'name': 'events.ZooKeeperMultiRead', 'type': 'monotonic_gauge'}, + 'ZooKeeperMultiWrite': {'name': 'events.ZooKeeperMultiWrite', 'type': 'monotonic_gauge'}, + 'ZooKeeperOtherExceptions': {'name': 'events.ZooKeeperOtherExceptions', 'type': 'monotonic_gauge'}, + 'ZooKeeperReconfig': {'name': 'events.ZooKeeperReconfig', 'type': 'monotonic_gauge'}, + 'ZooKeeperRemove': {'name': 'events.ZooKeeperRemove', 'type': 'monotonic_gauge'}, + 'ZooKeeperSet': {'name': 'events.ZooKeeperSet', 'type': 'monotonic_gauge'}, + 'ZooKeeperSync': {'name': 'events.ZooKeeperSync', 'type': 'monotonic_gauge'}, + 'ZooKeeperTransactions': {'name': 'events.ZooKeeperTransactions', 'type': 'monotonic_gauge'}, + 'ZooKeeperUserExceptions': {'name': 'events.ZooKeeperUserExceptions', 'type': 'monotonic_gauge'}, + 'ZooKeeperWaitMicroseconds': { + 'name': 'events.ZooKeeperWaitMicroseconds', + 'type': 'temporal_percent', + 'scale': 'microsecond', + }, + 'ZooKeeperWatchResponse': {'name': 'events.ZooKeeperWatchResponse', 'type': 'monotonic_gauge'}, + }, + }, + ], +} diff --git a/clickhouse/datadog_checks/clickhouse/advanced_queries/system_metrics.py b/clickhouse/datadog_checks/clickhouse/advanced_queries/system_metrics.py new file mode 100644 index 0000000000000..e729780bcd24e --- /dev/null +++ b/clickhouse/datadog_checks/clickhouse/advanced_queries/system_metrics.py @@ -0,0 +1,780 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +# This file is autogenerated. +# To change this file you should edit scripts/templates/system_metrics.tpl and then run the following command: +# hatch run metrics:generate + +# https://clickhouse.com/docs/operations/system-tables/metrics +SystemMetrics = { + 'name': 'system_metrics', + 'query': 'SELECT value, metric FROM system.metrics', + 'columns': [ + {'name': 'metric_value', 'type': 'source'}, + { + 'name': 'metric_name', + 'type': 'match', + 'source': 'metric_value', + 'items': { + 'ActiveTimersInQueryProfiler': {'name': 'metrics.ActiveTimersInQueryProfiler', 'type': 'gauge'}, + 'AddressesActive': {'name': 'metrics.AddressesActive', 'type': 'gauge'}, + 'AddressesBanned': {'name': 'metrics.AddressesBanned', 'type': 'gauge'}, + 'AggregatorThreads': {'name': 'metrics.AggregatorThreads', 'type': 'gauge'}, + 'AggregatorThreadsActive': {'name': 'metrics.AggregatorThreadsActive', 'type': 'gauge'}, + 'AggregatorThreadsScheduled': {'name': 'metrics.AggregatorThreadsScheduled', 'type': 'gauge'}, + 'AsyncInsertCacheSize': {'name': 'metrics.AsyncInsertCacheSize', 'type': 'gauge'}, + 'AsynchronousInsertQueueBytes': {'name': 'metrics.AsynchronousInsertQueueBytes', 'type': 'gauge'}, + 'AsynchronousInsertQueueSize': {'name': 'metrics.AsynchronousInsertQueueSize', 'type': 'gauge'}, + 'AsynchronousInsertThreads': {'name': 'metrics.AsynchronousInsertThreads', 'type': 'gauge'}, + 'AsynchronousInsertThreadsActive': {'name': 'metrics.AsynchronousInsertThreadsActive', 'type': 'gauge'}, + 'AsynchronousInsertThreadsScheduled': { + 'name': 'metrics.AsynchronousInsertThreadsScheduled', + 'type': 'gauge', + }, + 'AsynchronousReadWait': {'name': 'metrics.AsynchronousReadWait', 'type': 'gauge'}, + 'AttachedDatabase': {'name': 'metrics.AttachedDatabase', 'type': 'gauge'}, + 'AttachedDictionary': {'name': 'metrics.AttachedDictionary', 'type': 'gauge'}, + 'AttachedReplicatedTable': {'name': 'metrics.AttachedReplicatedTable', 'type': 'gauge'}, + 'AttachedTable': {'name': 'metrics.AttachedTable', 'type': 'gauge'}, + 'AttachedView': {'name': 'metrics.AttachedView', 'type': 'gauge'}, + 'AvroSchemaCacheBytes': {'name': 'metrics.AvroSchemaCacheBytes', 'type': 'gauge'}, + 'AvroSchemaCacheCells': {'name': 'metrics.AvroSchemaCacheCells', 'type': 'gauge'}, + 'AvroSchemaRegistryCacheBytes': {'name': 'metrics.AvroSchemaRegistryCacheBytes', 'type': 'gauge'}, + 'AvroSchemaRegistryCacheCells': {'name': 'metrics.AvroSchemaRegistryCacheCells', 'type': 'gauge'}, + 'AzureRequests': {'name': 'metrics.AzureRequests', 'type': 'gauge'}, + 'BackgroundBufferFlushSchedulePoolSize': { + 'name': 'metrics.BackgroundBufferFlushSchedulePoolSize', + 'type': 'gauge', + }, + 'BackgroundBufferFlushSchedulePoolTask': { + 'name': 'metrics.BackgroundBufferFlushSchedulePoolTask', + 'type': 'gauge', + }, + 'BackgroundCommonPoolSize': {'name': 'metrics.BackgroundCommonPoolSize', 'type': 'gauge'}, + 'BackgroundCommonPoolTask': {'name': 'metrics.BackgroundCommonPoolTask', 'type': 'gauge'}, + 'BackgroundDistributedSchedulePoolSize': { + 'name': 'metrics.BackgroundDistributedSchedulePoolSize', + 'type': 'gauge', + }, + 'BackgroundDistributedSchedulePoolTask': { + 'name': 'metrics.BackgroundDistributedSchedulePoolTask', + 'type': 'gauge', + }, + 'BackgroundFetchesPoolSize': {'name': 'metrics.BackgroundFetchesPoolSize', 'type': 'gauge'}, + 'BackgroundFetchesPoolTask': {'name': 'metrics.BackgroundFetchesPoolTask', 'type': 'gauge'}, + 'BackgroundMergesAndMutationsPoolSize': { + 'name': 'metrics.BackgroundMergesAndMutationsPoolSize', + 'type': 'gauge', + }, + 'BackgroundMergesAndMutationsPoolTask': { + 'name': 'metrics.BackgroundMergesAndMutationsPoolTask', + 'type': 'gauge', + }, + 'BackgroundMessageBrokerSchedulePoolSize': { + 'name': 'metrics.BackgroundMessageBrokerSchedulePoolSize', + 'type': 'gauge', + }, + 'BackgroundMessageBrokerSchedulePoolTask': { + 'name': 'metrics.BackgroundMessageBrokerSchedulePoolTask', + 'type': 'gauge', + }, + 'BackgroundMovePoolSize': {'name': 'metrics.BackgroundMovePoolSize', 'type': 'gauge'}, + 'BackgroundMovePoolTask': {'name': 'metrics.BackgroundMovePoolTask', 'type': 'gauge'}, + 'BackgroundSchedulePoolSize': {'name': 'metrics.BackgroundSchedulePoolSize', 'type': 'gauge'}, + 'BackgroundSchedulePoolTask': {'name': 'metrics.BackgroundSchedulePoolTask', 'type': 'gauge'}, + 'BackupsIOThreads': {'name': 'metrics.BackupsIOThreads', 'type': 'gauge'}, + 'BackupsIOThreadsActive': {'name': 'metrics.BackupsIOThreadsActive', 'type': 'gauge'}, + 'BackupsIOThreadsScheduled': {'name': 'metrics.BackupsIOThreadsScheduled', 'type': 'gauge'}, + 'BackupsThreads': {'name': 'metrics.BackupsThreads', 'type': 'gauge'}, + 'BackupsThreadsActive': {'name': 'metrics.BackupsThreadsActive', 'type': 'gauge'}, + 'BackupsThreadsScheduled': {'name': 'metrics.BackupsThreadsScheduled', 'type': 'gauge'}, + 'BrokenDisks': {'name': 'metrics.BrokenDisks', 'type': 'gauge'}, + 'BrokenDistributedBytesToInsert': {'name': 'metrics.BrokenDistributedBytesToInsert', 'type': 'gauge'}, + 'BrokenDistributedFilesToInsert': {'name': 'metrics.BrokenDistributedFilesToInsert', 'type': 'gauge'}, + 'BuildVectorSimilarityIndexThreads': { + 'name': 'metrics.BuildVectorSimilarityIndexThreads', + 'type': 'gauge', + }, + 'BuildVectorSimilarityIndexThreadsActive': { + 'name': 'metrics.BuildVectorSimilarityIndexThreadsActive', + 'type': 'gauge', + }, + 'BuildVectorSimilarityIndexThreadsScheduled': { + 'name': 'metrics.BuildVectorSimilarityIndexThreadsScheduled', + 'type': 'gauge', + }, + 'CacheDetachedFileSegments': {'name': 'metrics.CacheDetachedFileSegments', 'type': 'gauge'}, + 'CacheDictionaryThreads': {'name': 'metrics.CacheDictionaryThreads', 'type': 'gauge'}, + 'CacheDictionaryThreadsActive': {'name': 'metrics.CacheDictionaryThreadsActive', 'type': 'gauge'}, + 'CacheDictionaryThreadsScheduled': {'name': 'metrics.CacheDictionaryThreadsScheduled', 'type': 'gauge'}, + 'CacheDictionaryUpdateQueueBatches': { + 'name': 'metrics.CacheDictionaryUpdateQueueBatches', + 'type': 'gauge', + }, + 'CacheDictionaryUpdateQueueKeys': {'name': 'metrics.CacheDictionaryUpdateQueueKeys', 'type': 'gauge'}, + 'CacheFileSegments': {'name': 'metrics.CacheFileSegments', 'type': 'gauge'}, + 'CacheWarmerBytesInProgress': {'name': 'metrics.CacheWarmerBytesInProgress', 'type': 'gauge'}, + 'CompiledExpressionCacheBytes': {'name': 'metrics.CompiledExpressionCacheBytes', 'type': 'gauge'}, + 'CompiledExpressionCacheCount': {'name': 'metrics.CompiledExpressionCacheCount', 'type': 'gauge'}, + 'Compressing': {'name': 'metrics.Compressing', 'type': 'gauge'}, + 'CompressionThread': {'name': 'metrics.CompressionThread', 'type': 'gauge'}, + 'CompressionThreadActive': {'name': 'metrics.CompressionThreadActive', 'type': 'gauge'}, + 'CompressionThreadScheduled': {'name': 'metrics.CompressionThreadScheduled', 'type': 'gauge'}, + 'ConcurrencyControlAcquired': {'name': 'metrics.ConcurrencyControlAcquired', 'type': 'gauge'}, + 'ConcurrencyControlAcquiredNonCompeting': { + 'name': 'metrics.ConcurrencyControlAcquiredNonCompeting', + 'type': 'gauge', + }, + 'ConcurrencyControlPreempted': {'name': 'metrics.ConcurrencyControlPreempted', 'type': 'gauge'}, + 'ConcurrencyControlScheduled': {'name': 'metrics.ConcurrencyControlScheduled', 'type': 'gauge'}, + 'ConcurrencyControlSoftLimit': {'name': 'metrics.ConcurrencyControlSoftLimit', 'type': 'gauge'}, + 'ConcurrentHashJoinPoolThreads': {'name': 'metrics.ConcurrentHashJoinPoolThreads', 'type': 'gauge'}, + 'ConcurrentHashJoinPoolThreadsActive': { + 'name': 'metrics.ConcurrentHashJoinPoolThreadsActive', + 'type': 'gauge', + }, + 'ConcurrentHashJoinPoolThreadsScheduled': { + 'name': 'metrics.ConcurrentHashJoinPoolThreadsScheduled', + 'type': 'gauge', + }, + 'ConcurrentQueryAcquired': {'name': 'metrics.ConcurrentQueryAcquired', 'type': 'gauge'}, + 'ConcurrentQueryScheduled': {'name': 'metrics.ConcurrentQueryScheduled', 'type': 'gauge'}, + 'ContextLockWait': {'name': 'metrics.ContextLockWait', 'type': 'gauge'}, + 'CoordinatedMergesCoordinatorAssignedMerges': { + 'name': 'metrics.CoordinatedMergesCoordinatorAssignedMerges', + 'type': 'gauge', + }, + 'CoordinatedMergesCoordinatorRunningMerges': { + 'name': 'metrics.CoordinatedMergesCoordinatorRunningMerges', + 'type': 'gauge', + }, + 'CoordinatedMergesWorkerAssignedMerges': { + 'name': 'metrics.CoordinatedMergesWorkerAssignedMerges', + 'type': 'gauge', + }, + 'CreatedTimersInQueryProfiler': {'name': 'metrics.CreatedTimersInQueryProfiler', 'type': 'gauge'}, + 'DDLWorkerThreads': {'name': 'metrics.DDLWorkerThreads', 'type': 'gauge'}, + 'DDLWorkerThreadsActive': {'name': 'metrics.DDLWorkerThreadsActive', 'type': 'gauge'}, + 'DDLWorkerThreadsScheduled': {'name': 'metrics.DDLWorkerThreadsScheduled', 'type': 'gauge'}, + 'DNSAddressesCacheBytes': {'name': 'metrics.DNSAddressesCacheBytes', 'type': 'gauge'}, + 'DNSAddressesCacheSize': {'name': 'metrics.DNSAddressesCacheSize', 'type': 'gauge'}, + 'DNSHostsCacheBytes': {'name': 'metrics.DNSHostsCacheBytes', 'type': 'gauge'}, + 'DNSHostsCacheSize': {'name': 'metrics.DNSHostsCacheSize', 'type': 'gauge'}, + 'DWARFReaderThreads': {'name': 'metrics.DWARFReaderThreads', 'type': 'gauge'}, + 'DWARFReaderThreadsActive': {'name': 'metrics.DWARFReaderThreadsActive', 'type': 'gauge'}, + 'DWARFReaderThreadsScheduled': {'name': 'metrics.DWARFReaderThreadsScheduled', 'type': 'gauge'}, + 'DatabaseBackupThreads': {'name': 'metrics.DatabaseBackupThreads', 'type': 'gauge'}, + 'DatabaseBackupThreadsActive': {'name': 'metrics.DatabaseBackupThreadsActive', 'type': 'gauge'}, + 'DatabaseBackupThreadsScheduled': {'name': 'metrics.DatabaseBackupThreadsScheduled', 'type': 'gauge'}, + 'DatabaseCatalogThreads': {'name': 'metrics.DatabaseCatalogThreads', 'type': 'gauge'}, + 'DatabaseCatalogThreadsActive': {'name': 'metrics.DatabaseCatalogThreadsActive', 'type': 'gauge'}, + 'DatabaseCatalogThreadsScheduled': {'name': 'metrics.DatabaseCatalogThreadsScheduled', 'type': 'gauge'}, + 'DatabaseOnDiskThreads': {'name': 'metrics.DatabaseOnDiskThreads', 'type': 'gauge'}, + 'DatabaseOnDiskThreadsActive': {'name': 'metrics.DatabaseOnDiskThreadsActive', 'type': 'gauge'}, + 'DatabaseOnDiskThreadsScheduled': {'name': 'metrics.DatabaseOnDiskThreadsScheduled', 'type': 'gauge'}, + 'DatabaseReplicatedCreateTablesThreads': { + 'name': 'metrics.DatabaseReplicatedCreateTablesThreads', + 'type': 'gauge', + }, + 'DatabaseReplicatedCreateTablesThreadsActive': { + 'name': 'metrics.DatabaseReplicatedCreateTablesThreadsActive', + 'type': 'gauge', + }, + 'DatabaseReplicatedCreateTablesThreadsScheduled': { + 'name': 'metrics.DatabaseReplicatedCreateTablesThreadsScheduled', + 'type': 'gauge', + }, + 'Decompressing': {'name': 'metrics.Decompressing', 'type': 'gauge'}, + 'DelayedInserts': {'name': 'metrics.DelayedInserts', 'type': 'gauge'}, + 'DestroyAggregatesThreads': {'name': 'metrics.DestroyAggregatesThreads', 'type': 'gauge'}, + 'DestroyAggregatesThreadsActive': {'name': 'metrics.DestroyAggregatesThreadsActive', 'type': 'gauge'}, + 'DestroyAggregatesThreadsScheduled': { + 'name': 'metrics.DestroyAggregatesThreadsScheduled', + 'type': 'gauge', + }, + 'DictCacheRequests': {'name': 'metrics.DictCacheRequests', 'type': 'gauge'}, + 'DiskConnectionsStored': {'name': 'metrics.DiskConnectionsStored', 'type': 'gauge'}, + 'DiskConnectionsTotal': {'name': 'metrics.DiskConnectionsTotal', 'type': 'gauge'}, + 'DiskObjectStorageAsyncThreads': {'name': 'metrics.DiskObjectStorageAsyncThreads', 'type': 'gauge'}, + 'DiskObjectStorageAsyncThreadsActive': { + 'name': 'metrics.DiskObjectStorageAsyncThreadsActive', + 'type': 'gauge', + }, + 'DiskPlainRewritableAzureDirectoryMapSize': { + 'name': 'metrics.DiskPlainRewritableAzureDirectoryMapSize', + 'type': 'gauge', + }, + 'DiskPlainRewritableAzureFileCount': { + 'name': 'metrics.DiskPlainRewritableAzureFileCount', + 'type': 'gauge', + }, + 'DiskPlainRewritableAzureUniqueFileNamesCount': { + 'name': 'metrics.DiskPlainRewritableAzureUniqueFileNamesCount', + 'type': 'gauge', + }, + 'DiskPlainRewritableLocalDirectoryMapSize': { + 'name': 'metrics.DiskPlainRewritableLocalDirectoryMapSize', + 'type': 'gauge', + }, + 'DiskPlainRewritableLocalFileCount': { + 'name': 'metrics.DiskPlainRewritableLocalFileCount', + 'type': 'gauge', + }, + 'DiskPlainRewritableLocalUniqueFileNamesCount': { + 'name': 'metrics.DiskPlainRewritableLocalUniqueFileNamesCount', + 'type': 'gauge', + }, + 'DiskPlainRewritableS3DirectoryMapSize': { + 'name': 'metrics.DiskPlainRewritableS3DirectoryMapSize', + 'type': 'gauge', + }, + 'DiskPlainRewritableS3FileCount': {'name': 'metrics.DiskPlainRewritableS3FileCount', 'type': 'gauge'}, + 'DiskPlainRewritableS3UniqueFileNamesCount': { + 'name': 'metrics.DiskPlainRewritableS3UniqueFileNamesCount', + 'type': 'gauge', + }, + 'DiskS3NoSuchKeyErrors': {'name': 'metrics.DiskS3NoSuchKeyErrors', 'type': 'gauge'}, + 'DiskSpaceReservedForMerge': {'name': 'metrics.DiskSpaceReservedForMerge', 'type': 'gauge'}, + 'DistrCacheAllocatedConnections': {'name': 'metrics.DistrCacheAllocatedConnections', 'type': 'gauge'}, + 'DistrCacheBorrowedConnections': {'name': 'metrics.DistrCacheBorrowedConnections', 'type': 'gauge'}, + 'DistrCacheOpenedConnections': {'name': 'metrics.DistrCacheOpenedConnections', 'type': 'gauge'}, + 'DistrCacheReadRequests': {'name': 'metrics.DistrCacheReadRequests', 'type': 'gauge'}, + 'DistrCacheRegisteredServers': {'name': 'metrics.DistrCacheRegisteredServers', 'type': 'gauge'}, + 'DistrCacheRegisteredServersCurrentAZ': { + 'name': 'metrics.DistrCacheRegisteredServersCurrentAZ', + 'type': 'gauge', + }, + 'DistrCacheServerConnections': {'name': 'metrics.DistrCacheServerConnections', 'type': 'gauge'}, + 'DistrCacheServerRegistryConnections': { + 'name': 'metrics.DistrCacheServerRegistryConnections', + 'type': 'gauge', + }, + 'DistrCacheServerS3CachedClients': {'name': 'metrics.DistrCacheServerS3CachedClients', 'type': 'gauge'}, + 'DistrCacheUsedConnections': {'name': 'metrics.DistrCacheUsedConnections', 'type': 'gauge'}, + 'DistrCacheWriteRequests': {'name': 'metrics.DistrCacheWriteRequests', 'type': 'gauge'}, + 'DistributedBytesToInsert': {'name': 'metrics.DistributedBytesToInsert', 'type': 'gauge'}, + 'DistributedFilesToInsert': {'name': 'metrics.DistributedFilesToInsert', 'type': 'gauge'}, + 'DistributedInsertThreads': {'name': 'metrics.DistributedInsertThreads', 'type': 'gauge'}, + 'DistributedInsertThreadsActive': {'name': 'metrics.DistributedInsertThreadsActive', 'type': 'gauge'}, + 'DistributedInsertThreadsScheduled': { + 'name': 'metrics.DistributedInsertThreadsScheduled', + 'type': 'gauge', + }, + 'DistributedSend': {'name': 'metrics.DistributedSend', 'type': 'gauge'}, + 'DropDistributedCacheThreads': {'name': 'metrics.DropDistributedCacheThreads', 'type': 'gauge'}, + 'DropDistributedCacheThreadsActive': { + 'name': 'metrics.DropDistributedCacheThreadsActive', + 'type': 'gauge', + }, + 'DropDistributedCacheThreadsScheduled': { + 'name': 'metrics.DropDistributedCacheThreadsScheduled', + 'type': 'gauge', + }, + 'EphemeralNode': {'name': 'metrics.EphemeralNode', 'type': 'gauge'}, + 'FilesystemCacheDelayedCleanupElements': { + 'name': 'metrics.FilesystemCacheDelayedCleanupElements', + 'type': 'gauge', + }, + 'FilesystemCacheDownloadQueueElements': { + 'name': 'metrics.FilesystemCacheDownloadQueueElements', + 'type': 'gauge', + }, + 'FilesystemCacheElements': {'name': 'metrics.FilesystemCacheElements', 'type': 'gauge'}, + 'FilesystemCacheHoldFileSegments': {'name': 'metrics.FilesystemCacheHoldFileSegments', 'type': 'gauge'}, + 'FilesystemCacheKeys': {'name': 'metrics.FilesystemCacheKeys', 'type': 'gauge'}, + 'FilesystemCacheReadBuffers': {'name': 'metrics.FilesystemCacheReadBuffers', 'type': 'gauge'}, + 'FilesystemCacheReserveThreads': {'name': 'metrics.FilesystemCacheReserveThreads', 'type': 'gauge'}, + 'FilesystemCacheSize': {'name': 'metrics.FilesystemCacheSize', 'type': 'gauge'}, + 'FilesystemCacheSizeLimit': {'name': 'metrics.FilesystemCacheSizeLimit', 'type': 'gauge'}, + 'FilteringMarksWithPrimaryKey': {'name': 'metrics.FilteringMarksWithPrimaryKey', 'type': 'gauge'}, + 'FilteringMarksWithSecondaryKeys': {'name': 'metrics.FilteringMarksWithSecondaryKeys', 'type': 'gauge'}, + 'FormatParsingThreads': {'name': 'metrics.FormatParsingThreads', 'type': 'gauge'}, + 'FormatParsingThreadsActive': {'name': 'metrics.FormatParsingThreadsActive', 'type': 'gauge'}, + 'FormatParsingThreadsScheduled': {'name': 'metrics.FormatParsingThreadsScheduled', 'type': 'gauge'}, + 'GlobalThread': {'name': 'metrics.GlobalThread', 'type': 'gauge'}, + 'GlobalThreadActive': {'name': 'metrics.GlobalThreadActive', 'type': 'gauge'}, + 'GlobalThreadScheduled': {'name': 'metrics.GlobalThreadScheduled', 'type': 'gauge'}, + 'HTTPConnection': {'name': 'metrics.HTTPConnection', 'type': 'gauge'}, + 'HTTPConnectionsStored': {'name': 'metrics.HTTPConnectionsStored', 'type': 'gauge'}, + 'HTTPConnectionsTotal': {'name': 'metrics.HTTPConnectionsTotal', 'type': 'gauge'}, + 'HashedDictionaryThreads': {'name': 'metrics.HashedDictionaryThreads', 'type': 'gauge'}, + 'HashedDictionaryThreadsActive': {'name': 'metrics.HashedDictionaryThreadsActive', 'type': 'gauge'}, + 'HashedDictionaryThreadsScheduled': { + 'name': 'metrics.HashedDictionaryThreadsScheduled', + 'type': 'gauge', + }, + 'HiveFilesCacheBytes': {'name': 'metrics.HiveFilesCacheBytes', 'type': 'gauge'}, + 'HiveFilesCacheFiles': {'name': 'metrics.HiveFilesCacheFiles', 'type': 'gauge'}, + 'HiveMetadataFilesCacheBytes': {'name': 'metrics.HiveMetadataFilesCacheBytes', 'type': 'gauge'}, + 'HiveMetadataFilesCacheFiles': {'name': 'metrics.HiveMetadataFilesCacheFiles', 'type': 'gauge'}, + 'IDiskCopierThreads': {'name': 'metrics.IDiskCopierThreads', 'type': 'gauge'}, + 'IDiskCopierThreadsActive': {'name': 'metrics.IDiskCopierThreadsActive', 'type': 'gauge'}, + 'IDiskCopierThreadsScheduled': {'name': 'metrics.IDiskCopierThreadsScheduled', 'type': 'gauge'}, + 'IOPrefetchThreads': {'name': 'metrics.IOPrefetchThreads', 'type': 'gauge'}, + 'IOPrefetchThreadsActive': {'name': 'metrics.IOPrefetchThreadsActive', 'type': 'gauge'}, + 'IOPrefetchThreadsScheduled': {'name': 'metrics.IOPrefetchThreadsScheduled', 'type': 'gauge'}, + 'IOThreads': {'name': 'metrics.IOThreads', 'type': 'gauge'}, + 'IOThreadsActive': {'name': 'metrics.IOThreadsActive', 'type': 'gauge'}, + 'IOThreadsScheduled': {'name': 'metrics.IOThreadsScheduled', 'type': 'gauge'}, + 'IOUringInFlightEvents': {'name': 'metrics.IOUringInFlightEvents', 'type': 'gauge'}, + 'IOUringPendingEvents': {'name': 'metrics.IOUringPendingEvents', 'type': 'gauge'}, + 'IOWriterThreads': {'name': 'metrics.IOWriterThreads', 'type': 'gauge'}, + 'IOWriterThreadsActive': {'name': 'metrics.IOWriterThreadsActive', 'type': 'gauge'}, + 'IOWriterThreadsScheduled': {'name': 'metrics.IOWriterThreadsScheduled', 'type': 'gauge'}, + 'IcebergCatalogThreads': {'name': 'metrics.IcebergCatalogThreads', 'type': 'gauge'}, + 'IcebergCatalogThreadsActive': {'name': 'metrics.IcebergCatalogThreadsActive', 'type': 'gauge'}, + 'IcebergCatalogThreadsScheduled': {'name': 'metrics.IcebergCatalogThreadsScheduled', 'type': 'gauge'}, + 'IcebergMetadataFilesCacheBytes': {'name': 'metrics.IcebergMetadataFilesCacheBytes', 'type': 'gauge'}, + 'IcebergMetadataFilesCacheFiles': {'name': 'metrics.IcebergMetadataFilesCacheFiles', 'type': 'gauge'}, + 'IndexMarkCacheBytes': {'name': 'metrics.IndexMarkCacheBytes', 'type': 'gauge'}, + 'IndexMarkCacheFiles': {'name': 'metrics.IndexMarkCacheFiles', 'type': 'gauge'}, + 'IndexUncompressedCacheBytes': {'name': 'metrics.IndexUncompressedCacheBytes', 'type': 'gauge'}, + 'IndexUncompressedCacheCells': {'name': 'metrics.IndexUncompressedCacheCells', 'type': 'gauge'}, + 'InterserverConnection': {'name': 'metrics.InterserverConnection', 'type': 'gauge'}, + 'IsServerShuttingDown': {'name': 'metrics.IsServerShuttingDown', 'type': 'gauge'}, + 'KafkaAssignedPartitions': {'name': 'metrics.KafkaAssignedPartitions', 'type': 'gauge'}, + 'KafkaBackgroundReads': {'name': 'metrics.KafkaBackgroundReads', 'type': 'gauge'}, + 'KafkaConsumers': {'name': 'metrics.KafkaConsumers', 'type': 'gauge'}, + 'KafkaConsumersInUse': {'name': 'metrics.KafkaConsumersInUse', 'type': 'gauge'}, + 'KafkaConsumersWithAssignment': {'name': 'metrics.KafkaConsumersWithAssignment', 'type': 'gauge'}, + 'KafkaLibrdkafkaThreads': {'name': 'metrics.KafkaLibrdkafkaThreads', 'type': 'gauge'}, + 'KafkaProducers': {'name': 'metrics.KafkaProducers', 'type': 'gauge'}, + 'KafkaWrites': {'name': 'metrics.KafkaWrites', 'type': 'gauge'}, + 'KeeperAliveConnections': {'name': 'metrics.KeeperAliveConnections', 'type': 'gauge'}, + 'KeeperOutstandingRequests': {'name': 'metrics.KeeperOutstandingRequests', 'type': 'gauge'}, + 'LicenseRemainingSeconds': {'name': 'metrics.LicenseRemainingSeconds', 'type': 'gauge'}, + 'LocalThread': {'name': 'metrics.LocalThread', 'type': 'gauge'}, + 'LocalThreadActive': {'name': 'metrics.LocalThreadActive', 'type': 'gauge'}, + 'LocalThreadScheduled': {'name': 'metrics.LocalThreadScheduled', 'type': 'gauge'}, + 'MMapCacheCells': {'name': 'metrics.MMapCacheCells', 'type': 'gauge'}, + 'MMappedFileBytes': {'name': 'metrics.MMappedFileBytes', 'type': 'gauge'}, + 'MMappedFiles': {'name': 'metrics.MMappedFiles', 'type': 'gauge'}, + 'MarkCacheBytes': {'name': 'metrics.MarkCacheBytes', 'type': 'gauge'}, + 'MarkCacheFiles': {'name': 'metrics.MarkCacheFiles', 'type': 'gauge'}, + 'MarksLoaderThreads': {'name': 'metrics.MarksLoaderThreads', 'type': 'gauge'}, + 'MarksLoaderThreadsActive': {'name': 'metrics.MarksLoaderThreadsActive', 'type': 'gauge'}, + 'MarksLoaderThreadsScheduled': {'name': 'metrics.MarksLoaderThreadsScheduled', 'type': 'gauge'}, + 'MaxDDLEntryID': {'name': 'metrics.MaxDDLEntryID', 'type': 'gauge'}, + 'MaxPushedDDLEntryID': {'name': 'metrics.MaxPushedDDLEntryID', 'type': 'gauge'}, + 'MemoryTracking': {'name': 'metrics.MemoryTracking', 'type': 'gauge'}, + 'MemoryTrackingUncorrected': {'name': 'metrics.MemoryTrackingUncorrected', 'type': 'gauge'}, + 'Merge': {'name': 'metrics.Merge', 'type': 'gauge'}, + 'MergeJoinBlocksCacheBytes': {'name': 'metrics.MergeJoinBlocksCacheBytes', 'type': 'gauge'}, + 'MergeJoinBlocksCacheCount': {'name': 'metrics.MergeJoinBlocksCacheCount', 'type': 'gauge'}, + 'MergeParts': {'name': 'metrics.MergeParts', 'type': 'gauge'}, + 'MergeTreeAllRangesAnnouncementsSent': { + 'name': 'metrics.MergeTreeAllRangesAnnouncementsSent', + 'type': 'gauge', + }, + 'MergeTreeBackgroundExecutorThreads': { + 'name': 'metrics.MergeTreeBackgroundExecutorThreads', + 'type': 'gauge', + }, + 'MergeTreeBackgroundExecutorThreadsActive': { + 'name': 'metrics.MergeTreeBackgroundExecutorThreadsActive', + 'type': 'gauge', + }, + 'MergeTreeBackgroundExecutorThreadsScheduled': { + 'name': 'metrics.MergeTreeBackgroundExecutorThreadsScheduled', + 'type': 'gauge', + }, + 'MergeTreeDataSelectExecutorThreads': { + 'name': 'metrics.MergeTreeDataSelectExecutorThreads', + 'type': 'gauge', + }, + 'MergeTreeDataSelectExecutorThreadsActive': { + 'name': 'metrics.MergeTreeDataSelectExecutorThreadsActive', + 'type': 'gauge', + }, + 'MergeTreeDataSelectExecutorThreadsScheduled': { + 'name': 'metrics.MergeTreeDataSelectExecutorThreadsScheduled', + 'type': 'gauge', + }, + 'MergeTreeFetchPartitionThreads': {'name': 'metrics.MergeTreeFetchPartitionThreads', 'type': 'gauge'}, + 'MergeTreeFetchPartitionThreadsActive': { + 'name': 'metrics.MergeTreeFetchPartitionThreadsActive', + 'type': 'gauge', + }, + 'MergeTreeFetchPartitionThreadsScheduled': { + 'name': 'metrics.MergeTreeFetchPartitionThreadsScheduled', + 'type': 'gauge', + }, + 'MergeTreeOutdatedPartsLoaderThreads': { + 'name': 'metrics.MergeTreeOutdatedPartsLoaderThreads', + 'type': 'gauge', + }, + 'MergeTreeOutdatedPartsLoaderThreadsActive': { + 'name': 'metrics.MergeTreeOutdatedPartsLoaderThreadsActive', + 'type': 'gauge', + }, + 'MergeTreeOutdatedPartsLoaderThreadsScheduled': { + 'name': 'metrics.MergeTreeOutdatedPartsLoaderThreadsScheduled', + 'type': 'gauge', + }, + 'MergeTreePartsCleanerThreads': {'name': 'metrics.MergeTreePartsCleanerThreads', 'type': 'gauge'}, + 'MergeTreePartsCleanerThreadsActive': { + 'name': 'metrics.MergeTreePartsCleanerThreadsActive', + 'type': 'gauge', + }, + 'MergeTreePartsCleanerThreadsScheduled': { + 'name': 'metrics.MergeTreePartsCleanerThreadsScheduled', + 'type': 'gauge', + }, + 'MergeTreePartsLoaderThreads': {'name': 'metrics.MergeTreePartsLoaderThreads', 'type': 'gauge'}, + 'MergeTreePartsLoaderThreadsActive': { + 'name': 'metrics.MergeTreePartsLoaderThreadsActive', + 'type': 'gauge', + }, + 'MergeTreePartsLoaderThreadsScheduled': { + 'name': 'metrics.MergeTreePartsLoaderThreadsScheduled', + 'type': 'gauge', + }, + 'MergeTreeReadTaskRequestsSent': {'name': 'metrics.MergeTreeReadTaskRequestsSent', 'type': 'gauge'}, + 'MergeTreeSubcolumnsReaderThreads': { + 'name': 'metrics.MergeTreeSubcolumnsReaderThreads', + 'type': 'gauge', + }, + 'MergeTreeSubcolumnsReaderThreadsActive': { + 'name': 'metrics.MergeTreeSubcolumnsReaderThreadsActive', + 'type': 'gauge', + }, + 'MergeTreeSubcolumnsReaderThreadsScheduled': { + 'name': 'metrics.MergeTreeSubcolumnsReaderThreadsScheduled', + 'type': 'gauge', + }, + 'MergeTreeUnexpectedPartsLoaderThreads': { + 'name': 'metrics.MergeTreeUnexpectedPartsLoaderThreads', + 'type': 'gauge', + }, + 'MergeTreeUnexpectedPartsLoaderThreadsActive': { + 'name': 'metrics.MergeTreeUnexpectedPartsLoaderThreadsActive', + 'type': 'gauge', + }, + 'MergeTreeUnexpectedPartsLoaderThreadsScheduled': { + 'name': 'metrics.MergeTreeUnexpectedPartsLoaderThreadsScheduled', + 'type': 'gauge', + }, + 'MergesMutationsMemoryTracking': {'name': 'metrics.MergesMutationsMemoryTracking', 'type': 'gauge'}, + 'MetadataFromKeeperCacheObjects': {'name': 'metrics.MetadataFromKeeperCacheObjects', 'type': 'gauge'}, + 'Move': {'name': 'metrics.Move', 'type': 'gauge'}, + 'MySQLConnection': {'name': 'metrics.MySQLConnection', 'type': 'gauge'}, + 'NetworkReceive': {'name': 'metrics.NetworkReceive', 'type': 'gauge'}, + 'NetworkSend': {'name': 'metrics.NetworkSend', 'type': 'gauge'}, + 'ObjectStorageAzureThreads': {'name': 'metrics.ObjectStorageAzureThreads', 'type': 'gauge'}, + 'ObjectStorageAzureThreadsActive': {'name': 'metrics.ObjectStorageAzureThreadsActive', 'type': 'gauge'}, + 'ObjectStorageAzureThreadsScheduled': { + 'name': 'metrics.ObjectStorageAzureThreadsScheduled', + 'type': 'gauge', + }, + 'ObjectStorageQueueRegisteredServers': { + 'name': 'metrics.ObjectStorageQueueRegisteredServers', + 'type': 'gauge', + }, + 'ObjectStorageQueueShutdownThreads': { + 'name': 'metrics.ObjectStorageQueueShutdownThreads', + 'type': 'gauge', + }, + 'ObjectStorageQueueShutdownThreadsActive': { + 'name': 'metrics.ObjectStorageQueueShutdownThreadsActive', + 'type': 'gauge', + }, + 'ObjectStorageQueueShutdownThreadsScheduled': { + 'name': 'metrics.ObjectStorageQueueShutdownThreadsScheduled', + 'type': 'gauge', + }, + 'ObjectStorageS3Threads': {'name': 'metrics.ObjectStorageS3Threads', 'type': 'gauge'}, + 'ObjectStorageS3ThreadsActive': {'name': 'metrics.ObjectStorageS3ThreadsActive', 'type': 'gauge'}, + 'ObjectStorageS3ThreadsScheduled': {'name': 'metrics.ObjectStorageS3ThreadsScheduled', 'type': 'gauge'}, + 'OpenFileForRead': {'name': 'metrics.OpenFileForRead', 'type': 'gauge'}, + 'OpenFileForWrite': {'name': 'metrics.OpenFileForWrite', 'type': 'gauge'}, + 'OutdatedPartsLoadingThreads': {'name': 'metrics.OutdatedPartsLoadingThreads', 'type': 'gauge'}, + 'OutdatedPartsLoadingThreadsActive': { + 'name': 'metrics.OutdatedPartsLoadingThreadsActive', + 'type': 'gauge', + }, + 'OutdatedPartsLoadingThreadsScheduled': { + 'name': 'metrics.OutdatedPartsLoadingThreadsScheduled', + 'type': 'gauge', + }, + 'PageCacheBytes': {'name': 'metrics.PageCacheBytes', 'type': 'gauge'}, + 'PageCacheCells': {'name': 'metrics.PageCacheCells', 'type': 'gauge'}, + 'ParallelCompressedWriteBufferThreads': { + 'name': 'metrics.ParallelCompressedWriteBufferThreads', + 'type': 'gauge', + }, + 'ParallelCompressedWriteBufferWait': { + 'name': 'metrics.ParallelCompressedWriteBufferWait', + 'type': 'gauge', + }, + 'ParallelFormattingOutputFormatThreads': { + 'name': 'metrics.ParallelFormattingOutputFormatThreads', + 'type': 'gauge', + }, + 'ParallelFormattingOutputFormatThreadsActive': { + 'name': 'metrics.ParallelFormattingOutputFormatThreadsActive', + 'type': 'gauge', + }, + 'ParallelFormattingOutputFormatThreadsScheduled': { + 'name': 'metrics.ParallelFormattingOutputFormatThreadsScheduled', + 'type': 'gauge', + }, + 'ParallelParsingInputFormatThreads': { + 'name': 'metrics.ParallelParsingInputFormatThreads', + 'type': 'gauge', + }, + 'ParallelParsingInputFormatThreadsActive': { + 'name': 'metrics.ParallelParsingInputFormatThreadsActive', + 'type': 'gauge', + }, + 'ParallelParsingInputFormatThreadsScheduled': { + 'name': 'metrics.ParallelParsingInputFormatThreadsScheduled', + 'type': 'gauge', + }, + 'ParallelWithQueryActiveThreads': {'name': 'metrics.ParallelWithQueryActiveThreads', 'type': 'gauge'}, + 'ParallelWithQueryScheduledThreads': { + 'name': 'metrics.ParallelWithQueryScheduledThreads', + 'type': 'gauge', + }, + 'ParallelWithQueryThreads': {'name': 'metrics.ParallelWithQueryThreads', 'type': 'gauge'}, + 'ParquetDecoderIOThreads': {'name': 'metrics.ParquetDecoderIOThreads', 'type': 'gauge'}, + 'ParquetDecoderIOThreadsActive': {'name': 'metrics.ParquetDecoderIOThreadsActive', 'type': 'gauge'}, + 'ParquetDecoderIOThreadsScheduled': { + 'name': 'metrics.ParquetDecoderIOThreadsScheduled', + 'type': 'gauge', + }, + 'ParquetDecoderThreads': {'name': 'metrics.ParquetDecoderThreads', 'type': 'gauge'}, + 'ParquetDecoderThreadsActive': {'name': 'metrics.ParquetDecoderThreadsActive', 'type': 'gauge'}, + 'ParquetDecoderThreadsScheduled': {'name': 'metrics.ParquetDecoderThreadsScheduled', 'type': 'gauge'}, + 'ParquetEncoderThreads': {'name': 'metrics.ParquetEncoderThreads', 'type': 'gauge'}, + 'ParquetEncoderThreadsActive': {'name': 'metrics.ParquetEncoderThreadsActive', 'type': 'gauge'}, + 'ParquetEncoderThreadsScheduled': {'name': 'metrics.ParquetEncoderThreadsScheduled', 'type': 'gauge'}, + 'PartMutation': {'name': 'metrics.PartMutation', 'type': 'gauge'}, + 'PartsActive': {'name': 'metrics.PartsActive', 'type': 'gauge'}, + 'PartsCommitted': {'name': 'metrics.PartsCommitted', 'type': 'gauge'}, + 'PartsCompact': {'name': 'metrics.PartsCompact', 'type': 'gauge'}, + 'PartsDeleteOnDestroy': {'name': 'metrics.PartsDeleteOnDestroy', 'type': 'gauge'}, + 'PartsDeleting': {'name': 'metrics.PartsDeleting', 'type': 'gauge'}, + 'PartsOutdated': {'name': 'metrics.PartsOutdated', 'type': 'gauge'}, + 'PartsPreActive': {'name': 'metrics.PartsPreActive', 'type': 'gauge'}, + 'PartsPreCommitted': {'name': 'metrics.PartsPreCommitted', 'type': 'gauge'}, + 'PartsTemporary': {'name': 'metrics.PartsTemporary', 'type': 'gauge'}, + 'PartsWide': {'name': 'metrics.PartsWide', 'type': 'gauge'}, + 'PendingAsyncInsert': {'name': 'metrics.PendingAsyncInsert', 'type': 'gauge'}, + 'PolygonDictionaryThreads': {'name': 'metrics.PolygonDictionaryThreads', 'type': 'gauge'}, + 'PolygonDictionaryThreadsActive': {'name': 'metrics.PolygonDictionaryThreadsActive', 'type': 'gauge'}, + 'PolygonDictionaryThreadsScheduled': { + 'name': 'metrics.PolygonDictionaryThreadsScheduled', + 'type': 'gauge', + }, + 'PostgreSQLConnection': {'name': 'metrics.PostgreSQLConnection', 'type': 'gauge'}, + 'PrimaryIndexCacheBytes': {'name': 'metrics.PrimaryIndexCacheBytes', 'type': 'gauge'}, + 'PrimaryIndexCacheFiles': {'name': 'metrics.PrimaryIndexCacheFiles', 'type': 'gauge'}, + 'Query': {'name': 'metrics.Query', 'type': 'gauge'}, + 'QueryCacheBytes': {'name': 'metrics.QueryCacheBytes', 'type': 'gauge'}, + 'QueryCacheEntries': {'name': 'metrics.QueryCacheEntries', 'type': 'gauge'}, + 'QueryConditionCacheBytes': {'name': 'metrics.QueryConditionCacheBytes', 'type': 'gauge'}, + 'QueryConditionCacheEntries': {'name': 'metrics.QueryConditionCacheEntries', 'type': 'gauge'}, + 'QueryPipelineExecutorThreads': {'name': 'metrics.QueryPipelineExecutorThreads', 'type': 'gauge'}, + 'QueryPipelineExecutorThreadsActive': { + 'name': 'metrics.QueryPipelineExecutorThreadsActive', + 'type': 'gauge', + }, + 'QueryPipelineExecutorThreadsScheduled': { + 'name': 'metrics.QueryPipelineExecutorThreadsScheduled', + 'type': 'gauge', + }, + 'QueryPreempted': {'name': 'metrics.QueryPreempted', 'type': 'gauge'}, + 'QueryThread': {'name': 'metrics.QueryThread', 'type': 'gauge'}, + 'RWLockActiveReaders': {'name': 'metrics.RWLockActiveReaders', 'type': 'gauge'}, + 'RWLockActiveWriters': {'name': 'metrics.RWLockActiveWriters', 'type': 'gauge'}, + 'RWLockWaitingReaders': {'name': 'metrics.RWLockWaitingReaders', 'type': 'gauge'}, + 'RWLockWaitingWriters': {'name': 'metrics.RWLockWaitingWriters', 'type': 'gauge'}, + 'Read': {'name': 'metrics.Read', 'type': 'gauge'}, + 'ReadTaskRequestsSent': {'name': 'metrics.ReadTaskRequestsSent', 'type': 'gauge'}, + 'ReadonlyDisks': {'name': 'metrics.ReadonlyDisks', 'type': 'gauge'}, + 'ReadonlyReplica': {'name': 'metrics.ReadonlyReplica', 'type': 'gauge'}, + 'RefreshableViews': {'name': 'metrics.RefreshableViews', 'type': 'gauge'}, + 'RefreshingViews': {'name': 'metrics.RefreshingViews', 'type': 'gauge'}, + 'RemoteRead': {'name': 'metrics.RemoteRead', 'type': 'gauge'}, + 'ReplicatedChecks': {'name': 'metrics.ReplicatedChecks', 'type': 'gauge'}, + 'ReplicatedFetch': {'name': 'metrics.ReplicatedFetch', 'type': 'gauge'}, + 'ReplicatedSend': {'name': 'metrics.ReplicatedSend', 'type': 'gauge'}, + 'RestartReplicaThreads': {'name': 'metrics.RestartReplicaThreads', 'type': 'gauge'}, + 'RestartReplicaThreadsActive': {'name': 'metrics.RestartReplicaThreadsActive', 'type': 'gauge'}, + 'RestartReplicaThreadsScheduled': {'name': 'metrics.RestartReplicaThreadsScheduled', 'type': 'gauge'}, + 'RestoreThreads': {'name': 'metrics.RestoreThreads', 'type': 'gauge'}, + 'RestoreThreadsActive': {'name': 'metrics.RestoreThreadsActive', 'type': 'gauge'}, + 'RestoreThreadsScheduled': {'name': 'metrics.RestoreThreadsScheduled', 'type': 'gauge'}, + 'Revision': {'name': 'metrics.Revision', 'type': 'gauge'}, + 'S3Requests': {'name': 'metrics.S3Requests', 'type': 'gauge'}, + 'SchedulerIOReadScheduled': {'name': 'metrics.SchedulerIOReadScheduled', 'type': 'gauge'}, + 'SchedulerIOWriteScheduled': {'name': 'metrics.SchedulerIOWriteScheduled', 'type': 'gauge'}, + 'SendExternalTables': {'name': 'metrics.SendExternalTables', 'type': 'gauge'}, + 'SendScalars': {'name': 'metrics.SendScalars', 'type': 'gauge'}, + 'SharedCatalogDropDetachLocalTablesErrors': { + 'name': 'metrics.SharedCatalogDropDetachLocalTablesErrors', + 'type': 'gauge', + }, + 'SharedCatalogDropLocalThreads': {'name': 'metrics.SharedCatalogDropLocalThreads', 'type': 'gauge'}, + 'SharedCatalogDropLocalThreadsActive': { + 'name': 'metrics.SharedCatalogDropLocalThreadsActive', + 'type': 'gauge', + }, + 'SharedCatalogDropLocalThreadsScheduled': { + 'name': 'metrics.SharedCatalogDropLocalThreadsScheduled', + 'type': 'gauge', + }, + 'SharedCatalogDropZooKeeperThreads': { + 'name': 'metrics.SharedCatalogDropZooKeeperThreads', + 'type': 'gauge', + }, + 'SharedCatalogDropZooKeeperThreadsActive': { + 'name': 'metrics.SharedCatalogDropZooKeeperThreadsActive', + 'type': 'gauge', + }, + 'SharedCatalogDropZooKeeperThreadsScheduled': { + 'name': 'metrics.SharedCatalogDropZooKeeperThreadsScheduled', + 'type': 'gauge', + }, + 'SharedCatalogNumberOfObjectsInState': { + 'name': 'metrics.SharedCatalogNumberOfObjectsInState', + 'type': 'gauge', + }, + 'SharedCatalogStateApplicationThreads': { + 'name': 'metrics.SharedCatalogStateApplicationThreads', + 'type': 'gauge', + }, + 'SharedCatalogStateApplicationThreadsActive': { + 'name': 'metrics.SharedCatalogStateApplicationThreadsActive', + 'type': 'gauge', + }, + 'SharedCatalogStateApplicationThreadsScheduled': { + 'name': 'metrics.SharedCatalogStateApplicationThreadsScheduled', + 'type': 'gauge', + }, + 'SharedDatabaseCatalogTablesInLocalDropDetachQueue': { + 'name': 'metrics.SharedDatabaseCatalogTablesInLocalDropDetachQueue', + 'type': 'gauge', + }, + 'SharedMergeTreeAssignedCurrentParts': { + 'name': 'metrics.SharedMergeTreeAssignedCurrentParts', + 'type': 'gauge', + }, + 'SharedMergeTreeCondemnedPartsInKeeper': { + 'name': 'metrics.SharedMergeTreeCondemnedPartsInKeeper', + 'type': 'gauge', + }, + 'SharedMergeTreeFetch': {'name': 'metrics.SharedMergeTreeFetch', 'type': 'gauge'}, + 'SharedMergeTreeOutdatedPartsInKeeper': { + 'name': 'metrics.SharedMergeTreeOutdatedPartsInKeeper', + 'type': 'gauge', + }, + 'SharedMergeTreeThreads': {'name': 'metrics.SharedMergeTreeThreads', 'type': 'gauge'}, + 'SharedMergeTreeThreadsActive': {'name': 'metrics.SharedMergeTreeThreadsActive', 'type': 'gauge'}, + 'SharedMergeTreeThreadsScheduled': {'name': 'metrics.SharedMergeTreeThreadsScheduled', 'type': 'gauge'}, + 'StartupScriptsExecutionState': {'name': 'metrics.StartupScriptsExecutionState', 'type': 'gauge'}, + 'StartupSystemTablesThreads': {'name': 'metrics.StartupSystemTablesThreads', 'type': 'gauge'}, + 'StartupSystemTablesThreadsActive': { + 'name': 'metrics.StartupSystemTablesThreadsActive', + 'type': 'gauge', + }, + 'StartupSystemTablesThreadsScheduled': { + 'name': 'metrics.StartupSystemTablesThreadsScheduled', + 'type': 'gauge', + }, + 'StatelessWorkerThreads': {'name': 'metrics.StatelessWorkerThreads', 'type': 'gauge'}, + 'StatelessWorkerThreadsActive': {'name': 'metrics.StatelessWorkerThreadsActive', 'type': 'gauge'}, + 'StatelessWorkerThreadsScheduled': {'name': 'metrics.StatelessWorkerThreadsScheduled', 'type': 'gauge'}, + 'StorageBufferBytes': {'name': 'metrics.StorageBufferBytes', 'type': 'gauge'}, + 'StorageBufferFlushThreads': {'name': 'metrics.StorageBufferFlushThreads', 'type': 'gauge'}, + 'StorageBufferFlushThreadsActive': {'name': 'metrics.StorageBufferFlushThreadsActive', 'type': 'gauge'}, + 'StorageBufferFlushThreadsScheduled': { + 'name': 'metrics.StorageBufferFlushThreadsScheduled', + 'type': 'gauge', + }, + 'StorageBufferRows': {'name': 'metrics.StorageBufferRows', 'type': 'gauge'}, + 'StorageConnectionsStored': {'name': 'metrics.StorageConnectionsStored', 'type': 'gauge'}, + 'StorageConnectionsTotal': {'name': 'metrics.StorageConnectionsTotal', 'type': 'gauge'}, + 'StorageDistributedThreads': {'name': 'metrics.StorageDistributedThreads', 'type': 'gauge'}, + 'StorageDistributedThreadsActive': {'name': 'metrics.StorageDistributedThreadsActive', 'type': 'gauge'}, + 'StorageDistributedThreadsScheduled': { + 'name': 'metrics.StorageDistributedThreadsScheduled', + 'type': 'gauge', + }, + 'StorageHiveThreads': {'name': 'metrics.StorageHiveThreads', 'type': 'gauge'}, + 'StorageHiveThreadsActive': {'name': 'metrics.StorageHiveThreadsActive', 'type': 'gauge'}, + 'StorageHiveThreadsScheduled': {'name': 'metrics.StorageHiveThreadsScheduled', 'type': 'gauge'}, + 'StorageObjectStorageThreads': {'name': 'metrics.StorageObjectStorageThreads', 'type': 'gauge'}, + 'StorageObjectStorageThreadsActive': { + 'name': 'metrics.StorageObjectStorageThreadsActive', + 'type': 'gauge', + }, + 'StorageObjectStorageThreadsScheduled': { + 'name': 'metrics.StorageObjectStorageThreadsScheduled', + 'type': 'gauge', + }, + 'StorageS3Threads': {'name': 'metrics.StorageS3Threads', 'type': 'gauge'}, + 'StorageS3ThreadsActive': {'name': 'metrics.StorageS3ThreadsActive', 'type': 'gauge'}, + 'StorageS3ThreadsScheduled': {'name': 'metrics.StorageS3ThreadsScheduled', 'type': 'gauge'}, + 'SystemReplicasThreads': {'name': 'metrics.SystemReplicasThreads', 'type': 'gauge'}, + 'SystemReplicasThreadsActive': {'name': 'metrics.SystemReplicasThreadsActive', 'type': 'gauge'}, + 'SystemReplicasThreadsScheduled': {'name': 'metrics.SystemReplicasThreadsScheduled', 'type': 'gauge'}, + 'TCPConnection': {'name': 'metrics.TCPConnection', 'type': 'gauge'}, + 'TablesLoaderBackgroundThreads': {'name': 'metrics.TablesLoaderBackgroundThreads', 'type': 'gauge'}, + 'TablesLoaderBackgroundThreadsActive': { + 'name': 'metrics.TablesLoaderBackgroundThreadsActive', + 'type': 'gauge', + }, + 'TablesLoaderBackgroundThreadsScheduled': { + 'name': 'metrics.TablesLoaderBackgroundThreadsScheduled', + 'type': 'gauge', + }, + 'TablesLoaderForegroundThreads': {'name': 'metrics.TablesLoaderForegroundThreads', 'type': 'gauge'}, + 'TablesLoaderForegroundThreadsActive': { + 'name': 'metrics.TablesLoaderForegroundThreadsActive', + 'type': 'gauge', + }, + 'TablesLoaderForegroundThreadsScheduled': { + 'name': 'metrics.TablesLoaderForegroundThreadsScheduled', + 'type': 'gauge', + }, + 'TablesToDropQueueSize': {'name': 'metrics.TablesToDropQueueSize', 'type': 'gauge'}, + 'TaskTrackerThreads': {'name': 'metrics.TaskTrackerThreads', 'type': 'gauge'}, + 'TaskTrackerThreadsActive': {'name': 'metrics.TaskTrackerThreadsActive', 'type': 'gauge'}, + 'TaskTrackerThreadsScheduled': {'name': 'metrics.TaskTrackerThreadsScheduled', 'type': 'gauge'}, + 'TemporaryFilesForAggregation': {'name': 'metrics.TemporaryFilesForAggregation', 'type': 'gauge'}, + 'TemporaryFilesForJoin': {'name': 'metrics.TemporaryFilesForJoin', 'type': 'gauge'}, + 'TemporaryFilesForMerge': {'name': 'metrics.TemporaryFilesForMerge', 'type': 'gauge'}, + 'TemporaryFilesForSort': {'name': 'metrics.TemporaryFilesForSort', 'type': 'gauge'}, + 'TemporaryFilesUnknown': {'name': 'metrics.TemporaryFilesUnknown', 'type': 'gauge'}, + 'ThreadPoolFSReaderThreads': {'name': 'metrics.ThreadPoolFSReaderThreads', 'type': 'gauge'}, + 'ThreadPoolFSReaderThreadsActive': {'name': 'metrics.ThreadPoolFSReaderThreadsActive', 'type': 'gauge'}, + 'ThreadPoolFSReaderThreadsScheduled': { + 'name': 'metrics.ThreadPoolFSReaderThreadsScheduled', + 'type': 'gauge', + }, + 'ThreadPoolRemoteFSReaderThreads': {'name': 'metrics.ThreadPoolRemoteFSReaderThreads', 'type': 'gauge'}, + 'ThreadPoolRemoteFSReaderThreadsActive': { + 'name': 'metrics.ThreadPoolRemoteFSReaderThreadsActive', + 'type': 'gauge', + }, + 'ThreadPoolRemoteFSReaderThreadsScheduled': { + 'name': 'metrics.ThreadPoolRemoteFSReaderThreadsScheduled', + 'type': 'gauge', + }, + 'ThreadsInOvercommitTracker': {'name': 'metrics.ThreadsInOvercommitTracker', 'type': 'gauge'}, + 'TotalTemporaryFiles': {'name': 'metrics.TotalTemporaryFiles', 'type': 'gauge'}, + 'UncompressedCacheBytes': {'name': 'metrics.UncompressedCacheBytes', 'type': 'gauge'}, + 'UncompressedCacheCells': {'name': 'metrics.UncompressedCacheCells', 'type': 'gauge'}, + 'VectorSimilarityIndexCacheBytes': {'name': 'metrics.VectorSimilarityIndexCacheBytes', 'type': 'gauge'}, + 'VectorSimilarityIndexCacheCells': {'name': 'metrics.VectorSimilarityIndexCacheCells', 'type': 'gauge'}, + 'VersionInteger': {'name': 'metrics.VersionInteger', 'type': 'gauge'}, + 'Write': {'name': 'metrics.Write', 'type': 'gauge'}, + 'ZooKeeperRequest': {'name': 'metrics.ZooKeeperRequest', 'type': 'gauge'}, + 'ZooKeeperSession': {'name': 'metrics.ZooKeeperSession', 'type': 'gauge'}, + 'ZooKeeperWatch': {'name': 'metrics.ZooKeeperWatch', 'type': 'gauge'}, + }, + }, + ], +} diff --git a/clickhouse/datadog_checks/clickhouse/clickhouse.py b/clickhouse/datadog_checks/clickhouse/clickhouse.py index 07b98b0ff320a..bf3c3bd16964a 100644 --- a/clickhouse/datadog_checks/clickhouse/clickhouse.py +++ b/clickhouse/datadog_checks/clickhouse/clickhouse.py @@ -13,7 +13,7 @@ from datadog_checks.base.utils.db.utils import TagManager, default_json_event_encoding from datadog_checks.base.utils.serialization import json -from . import queries +from . import advanced_queries, queries, utils from .__about__ import __version__ from .config import build_config, sanitize from .health import ClickhouseHealth, HealthEvent, HealthStatus @@ -77,6 +77,10 @@ def __init__(self, name, init_config, instances): # We'll connect on the first check run self._client = None + # Cache query manager per server version to avoid recompiling on every check run + self._query_manager: QueryManager | None = None + self._query_manager_version: str | None = None + # Shared HTTP connection pool for all ClickHouse clients (main + DBM jobs). # TLS settings must be baked in here: when pool_mgr is provided to get_client(), # clickhouse-connect assigns it immediately and skips its own TLS pool creation, @@ -88,23 +92,6 @@ def __init__(self, name, init_config, instances): ca_cert=self._config.tls_ca_cert, ) - self._query_manager = QueryManager( - self, - self.execute_query_raw, - queries=[ - queries.SystemMetrics, - queries.SystemEventsToDeprecate, - queries.SystemEvents, - queries.SystemAsynchronousMetrics, - queries.SystemParts, - queries.SystemReplicas, - queries.SystemDictionaries, - ], - tags=self.tags, - error_handler=self._error_sanitizer.clean, - ) - self.check_initializations.append(self._query_manager.compile_queries) - # Initialize DBM components if enabled self._init_dbm_components() @@ -246,8 +233,12 @@ def _send_database_instance_metadata(self): def check(self, _): self.connect() + self._server_version = self.select_version() + if self._query_manager is None or self._query_manager_version != self._server_version: + self._query_manager = self._build_query_manager() + self._query_manager_version = self._server_version self._query_manager.execute() - self.collect_version() + self.set_version_metadata(self._server_version) # Send database instance metadata self._send_database_instance_metadata() @@ -272,10 +263,52 @@ def check(self, _): if self.parts_and_merges: self.parts_and_merges.run_job_loop(self.tags) - @AgentCheck.metadata_entrypoint - def collect_version(self): - version = list(self.execute_query_raw('SELECT version()'))[0][0] + def get_queries(self) -> list[dict]: + query_list = [] + + if self._config.use_legacy_queries: + query_list.extend( + [ + queries.SystemMetrics, + queries.SystemEventsToDeprecate, + queries.SystemEvents, + queries.SystemAsynchronousMetrics, + queries.SystemParts, + queries.SystemReplicas, + queries.SystemDictionaries, + ] + ) + + if self._config.use_advanced_queries: + query_list.extend( + [ + advanced_queries.SystemMetrics, + advanced_queries.SystemEvents, + advanced_queries.SystemAsynchronousMetrics, + ] + ) + if self.version_ge('21.3'): + query_list.append(advanced_queries.SystemErrors) + + return query_list + def _build_query_manager(self) -> QueryManager: + query_manager = QueryManager( + self, + self.execute_query_raw, + queries=self.get_queries(), + tags=self.tags, + error_handler=self._error_sanitizer.clean, + ) + query_manager.compile_queries() + + return query_manager + + def select_version(self) -> str: + return self._client.command('SELECT version()', use_database=False) + + @AgentCheck.metadata_entrypoint + def set_version_metadata(self, version: str): # The version comes in like `19.15.2.2` though sometimes there is no patch part version_parts = dict(zip(('year', 'major', 'minor', 'patch'), version.split('.'))) @@ -517,3 +550,23 @@ def cancel(self): # Clear the shared pool manager # Note: urllib3 pool connections are automatically closed when idle self._pool_manager = None + + def version_lt(self, version: str) -> bool: + """ + Returns True if the current ClickHouse server version is less than the compared version, otherwise False. + """ + # The `latest` version should always be greater than any other + if version == 'latest': + return True + + return utils.parse_version(self._server_version) < utils.parse_version(version) + + def version_ge(self, version: str) -> bool: + """ + Returns True if the current ClickHouse server version is greater than the compared version, otherwise False. + """ + # The `latest` version should always be less than any other + if version == 'latest': + return False + + return utils.parse_version(self._server_version) >= utils.parse_version(version) diff --git a/clickhouse/datadog_checks/clickhouse/config_models/defaults.py b/clickhouse/datadog_checks/clickhouse/config_models/defaults.py index 01c852f5536fe..29d6b16edf1ab 100644 --- a/clickhouse/datadog_checks/clickhouse/config_models/defaults.py +++ b/clickhouse/datadog_checks/clickhouse/config_models/defaults.py @@ -60,10 +60,18 @@ def instance_tls_verify(): return False +def instance_use_advanced_queries(): + return True + + def instance_use_global_custom_queries(): return 'true' +def instance_use_legacy_queries(): + return True + + def instance_username(): return 'default' diff --git a/clickhouse/datadog_checks/clickhouse/config_models/instance.py b/clickhouse/datadog_checks/clickhouse/config_models/instance.py index c6fac6d0d1db5..25894c8d49055 100644 --- a/clickhouse/datadog_checks/clickhouse/config_models/instance.py +++ b/clickhouse/datadog_checks/clickhouse/config_models/instance.py @@ -153,7 +153,9 @@ class InstanceConfig(BaseModel): tags: Optional[tuple[str, ...]] = None tls_ca_cert: Optional[str] = None tls_verify: Optional[bool] = None + use_advanced_queries: Optional[bool] = None use_global_custom_queries: Optional[str] = None + use_legacy_queries: Optional[bool] = None username: Optional[str] = None verify: Optional[bool] = None diff --git a/clickhouse/datadog_checks/clickhouse/data/conf.yaml.example b/clickhouse/datadog_checks/clickhouse/data/conf.yaml.example index 1d53fa734f663..6984b8f0283dc 100644 --- a/clickhouse/datadog_checks/clickhouse/data/conf.yaml.example +++ b/clickhouse/datadog_checks/clickhouse/data/conf.yaml.example @@ -117,6 +117,16 @@ instances: # # single_endpoint_mode: false + ## @param use_legacy_queries - boolean - optional - default: true + ## Enable the legacy query set for collecting metrics. Set to `false` to disable. + # + # use_legacy_queries: true + + ## @param use_advanced_queries - boolean - optional - default: true + ## Enable the advanced query set for collecting metrics. Set to `false` to disable. + # + # use_advanced_queries: true + ## Configure collection of database samples snapshots from system.processes # # query_samples: @@ -406,16 +416,42 @@ instances: # # logs: # - source: clickhouse +# service: clickhouse # type: file # path: /var/log/clickhouse-server/clickhouse-server.log +# tags: +# - format:plain # log_processing_rules: # - type: multi_line -# name: log_start_with_date +# name: new_log_start_with_date # pattern: \d{4}\.\d{2}\.\d{2} # - source: clickhouse +# service: clickhouse # type: file # path: /var/log/clickhouse-server/clickhouse-server.err.log +# tags: +# - format:plain # log_processing_rules: # - type: multi_line -# name: log_start_with_date +# name: new_log_start_with_date # pattern: \d{4}\.\d{2}\.\d{2} +# - source: clickhouse +# service: clickhouse +# type: file +# path: /var/log/clickhouse-server/clickhouse-server.log +# tags: +# - format:json +# log_processing_rules: +# - type: multi_line +# name: new_log_start_with_json +# pattern: \{ +# - source: clickhouse +# service: clickhouse +# type: file +# path: /var/log/clickhouse-server/clickhouse-server.err.log +# tags: +# - format:json +# log_processing_rules: +# - type: multi_line +# name: new_log_start_with_json +# pattern: \{ diff --git a/clickhouse/datadog_checks/clickhouse/queries.py b/clickhouse/datadog_checks/clickhouse/queries.py index 96b8cb4ff68de..834989a01a3e3 100644 --- a/clickhouse/datadog_checks/clickhouse/queries.py +++ b/clickhouse/datadog_checks/clickhouse/queries.py @@ -3,7 +3,7 @@ # Licensed under a 3-clause BSD style license (see LICENSE) from .utils import compact_query -# https://clickhouse.yandex/docs/en/operations/system_tables/#system_tables-metrics +# https://clickhouse.com/docs/operations/system-tables/metrics SystemMetrics = { 'name': 'system.metrics', 'query': 'SELECT value, metric FROM system.metrics', @@ -435,7 +435,7 @@ } -# https://clickhouse.yandex/docs/en/operations/system_tables/#system_tables-events +# https://clickhouse.com/docs/operations/system-tables/events SystemEvents = { 'name': 'system.events', 'query': 'SELECT value, event FROM system.events', @@ -1914,7 +1914,7 @@ ], } -# https://clickhouse.yandex/docs/en/operations/system_tables/#system_tables-asynchronous_metrics +# https://clickhouse.com/docs/operations/system-tables/asynchronous_metrics SystemAsynchronousMetrics = { 'name': 'system.asynchronous_metrics', 'query': 'SELECT value, metric FROM system.asynchronous_metrics', @@ -1967,7 +1967,7 @@ } -# https://clickhouse.yandex/docs/en/operations/system_tables/#system_tables-parts +# https://clickhouse.com/docs/operations/system-tables/parts SystemParts = { 'name': 'system.parts', 'query': compact_query( @@ -1995,7 +1995,7 @@ } -# https://clickhouse.yandex/docs/en/operations/system_tables/#system_tables-replicas +# https://clickhouse.com/docs/operations/system-tables/replicas SystemReplicas = { 'name': 'system.replicas', 'query': compact_query( @@ -2039,7 +2039,7 @@ } -# https://clickhouse.yandex/docs/en/operations/system_tables/#system-dictionaries +# https://clickhouse.com/docs/operations/system-tables/dictionaries SystemDictionaries = { 'name': 'system.dictionaries', 'query': compact_query( diff --git a/clickhouse/datadog_checks/clickhouse/utils.py b/clickhouse/datadog_checks/clickhouse/utils.py index 3024d4f08433a..92a2d1bbebf53 100644 --- a/clickhouse/datadog_checks/clickhouse/utils.py +++ b/clickhouse/datadog_checks/clickhouse/utils.py @@ -25,3 +25,7 @@ def scrub(self, error): def compact_query(query): return re.sub(r'\n\s+', ' ', query.strip()) + + +def parse_version(version: str) -> list[int]: + return [int(v) for v in version.split('.')] diff --git a/clickhouse/hatch.toml b/clickhouse/hatch.toml index 64ec4cb4d4a49..cb88ca5d9320c 100644 --- a/clickhouse/hatch.toml +++ b/clickhouse/hatch.toml @@ -1,12 +1,14 @@ [env.collectors.datadog-checks] base-package-features = ["deps", "db"] -[envs.default.env-vars] -CLICKHOUSE_REPOSITORY = "clickhouse/clickhouse-server" - +# https://clickhouse.com/docs/faq/operations/production#how-to-choose-between-clickhouse-releases +# https://github.com/ClickHouse/ClickHouse/blob/master/SECURITY.md [[envs.default.matrix]] python = ["3.13"] -version = ["18", "19", "20", "21.8", "22.7", "23.2", "23.8", "24.8", "25.3"] +version = ["18", "19", "20", "21.8", "22.7", "23.2", "23.8", "24.8", "25.3", "25.8"] + +[envs.default.env-vars] +CLICKHOUSE_REPOSITORY = "clickhouse/clickhouse-server" [envs.default.overrides] matrix.version.env-vars = [ @@ -17,3 +19,15 @@ matrix.version.env-vars = [ [envs.latest.env-vars] CLICKHOUSE_VERSION = "latest" CLICKHOUSE_REPOSITORY = "clickhouse/clickhouse-server" + +[envs.metrics] +dependencies = [ + "requests==2.32.5" +] + +[envs.metrics.env-vars] +# keep in sync with default version matrix +VERSIONS = "24.8,25.3,25.8" + +[envs.metrics.scripts] +generate = "python scripts/generate_metrics.py" diff --git a/clickhouse/metadata-legacy.csv b/clickhouse/metadata-legacy.csv new file mode 100644 index 0000000000000..f62269b250f19 --- /dev/null +++ b/clickhouse/metadata-legacy.csv @@ -0,0 +1,1263 @@ +metric_name,metric_type,interval,unit_name,per_unit_name,description,orientation,integration,short_name,curated_metric,sample_tags +clickhouse.CompiledExpressionCacheCount,gauge,,item,,Total entries in the cache of JIT-compiled code.,0,clickhouse,,, +clickhouse.MarkCacheFiles,gauge,,item,,The number of mark files cached in the mark cache.,0,clickhouse,,, +clickhouse.ReplicasMaxInsertsInQueue,gauge,,item,,Maximum number of INSERT operations in the queue (still to be replicated) across Replicated tables.,0,clickhouse,,, +clickhouse.ReplicasMaxMergesInQueue,gauge,,item,,Maximum number of merge operations in the queue (still to be applied) across Replicated tables.,0,clickhouse,,, +clickhouse.ReplicasMaxQueueSize,gauge,,item,,"Maximum queue size (in the number of operations like get, merge) across Replicated tables.",0,clickhouse,,, +clickhouse.ReplicasSumInsertsInQueue,gauge,,item,,Sum of INSERT operations in the queue (still to be replicated) across Replicated tables.,0,clickhouse,,, +clickhouse.ReplicasSumMergesInQueue,gauge,,item,,Sum of merge operations in the queue (still to be applied) across Replicated tables.,0,clickhouse,,, +clickhouse.UncompressedCacheBytes,gauge,,byte,,Total size of uncompressed cache in bytes. Uncompressed cache does not usually improve the performance and should be mostly avoided.,0,clickhouse,,, +clickhouse.UncompressedCacheCells,gauge,,item,,Total number of entries in the uncompressed cache. Each entry represents a decompressed block of data. Uncompressed cache does not usually improve performance and should be mostly avoided.,0,clickhouse,,, +clickhouse.addresses.active,gauge,,,,Total count of addresses which are used for creation connections with connection pools,0,clickhouse,,, +clickhouse.aggregator.threads,gauge,,,,Number of threads in the Aggregator thread pool.,0,clickhouse,,, +clickhouse.aggregator.threads.active,gauge,,,,Number of threads in the Aggregator thread pool running a task.,0,clickhouse,,, +clickhouse.aggregator.threads.scheduled,gauge,,,,Number of queued or active jobs in the Aggregator thread pool.,0,clickhouse,,, +clickhouse.aio.read.count,count,,read,,Number of reads with Linux or FreeBSD AIO interface.,0,clickhouse,,, +clickhouse.aio.read.size.count,count,,byte,,Number of bytes read with Linux or FreeBSD AIO interface.,0,clickhouse,,, +clickhouse.aio.read.size.total,gauge,,byte,,Total number of bytes read with Linux or FreeBSD AIO interface.,0,clickhouse,,, +clickhouse.aio.read.total,gauge,,read,,Total number of reads with Linux or FreeBSD AIO interface.,0,clickhouse,,, +clickhouse.aio.write.count,count,,write,,Number of writes with Linux or FreeBSD AIO interface.,0,clickhouse,,, +clickhouse.aio.write.size.count,count,,byte,,Number of bytes read with Linux or FreeBSD AIO interface.,0,clickhouse,,, +clickhouse.aio.write.size.total,gauge,,byte,,Total number of bytes read with Linux or FreeBSD AIO interface.,0,clickhouse,,, +clickhouse.aio.write.total,gauge,,write,,Total number of writes with Linux or FreeBSD AIO interface.,0,clickhouse,,, +clickhouse.async.read.time,gauge,,microsecond,,Time spent in waiting for asynchronous reads in asynchronous local read.,0,clickhouse,,, +clickhouse.async.reader.ignored.bytes.count,count,,,,Number of bytes ignored during asynchronous reading,0,clickhouse,,, +clickhouse.async.reader.ignored.bytes.total,gauge,,,,Number of bytes ignored during asynchronous reading,0,clickhouse,,, +clickhouse.async.remote_read.time,gauge,,microsecond,,Time spent in waiting for asynchronous remote reads.,0,clickhouse,,, +clickhouse.attached.database,gauge,,,,"Active database, used by current and upcoming SELECTs.",0,clickhouse,,, +clickhouse.attached.table,gauge,,,,"Active table, used by current and upcoming SELECTs.",0,clickhouse,,, +clickhouse.azure.blob_storage.copy_object.count,count,,,,Number of Azure blob storage API CopyObject calls,0,clickhouse,,, +clickhouse.azure.blob_storage.copy_object.total,gauge,,,,Number of Azure blob storage API CopyObject calls,0,clickhouse,,, +clickhouse.azure.blob_storage.delete_object.count,count,,,,Number of Azure blob storage API DeleteObject(s) calls.,0,clickhouse,,, +clickhouse.azure.blob_storage.delete_object.total,gauge,,,,Number of Azure blob storage API DeleteObject(s) calls.,0,clickhouse,,, +clickhouse.azure.blob_storage.list_object.count,count,,,,Number of Azure blob storage API ListObjects calls.,0,clickhouse,,, +clickhouse.azure.blob_storage.list_object.total,gauge,,,,Number of Azure blob storage API ListObjects calls.,0,clickhouse,,, +clickhouse.azure.blob_storage.upload_part.count,count,,,,Number of Azure blob storage API UploadPart calls,0,clickhouse,,, +clickhouse.azure.blob_storage.upload_part.total,gauge,,,,Number of Azure blob storage API UploadPart calls,0,clickhouse,,, +clickhouse.background_pool.buffer_flush_schedule.task.active,gauge,,task,,Number of active tasks in BackgroundBufferFlushSchedulePool. This pool is used for periodic Buffer flushes,0,clickhouse,,, +clickhouse.background_pool.buffer_flush_schedule.task.limit,gauge,,,,Limit on number of tasks in BackgroundBufferFlushSchedulePool,0,clickhouse,,, +clickhouse.background_pool.common.task.active,gauge,,task,,Number of active tasks in an associated background pool,0,clickhouse,,, +clickhouse.background_pool.common.task.limit,gauge,,,,Limit on number of tasks in an associated background pool,0,clickhouse,,, +clickhouse.background_pool.distributed.task.active,gauge,,task,,Number of active tasks in BackgroundDistributedSchedulePool. This pool is used for distributed sends that is done in background.,0,clickhouse,,, +clickhouse.background_pool.distributed.task.limit,gauge,,,,Limit on number of tasks in BackgroundDistributedSchedulePool,0,clickhouse,,, +clickhouse.background_pool.fetches.task.active,gauge,,task,,Number of active tasks in BackgroundFetchesPool,0,clickhouse,,, +clickhouse.background_pool.fetches.task.limit,gauge,,,,Limit on number of simultaneous fetches in an associated background pool,0,clickhouse,,, +clickhouse.background_pool.merges.task.active,gauge,,task,,Number of active merges and mutations in an associated background pool,0,clickhouse,,, +clickhouse.background_pool.merges.task.limit,gauge,,,,Limit on number of active merges and mutations in an associated background pool,0,clickhouse,,, +clickhouse.background_pool.message_broker.task.active,gauge,,task,,Number of active tasks in BackgroundProcessingPool for message streaming,0,clickhouse,,, +clickhouse.background_pool.message_broker.task.limit,gauge,,,,Limit on number of tasks in BackgroundProcessingPool for message streaming,0,clickhouse,,, +clickhouse.background_pool.move.memory,gauge,,byte,,Total amount of memory (bytes) allocated in background processing pool (that is dedicated for background moves). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks.,0,clickhouse,,, +clickhouse.background_pool.move.task.active,gauge,,task,,The number of active tasks in BackgroundProcessingPool for moves.,-1,clickhouse,,, +clickhouse.background_pool.move.task.limit,gauge,,,,Limit on number of tasks in BackgroundProcessingPool for moves,0,clickhouse,,, +clickhouse.background_pool.processing.memory,gauge,,byte,,"Total amount of memory allocated in background processing pool (that is dedicated for background merges, mutations and fetches). Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks.",0,clickhouse,,, +clickhouse.background_pool.processing.task.active,gauge,,task,,"The number of active tasks in BackgroundProcessingPool (merges, mutations, fetches, or replication queue bookkeeping)",-1,clickhouse,,, +clickhouse.background_pool.schedule.memory,gauge,,byte,,Total amount of memory allocated in background schedule pool (that is dedicated for bookkeeping tasks of Replicated tables).,0,clickhouse,,, +clickhouse.background_pool.schedule.task.active,gauge,,task,,"The number of active tasks in BackgroundSchedulePool. This pool is used for periodic ReplicatedMergeTree tasks, like cleaning old data parts, altering data parts, replica re-initialization, etc.",-1,clickhouse,,, +clickhouse.background_pool.schedule.task.limit,gauge,,,,"Limit on number of tasks in BackgroundSchedulePool. This pool is used for periodic ReplicatedMergeTree tasks, like cleaning old data parts, altering data parts, replica re-initialization, etc.",0,clickhouse,,, +clickhouse.backup.post_tasks.time,gauge,,microsecond,,Time spent running post tasks after making backup entries,0,clickhouse,,, +clickhouse.backup.read.time,gauge,,microsecond,,Time spent reading backup metadata from .backup file,0,clickhouse,,, +clickhouse.backup.tables.time,gauge,,microsecond,,Time spent making backup entries for tables data,0,clickhouse,,, +clickhouse.backup.time,gauge,,microsecond,,Time spent making backup entries,0,clickhouse,,, +clickhouse.backup.write.time,gauge,,microsecond,,Time spent writing backup metadata to .backup file,0,clickhouse,,, +clickhouse.backups.read.open.count,count,,,,Number of backups opened for reading,0,clickhouse,,, +clickhouse.backups.read.open.total,gauge,,,,Number of backups opened for reading,0,clickhouse,,, +clickhouse.backups.threads.active,gauge,,,,Number of threads in thread pool for BACKUP running a task.,0,clickhouse,,, +clickhouse.backups.threads.scheduled,gauge,,,,Number of queued or active jobs for BACKUP.,0,clickhouse,,, +clickhouse.backups.threads.total,gauge,,,,Number of threads in the thread pool for BACKUP.,0,clickhouse,,, +clickhouse.backups.write.open.count,count,,,,Number of backups opened for writing,0,clickhouse,,, +clickhouse.backups.write.open.total,gauge,,,,Number of backups opened for writing,0,clickhouse,,, +clickhouse.backups_io.threads.active,gauge,,,,Number of threads in the BackupsIO thread pool running a task.,0,clickhouse,,, +clickhouse.backups_io.threads.scheduled,gauge,,,,Number of queued or active jobs in the BackupsIO thread pool.,0,clickhouse,,, +clickhouse.backups_io.threads.total,gauge,,,,Number of threads in the BackupsIO thread pool.,0,clickhouse,,, +clickhouse.buffer.write.discard.count,count,,error,,The number of stack traces dropped by query profiler or signal handler because pipe is full or cannot write to pipe during the last interval.,0,clickhouse,,, +clickhouse.buffer.write.discard.total,gauge,,error,,The total number of stack traces dropped by query profiler or signal handler because pipe is full or cannot write to pipe.,0,clickhouse,,, +clickhouse.cache.async.insert,gauge,,,,Number of async insert hash id in cache,0,clickhouse,,, +clickhouse.cache.buffer.time,gauge,,microsecond,,Prepare buffer time,0,clickhouse,,, +clickhouse.cache.distributed.client_access.count,count,,,,Number of client access times,0,clickhouse,,, +clickhouse.cache.distributed.client_access.total,gauge,,,,Number of client access times,0,clickhouse,,, +clickhouse.cache.distributed.connection.time,gauge,,microsecond,,The time spent to connect to distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.connections.used.count,count,,,,The number of used connections to distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.connections.used.total,gauge,,,,The number of used connections to distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.new_read_range.time,gauge,,microsecond,,Time spent to start a new read range with distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.packets.received.count,count,,,,Total number of packets received from distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.packets.received.total,gauge,,,,Total number of packets received from distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.packets.skipped.count,count,,,,Number of skipped unused packets from distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.packets.skipped.total,gauge,,,,Number of skipped unused packets from distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.read.compute.time,gauge,,microsecond,,Time spent to precompute read ranges,0,clickhouse,,, +clickhouse.cache.distributed.read.time,gauge,,microsecond,,Time spent reading from distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.read_buffer_next_impl.time,gauge,,microsecond,,Time spend in ReadBufferFromDistributedCache::nextImpl,0,clickhouse,,, +clickhouse.cache.distributed.registry.update.time,gauge,,microsecond,,Time spent updating distributed cache registry,0,clickhouse,,, +clickhouse.cache.distributed.registry.updates.count,count,,,,Number of distributed cache registry updates,0,clickhouse,,, +clickhouse.cache.distributed.registry.updates.total,gauge,,,,Number of distributed cache registry updates,0,clickhouse,,, +clickhouse.cache.distributed.registry_lock.time,gauge,,microsecond,,Time spent to take DistributedCacheRegistry lock,0,clickhouse,,, +clickhouse.cache.distributed.response.time,gauge,,microsecond,,Time spend to wait for response from distributed cache,0,clickhouse,,, +clickhouse.cache.distributed.server.switches.count,count,,,,Number of server switches between distributed cache servers in read/write-through cache,0,clickhouse,,, +clickhouse.cache.distributed.server.switches.total,gauge,,,,Number of server switches between distributed cache servers in read/write-through cache,0,clickhouse,,, +clickhouse.cache.file_segments,gauge,,segment,,Number of existing cache file segments,0,clickhouse,,, +clickhouse.cache.mark.entry.found.count,count,,,,"Number of times an entry has been found in the mark cache, so we didn't have to load a mark file.",0,clickhouse,,, +clickhouse.cache.mark.entry.found.total,gauge,,,,"Number of times an entry has been found in the mark cache, so we didn't have to load a mark file.",0,clickhouse,,, +clickhouse.cache.mark.entry.missed.count,count,,,,"Number of times an entry has not been found in the mark cache, so we had to load a mark file in memory, which is a costly operation, adding to query latency.",0,clickhouse,,, +clickhouse.cache.mark.entry.missed.total,gauge,,,,"Number of times an entry has not been found in the mark cache, so we had to load a mark file in memory, which is a costly operation, adding to query latency.",0,clickhouse,,, +clickhouse.cache.mmap.file.found.count,count,,,,"Number of times a file has been found in the MMap cache (for the 'mmap' read_method), so we didn't have to mmap it again.",0,clickhouse,,, +clickhouse.cache.mmap.file.found.total,gauge,,,,"Number of times a file has been found in the MMap cache (for the 'mmap' read_method), so we didn't have to mmap it again.",0,clickhouse,,, +clickhouse.cache.mmap.file.missed.count,count,,,,"Number of times a file has not been found in the MMap cache (for the 'mmap' read_method), so we had to mmap it again.",0,clickhouse,,, +clickhouse.cache.mmap.file.missed.total,gauge,,,,"Number of times a file has not been found in the MMap cache (for the 'mmap' read_method), so we had to mmap it again.",0,clickhouse,,, +clickhouse.cache.opened_file.hits.count,count,,,,"Number of times a file has been found in the opened file cache, so we didn't have to open it again.",0,clickhouse,,, +clickhouse.cache.opened_file.hits.total,gauge,,,,"Number of times a file has been found in the opened file cache, so we didn't have to open it again.",0,clickhouse,,, +clickhouse.cache.opened_file.misses.count,count,,,,"Number of times a file has been found in the opened file cache, so we had to open it again.",0,clickhouse,,, +clickhouse.cache.opened_file.misses.total,gauge,,,,"Number of times a file has been found in the opened file cache, so we had to open it again.",0,clickhouse,,, +clickhouse.cache.opened_file.time,gauge,,microsecond,,Amount of time spent executing OpenedFileCache methods.,0,clickhouse,,, +clickhouse.cache.page.chunk.evicted.count,count,,,,"Number of times a chunk has been found in the userspace page cache, not in use, but all its pages were evicted by the OS.",0,clickhouse,,, +clickhouse.cache.page.chunk.evicted.total,gauge,,,,"Number of times a chunk has been found in the userspace page cache, not in use, but all its pages were evicted by the OS.",0,clickhouse,,, +clickhouse.cache.page.chunk.hits.count,count,,,,"Number of times a chunk has been found in the userspace page cache, not in use, with all pages intact.",0,clickhouse,,, +clickhouse.cache.page.chunk.hits.partial.count,count,,,,"Number of times a chunk has been found in the userspace page cache, not in use, but some of its pages were evicted by the OS.",0,clickhouse,,, +clickhouse.cache.page.chunk.hits.partial.total,gauge,,,,"Number of times a chunk has been found in the userspace page cache, not in use, but some of its pages were evicted by the OS.",0,clickhouse,,, +clickhouse.cache.page.chunk.hits.total,gauge,,,,"Number of times a chunk has been found in the userspace page cache, not in use, with all pages intact.",0,clickhouse,,, +clickhouse.cache.page.chunk.misses.count,count,,,,Number of times a chunk has not been found in the userspace page cache.,0,clickhouse,,, +clickhouse.cache.page.chunk.misses.total,gauge,,,,Number of times a chunk has not been found in the userspace page cache.,0,clickhouse,,, +clickhouse.cache.page.chunk.shared.count,count,,,,"Number of times a chunk has been found in the userspace page cache, already in use by another thread.",0,clickhouse,,, +clickhouse.cache.page.chunk.shared.total,gauge,,,,"Number of times a chunk has been found in the userspace page cache, already in use by another thread.",0,clickhouse,,, +clickhouse.cache.page.thread_pool_reader.prepare.time,gauge,,microsecond,,Time spent on preparation (e.g. call to reader seek() method),0,clickhouse,,, +clickhouse.cache.page.thread_pool_reader.read.miss.time,gauge,,microsecond,,Time spent reading data inside the asynchronous job in ThreadPoolReader - when read was not done from the page cache.,0,clickhouse,,, +clickhouse.cache.page.thread_pool_reader.read.time,gauge,,microsecond,,Time spent reading data from page cache in ThreadPoolReader.,0,clickhouse,,, +clickhouse.cache.query.hits.count,count,,,,Number of times a query result has been found in the query cache (and query computation was avoided). Only updated for SELECT queries with SETTING use_query_cache = 1.,0,clickhouse,,, +clickhouse.cache.query.hits.total,gauge,,,,Number of times a query result has been found in the query cache (and query computation was avoided). Only updated for SELECT queries with SETTING use_query_cache = 1.,0,clickhouse,,, +clickhouse.cache.query.misses.count,count,,,,Number of times a query result has not been found in the query cache (and required query computation). Only updated for SELECT queries with SETTING use_query_cache = 1.,0,clickhouse,,, +clickhouse.cache.query.misses.total,gauge,,,,Number of times a query result has not been found in the query cache (and required query computation). Only updated for SELECT queries with SETTING use_query_cache = 1.,0,clickhouse,,, +clickhouse.cache.read.bytes.count,count,,,,Bytes read from filesystem cache,0,clickhouse,,, +clickhouse.cache.read.bytes.total,gauge,,,,Bytes read from filesystem cache,0,clickhouse,,, +clickhouse.cache.read.hits.count,count,,,,Number of times the read from filesystem cache hit the cache.,0,clickhouse,,, +clickhouse.cache.read.hits.total,gauge,,,,Number of times the read from filesystem cache hit the cache.,0,clickhouse,,, +clickhouse.cache.read.misses.count,count,,,,Number of times the read from filesystem cache miss the cache.,0,clickhouse,,, +clickhouse.cache.read.misses.total,gauge,,,,Number of times the read from filesystem cache miss the cache.,0,clickhouse,,, +clickhouse.cache.read.time,gauge,,microsecond,,Time reading from filesystem cache,0,clickhouse,,, +clickhouse.cache.remote_file_segments.waiting,gauge,,,,Total size of remote file segments waiting to be asynchronously loaded into filesystem cache.,0,clickhouse,,, +clickhouse.cache.schema.evitcted.count,count,,,,Number of times a schema from cache was evicted due to overflow,0,clickhouse,,, +clickhouse.cache.schema.evitcted.total,gauge,,,,Number of times a schema from cache was evicted due to overflow,0,clickhouse,,, +clickhouse.cache.schema.found.count,count,,,,Number of times the requested source is found in schema cache,0,clickhouse,,, +clickhouse.cache.schema.found.total,gauge,,,,Number of times the requested source is found in schema cache,0,clickhouse,,, +clickhouse.cache.schema.found_schemas.count,count,,,,Number of times the schema is found in schema cache during schema inference,0,clickhouse,,, +clickhouse.cache.schema.found_schemas.total,gauge,,,,Number of times the schema is found in schema cache during schema inference,0,clickhouse,,, +clickhouse.cache.schema.invalid.count,count,,,,Number of times a schema in cache became invalid due to changes in data,0,clickhouse,,, +clickhouse.cache.schema.invalid.total,gauge,,,,Number of times a schema in cache became invalid due to changes in data,0,clickhouse,,, +clickhouse.cache.schema.missed.count,count,,,,Number of times the requested source is not in schema cache,0,clickhouse,,, +clickhouse.cache.schema.missed.total,gauge,,,,Number of times the requested source is not in schema cache,0,clickhouse,,, +clickhouse.cache.schema.missed_schemas.count,count,,,,Number of times the requested source is in cache but the schema is not in cache during schema inference,0,clickhouse,,, +clickhouse.cache.schema.missed_schemas.total,gauge,,,,Number of times the requested source is in cache but the schema is not in cache during schema inference,0,clickhouse,,, +clickhouse.cache.schema.rows.found.count,count,,,,Number of times the number of rows is found in schema cache during count from files,0,clickhouse,,, +clickhouse.cache.schema.rows.found.total,gauge,,,,Number of times the number of rows is found in schema cache during count from files,0,clickhouse,,, +clickhouse.cache.schema.rows.missed.count,count,,,,Number of times the requested source is in cache but the number of rows is not in cache while count from files,0,clickhouse,,, +clickhouse.cache.schema.rows.missed.total,gauge,,,,Number of times the requested source is in cache but the number of rows is not in cache while count from files,0,clickhouse,,, +clickhouse.cache.source.read.bytes.count,count,,,,"Bytes read from filesystem cache source (from remote fs, etc)",0,clickhouse,,, +clickhouse.cache.source.read.bytes.total,gauge,,,,"Bytes read from filesystem cache source (from remote fs, etc)",0,clickhouse,,, +clickhouse.cache.source.read.time,gauge,,microsecond,,"Time reading from filesystem cache source (from remote filesystem, etc)",0,clickhouse,,, +clickhouse.cache.source.write.bytes.count,count,,,,"Bytes written from source (remote fs, etc) to filesystem cache",0,clickhouse,,, +clickhouse.cache.source.write.bytes.total,gauge,,,,"Bytes written from source (remote fs, etc) to filesystem cache",0,clickhouse,,, +clickhouse.cache.source.write.time,gauge,,microsecond,,Time spent writing data into filesystem cache,0,clickhouse,,, +clickhouse.cache.uncompressed.block_data.count,count,,,,Number of times a block of data has been found in the uncompressed cache (and decompression was avoided).,0,clickhouse,,, +clickhouse.cache.uncompressed.block_data.miss.count,count,,,,Number of times a block of data has not been found in the uncompressed cache (and required decompression).,0,clickhouse,,, +clickhouse.cache.uncompressed.block_data.miss.total,gauge,,,,Number of times a block of data has not been found in the uncompressed cache (and required decompression).,0,clickhouse,,, +clickhouse.cache.uncompressed.block_data.total,gauge,,,,Number of times a block of data has been found in the uncompressed cache (and decompression was avoided).,0,clickhouse,,, +clickhouse.cache.write.bytes.count,count,,,,"Bytes written from source (remote fs, etc) to filesystem cache",0,clickhouse,,, +clickhouse.cache.write.bytes.total,gauge,,,,"Bytes written from source (remote fs, etc) to filesystem cache",0,clickhouse,,, +clickhouse.cache.write.time,gauge,,microsecond,,Time spent writing data into filesystem cache,0,clickhouse,,, +clickhouse.cache_dictionary.threads.active,gauge,,,,Number of threads in the CacheDictionary thread pool running a task.,0,clickhouse,,, +clickhouse.cache_dictionary.threads.scheduled,gauge,,,,Number of queued or active jobs in the CacheDictionary thread pool.,0,clickhouse,,, +clickhouse.cache_dictionary.threads.total,gauge,,,,Number of threads in the CacheDictionary thread pool.,0,clickhouse,,, +clickhouse.cache_dictionary.update_queue.batches,gauge,,,,Number of 'batches' (a set of keys) in update queue in CacheDictionaries.,-1,clickhouse,,, +clickhouse.cache_dictionary.update_queue.keys,gauge,,key,,Exact number of keys in update queue in CacheDictionaries.,-1,clickhouse,,, +clickhouse.cache_file_segments.detached,gauge,,segment,,Number of existing detached cache file segments,0,clickhouse,,, +clickhouse.cachewarmer.bytes.downloaded.count,count,,,,Amount of data fetched into filesystem cache by dedicated background threads.,0,clickhouse,,, +clickhouse.cachewarmer.bytes.downloaded.total,gauge,,,,Amount of data fetched into filesystem cache by dedicated background threads.,0,clickhouse,,, +clickhouse.compilation.attempt.count,count,,event,,The number of times a compilation of generated C++ code was initiated during the last interval.,0,clickhouse,,, +clickhouse.compilation.attempt.total,gauge,,event,,The total number of times a compilation of generated C++ code was initiated.,0,clickhouse,,, +clickhouse.compilation.function.execute.count,count,,execution,,The number of times a compiled function was executed during the last interval.,0,clickhouse,,, +clickhouse.compilation.function.execute.total,gauge,,execution,,The total number of times a compiled function was executed.,0,clickhouse,,, +clickhouse.compilation.llvm.attempt.count,count,,event,,The number of times a compilation of generated LLVM code (to create fused function for complex expressions) was initiated during the last interval.,0,clickhouse,,, +clickhouse.compilation.llvm.attempt.total,gauge,,event,,The total number of times a compilation of generated LLVM code (to create fused function for complex expressions) was initiated.,0,clickhouse,,, +clickhouse.compilation.regex.count,count,,event,,The number of regular expressions compiled during the last interval. Identical regular expressions are compiled just once and cached forever.,0,clickhouse,,, +clickhouse.compilation.regex.total,gauge,,event,,The total number of regular expressions compiled. Identical regular expressions are compiled just once and cached forever.,0,clickhouse,,, +clickhouse.compilation.size.count,count,,byte,,The number of bytes used for expressions compilation during the last interval.,0,clickhouse,,, +clickhouse.compilation.size.total,gauge,,byte,,The total number of bytes used for expressions compilation.,0,clickhouse,,, +clickhouse.compilation.success.count,count,,event,,The number of times a compilation of generated C++ code was successful during the last interval.,0,clickhouse,,, +clickhouse.compilation.success.total,gauge,,event,,The total number of times a compilation of generated C++ code was successful.,0,clickhouse,,, +clickhouse.compilation.time,gauge,,percent,,The percentage of time spent for compilation of expressions to LLVM code during the last interval.,0,clickhouse,,, +clickhouse.configuration.main.reloaded.count,count,,,,Number of times the main configuration was reloaded.,0,clickhouse,,, +clickhouse.configuration.main.reloaded.total,gauge,,,,Number of times the main configuration was reloaded.,0,clickhouse,,, +clickhouse.connection.http,gauge,,connection,,The number of connections to HTTP server,0,clickhouse,,, +clickhouse.connection.http.create.count,count,,connection,,The number of created HTTP connections (closed or opened) during the last interval.,0,clickhouse,,, +clickhouse.connection.http.create.total,gauge,,connection,,The total number of created HTTP connections (closed or opened).,0,clickhouse,,, +clickhouse.connection.http.stored,gauge,,,,Total count of sessions stored in the session pool for http hosts,0,clickhouse,,, +clickhouse.connection.http.total,gauge,,,,Total count of all sessions: stored in the pool and actively used right now for http hosts,0,clickhouse,,, +clickhouse.connection.interserver,gauge,,connection,,The number of connections from other replicas to fetch parts,0,clickhouse,,, +clickhouse.connection.mysql,gauge,,connection,,Number of client connections using MySQL protocol.,0,clickhouse,,, +clickhouse.connection.send.external,gauge,,connection,,The number of connections that are sending data for external tables to remote servers. External tables are used to implement GLOBAL IN and GLOBAL JOIN operators with distributed subqueries.,0,clickhouse,,, +clickhouse.connection.send.scalar,gauge,,connection,,The number of connections that are sending data for scalars to remote servers.,0,clickhouse,,, +clickhouse.connection.tcp,gauge,,connection,,The number of connections to TCP server (clients with native interface).,0,clickhouse,,, +clickhouse.connections.alive.total,gauge,,connection,,Number of alive connections,0,clickhouse,,, +clickhouse.connections.http.created.count,count,,,,Number of created http connections,0,clickhouse,,, +clickhouse.connections.http.created.time,gauge,,microsecond,,Total time spend on creating http connections,0,clickhouse,,, +clickhouse.connections.http.created.total,gauge,,,,Number of created http connections,0,clickhouse,,, +clickhouse.connections.http.expired.count,count,,,,Number of expired http connections,0,clickhouse,,, +clickhouse.connections.http.expired.total,gauge,,,,Number of expired http connections,0,clickhouse,,, +clickhouse.connections.http.failed.count,count,,,,Number of cases when creation of a http connection failed,0,clickhouse,,, +clickhouse.connections.http.failed.total,gauge,,,,Number of cases when creation of a http connection failed,0,clickhouse,,, +clickhouse.connections.http.preserved.count,count,,,,Number of preserved http connections,0,clickhouse,,, +clickhouse.connections.http.preserved.total,gauge,,,,Number of preserved http connections,0,clickhouse,,, +clickhouse.connections.http.reset.count,count,,,,Number of reset http connections,0,clickhouse,,, +clickhouse.connections.http.reset.total,gauge,,,,Number of reset http connections,0,clickhouse,,, +clickhouse.connections.http.reused.count,count,,,,Number of reused http connections,0,clickhouse,,, +clickhouse.connections.http.reused.total,gauge,,,,Number of reused http connections,0,clickhouse,,, +clickhouse.connections.outstanding.total,gauge,,connection,,Number of outstanding requests,0,clickhouse,,, +clickhouse.cpu.time,gauge,,percent,,The percentage of CPU time spent seen by OS during the last interval. Does not include involuntary waits due to virtualization.,0,clickhouse,,, +clickhouse.data.part.replicated.obsolete.count,count,,,,"Number of times a data part was covered by another data part that has been fetched from a replica (so, we have marked a covered data part as obsolete and no longer needed).",0,clickhouse,,, +clickhouse.data.part.replicated.obsolete.total,gauge,,,,"Number of times a data part was covered by another data part that has been fetched from a replica (so, we have marked a covered data part as obsolete and no longer needed).",0,clickhouse,,, +clickhouse.database.total,gauge,,instance,,The current number of databases.,0,clickhouse,,, +clickhouse.ddl.max_processed,gauge,,,,Max processed DDL entry of DDLWorker.,0,clickhouse,,, +clickhouse.dictionary.cache.keys.expired.count,count,,,,Number of keys looked up in the dictionaries of 'cache' types and found in the cache but they were obsolete.,0,clickhouse,,, +clickhouse.dictionary.cache.keys.expired.total,gauge,,,,Number of keys looked up in the dictionaries of 'cache' types and found in the cache but they were obsolete.,0,clickhouse,,, +clickhouse.dictionary.cache.keys.found.count,count,,,,Number of keys looked up in the dictionaries of 'cache' types and found in the cache.,0,clickhouse,,, +clickhouse.dictionary.cache.keys.found.total,gauge,,,,Number of keys looked up in the dictionaries of 'cache' types and found in the cache.,0,clickhouse,,, +clickhouse.dictionary.cache.keys.not_found.count,count,,,,Number of keys looked up in the dictionaries of 'cache' types and not found.,0,clickhouse,,, +clickhouse.dictionary.cache.keys.not_found.total,gauge,,,,Number of keys looked up in the dictionaries of 'cache' types and not found.,0,clickhouse,,, +clickhouse.dictionary.cache.keys.requested.count,count,,,,Number of keys requested from the data source for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.dictionary.cache.keys.requested.total,gauge,,,,Number of keys requested from the data source for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.dictionary.cache.read.waiting.time,gauge,,nanosecond,,Number of nanoseconds spend in waiting for read lock to lookup the data for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.dictionary.cache.request.time,gauge,,nanosecond,,Number of nanoseconds spend in querying the external data sources for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.dictionary.cache.requests.count,count,,,,Number of bulk requests to the external data sources for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.dictionary.cache.requests.total,gauge,,,,Number of bulk requests to the external data sources for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.dictionary.cache.write.waiting.time,gauge,,nanosecond,,Number of nanoseconds spend in waiting for write lock to update the data for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.dictionary.item.current,gauge,,item,,The number of items stored in a dictionary.,0,clickhouse,,, +clickhouse.dictionary.load,gauge,,percent,,"The percentage filled in a dictionary (for a hashed dictionary, the percentage filled in the hash table).",0,clickhouse,,, +clickhouse.dictionary.memory.used,gauge,,byte,,The total amount of memory used by a dictionary.,0,clickhouse,,, +clickhouse.dictionary.request.cache,gauge,,request,,The number of requests in fly to data sources of dictionaries of cache type.,0,clickhouse,,, +clickhouse.disk.azure.copy_object.count,count,,,,Number of Disk Azure blob storage API CopyObject calls,0,clickhouse,,, +clickhouse.disk.azure.copy_object.total,gauge,,,,Number of Disk Azure blob storage API CopyObject calls,0,clickhouse,,, +clickhouse.disk.azure.upload_part.count,count,,,,Number of Disk Azure blob storage API UploadPart calls,0,clickhouse,,, +clickhouse.disk.azure.upload_part.total,gauge,,,,Number of Disk Azure blob storage API UploadPart calls,0,clickhouse,,, +clickhouse.disk.connectioned.active,gauge,,,,Total count of all sessions: stored in the pool and actively used right now for disks,0,clickhouse,,, +clickhouse.disk.connections.created.count,count,,,,Number of created connections for disk,0,clickhouse,,, +clickhouse.disk.connections.created.time,gauge,,microsecond,,Total time spend on creating connections for disk,0,clickhouse,,, +clickhouse.disk.connections.created.total,gauge,,,,Number of created connections for disk,0,clickhouse,,, +clickhouse.disk.connections.errors.count,count,,,,Number of cases when creation of a connection for disk is failed,0,clickhouse,,, +clickhouse.disk.connections.errors.total,gauge,,,,Number of cases when creation of a connection for disk is failed,0,clickhouse,,, +clickhouse.disk.connections.expired.count,count,,,,Number of expired connections for disk,0,clickhouse,,, +clickhouse.disk.connections.expired.total,gauge,,,,Number of expired connections for disk,0,clickhouse,,, +clickhouse.disk.connections.preserved.count,count,,,,Number of preserved connections for disk,0,clickhouse,,, +clickhouse.disk.connections.preserved.total,gauge,,,,Number of preserved connections for disk,0,clickhouse,,, +clickhouse.disk.connections.reset.count,count,,,,Number of reset connections for disk,0,clickhouse,,, +clickhouse.disk.connections.reset.total,gauge,,,,Number of reset connections for disk,0,clickhouse,,, +clickhouse.disk.connections.reused.count,count,,,,Number of reused connections for disk,0,clickhouse,,, +clickhouse.disk.connections.reused.total,gauge,,,,Number of reused connections for disk,0,clickhouse,,, +clickhouse.disk.connections.stored,gauge,,,,Total count of sessions stored in the session pool for disks,0,clickhouse,,, +clickhouse.disk.read.size.count,count,,byte,,"The number of bytes read from disks or block devices during the last interval. Doesn't include bytes read from page cache. May include excessive data due to block size, readahead, etc.",0,clickhouse,,, +clickhouse.disk.read.size.total,gauge,,byte,,"The total number of bytes read from disks or block devices. Doesn't include bytes read from page cache. May include excessive data due to block size, readahead, etc.",0,clickhouse,,, +clickhouse.disk.write.size.count,count,,byte,,The number of bytes written to disks or block devices during the last interval. Doesn't include bytes that are in page cache dirty pages. May not include data that was written by OS asynchronously.,0,clickhouse,,, +clickhouse.disk.write.size.total,gauge,,byte,,The total number of bytes written to disks or block devices. Doesn't include bytes that are in page cache dirty pages. May not include data that was written by OS asynchronously.,0,clickhouse,,, +clickhouse.disk_s3.abort_multipart_upload.count,count,,,,Number of DiskS3 API AbortMultipartUpload calls.,0,clickhouse,,, +clickhouse.disk_s3.abort_multipart_upload.total,gauge,,,,Number of DiskS3 API AbortMultipartUpload calls.,0,clickhouse,,, +clickhouse.disk_s3.copy_object.count,count,,,,Number of DiskS3 API CopyObject calls.,0,clickhouse,,, +clickhouse.disk_s3.copy_object.total,gauge,,,,Number of DiskS3 API CopyObject calls.,0,clickhouse,,, +clickhouse.disk_s3.create_multipart_upload.count,count,,,,Number of DiskS3 API CreateMultipartUpload calls.,0,clickhouse,,, +clickhouse.disk_s3.create_multipart_upload.total,gauge,,,,Number of DiskS3 API CreateMultipartUpload calls.,0,clickhouse,,, +clickhouse.disk_s3.delete_object.count,count,,,,Number of DiskS3 API DeleteObject(s) calls.,0,clickhouse,,, +clickhouse.disk_s3.delete_object.total,gauge,,,,Number of DiskS3 API DeleteObject(s) calls.,0,clickhouse,,, +clickhouse.disk_s3.get_object.count,count,,,,Number of DiskS3 API GetObject calls.,0,clickhouse,,, +clickhouse.disk_s3.get_object.total,gauge,,,,Number of DiskS3 API GetObject calls.,0,clickhouse,,, +clickhouse.disk_s3.get_object_attributes.count,count,,,,Number of DiskS3 API GetObjectAttributes calls.,0,clickhouse,,, +clickhouse.disk_s3.get_object_attributes.total,gauge,,,,Number of DiskS3 API GetObjectAttributes calls.,0,clickhouse,,, +clickhouse.disk_s3.get_request.throttler.time,gauge,,microsecond,,Total time a query was sleeping to conform DiskS3 GET and SELECT request throttling.,0,clickhouse,,, +clickhouse.disk_s3.head_objects.count,count,,,,Number of DiskS3 API HeadObject calls.,0,clickhouse,,, +clickhouse.disk_s3.head_objects.total,gauge,,,,Number of DiskS3 API HeadObject calls.,0,clickhouse,,, +clickhouse.disk_s3.list_objects.count,count,,,,Number of DiskS3 API ListObjects calls.,0,clickhouse,,, +clickhouse.disk_s3.list_objects.total,gauge,,,,Number of DiskS3 API ListObjects calls.,0,clickhouse,,, +clickhouse.disk_s3.put_object.count,count,,,,Number of DiskS3 API PutObject calls.,0,clickhouse,,, +clickhouse.disk_s3.put_object.total,gauge,,,,Number of DiskS3 API PutObject calls.,0,clickhouse,,, +clickhouse.disk_s3.put_request.throttler.time,gauge,,microsecond,,"Total time a query was sleeping to conform DiskS3 PUT, COPY, POST and LIST request throttling.",0,clickhouse,,, +clickhouse.disk_s3.read.requests.count,count,,,,Number of GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.disk_s3.read.requests.errors.count,count,,,,Number of non-throttling errors in GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.disk_s3.read.requests.errors.total,gauge,,,,Number of non-throttling errors in GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.disk_s3.read.requests.redirects.count,count,,,,Number of redirects in GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.disk_s3.read.requests.redirects.total,gauge,,,,Number of redirects in GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.disk_s3.read.requests.throttling.count,count,,,,Number of 429 and 503 errors in GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.disk_s3.read.requests.throttling.total,gauge,,,,Number of 429 and 503 errors in GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.disk_s3.read.requests.total,gauge,,,,Number of GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.disk_s3.read.time,gauge,,microsecond,,Time of GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.disk_s3.upload_part.count,count,,,,Number of DiskS3 API UploadPart calls.,0,clickhouse,,, +clickhouse.disk_s3.upload_part.total,gauge,,,,Number of DiskS3 API UploadPart calls.,0,clickhouse,,, +clickhouse.disk_s3.upload_part_copy.count,count,,,,Number of DiskS3 API UploadPartCopy calls.,0,clickhouse,,, +clickhouse.disk_s3.upload_part_copy.total,gauge,,,,Number of DiskS3 API UploadPartCopy calls.,0,clickhouse,,, +clickhouse.disk_s3.write.requests.count,count,,,,"Number of POST, DELETE, PUT and PATCH requests to DiskS3 storage.",0,clickhouse,,, +clickhouse.disk_s3.write.requests.errors.count,count,,,,"Number of non-throttling errors in POST, DELETE, PUT and PATCH requests to DiskS3 storage.",0,clickhouse,,, +clickhouse.disk_s3.write.requests.errors.total,gauge,,,,"Number of non-throttling errors in POST, DELETE, PUT and PATCH requests to DiskS3 storage.",0,clickhouse,,, +clickhouse.disk_s3.write.requests.redirects.count,count,,,,"Number of redirects in POST, DELETE, PUT and PATCH requests to DiskS3 storage.",0,clickhouse,,, +clickhouse.disk_s3.write.requests.redirects.total,gauge,,,,"Number of redirects in POST, DELETE, PUT and PATCH requests to DiskS3 storage.",0,clickhouse,,, +clickhouse.disk_s3.write.requests.total,gauge,,,,"Number of POST, DELETE, PUT and PATCH requests to DiskS3 storage.",0,clickhouse,,, +clickhouse.disk_s3.write.time,gauge,,microsecond,,"Time of POST, DELETE, PUT and PATCH requests to DiskS3 storage.",0,clickhouse,,, +clickhouse.distributed.connection.fail_at_all.count,count,,connection,,Count when distributed connection fails after all retries finished,0,clickhouse,,, +clickhouse.distributed.connection.fail_at_all.total,gauge,,connection,,Total count when distributed connection fails after all retries finished,0,clickhouse,,, +clickhouse.distributed.connection.fail_try.count,count,,connection,,Count when distributed connection fails with retry,0,clickhouse,,, +clickhouse.distributed.connection.fail_try.total,gauge,,connection,,Total count when distributed connection fails with retry,0,clickhouse,,, +clickhouse.distributed.connection.successful.count,count,,,,"Total count of successful distributed connections to a usable server (with required table, but maybe stale).",0,clickhouse,,, +clickhouse.distributed.connection.successful.total,gauge,,,,"Total count of successful distributed connections to a usable server (with required table, but maybe stale).",0,clickhouse,,, +clickhouse.distributed.connection.tries.count,count,,,,Total count of distributed connection attempts.,0,clickhouse,,, +clickhouse.distributed.connection.tries.total,gauge,,,,Total count of distributed connection attempts.,0,clickhouse,,, +clickhouse.distributed.delayed.inserts.time,gauge,,microsecond,,Total number of milliseconds spent while the INSERT of a block to a Distributed table was throttled due to high number of pending bytes.,0,clickhouse,,, +clickhouse.distributed.inserts.delayed.count,count,,query,,Number of times the INSERT of a block to a Distributed table was throttled due to high number of pending bytes.,0,clickhouse,,, +clickhouse.distributed.inserts.delayed.total,gauge,,query,,Total number of times the INSERT of a block to a Distributed table was throttled due to high number of pending bytes.,0,clickhouse,,, +clickhouse.distributed.inserts.rejected.count,count,,query,,Number of times the INSERT of a block to a Distributed table was rejected with 'Too many bytes' exception due to high number of pending bytes.,0,clickhouse,,, +clickhouse.distributed.inserts.rejected.total,gauge,,query,,Total number of times the INSERT of a block to a Distributed table was rejected with 'Too many bytes' exception due to high number of pending bytes.,0,clickhouse,,, +clickhouse.distributed_cache.clickhouse_server.connections.open,gauge,,,,Number of open connections to ClickHouse server from Distributed Cache,0,clickhouse,,, +clickhouse.distributed_cache.connections.open.total,gauge,,,,The number of open connections to distributed cache,0,clickhouse,,, +clickhouse.distributed_cache.connections.open.used,gauge,,,,Number of currently used connections to Distributed Cache,0,clickhouse,,, +clickhouse.distributed_cache.read.requests,gauge,,,,Number of executed Read requests to Distributed Cache,0,clickhouse,,, +clickhouse.distributed_cache.write.requests,gauge,,,,Number of executed Write requests to Distributed Cache,0,clickhouse,,, +clickhouse.drained_connections.async,gauge,,connection,,Number of connections drained asynchronously.,0,clickhouse,,, +clickhouse.drained_connections.async.active,gauge,,connection,,Number of active connections drained asynchronously.,0,clickhouse,,, +clickhouse.drained_connections.sync,gauge,,connection,,Number of connections drained synchronously.,0,clickhouse,,, +clickhouse.drained_connections.sync.active,gauge,,connection,,Number of active connections drained synchronously.,0,clickhouse,,, +clickhouse.error.dns.count,count,,error,, Number of errors in DNS resolution,0,clickhouse,,, +clickhouse.error.dns.total,gauge,,error,,Total count of errors in DNS resolution,0,clickhouse,,, +clickhouse.file.open.count,count,,file,,The number of files opened during the last interval.,0,clickhouse,,, +clickhouse.file.open.read,gauge,,file,,The number of files open for reading,0,clickhouse,,, +clickhouse.file.open.total,gauge,,file,,The total number of files opened.,0,clickhouse,,, +clickhouse.file.open.write,gauge,,file,,The number of files open for writing,0,clickhouse,,, +clickhouse.file.read.count,count,,read,,The number of reads (read/pread) from a file descriptor during the last interval. Does not include sockets.,0,clickhouse,,, +clickhouse.file.read.fail.count,count,,read,,The number of times the read (read/pread) from a file descriptor have failed during the last interval.,0,clickhouse,,, +clickhouse.file.read.fail.total,gauge,,read,,The total number of times the read (read/pread) from a file descriptor have failed.,0,clickhouse,,, +clickhouse.file.read.size.count,count,,byte,,"The number of bytes read from file descriptors during the last interval. If the file is compressed, this will show the compressed data size.",0,clickhouse,,, +clickhouse.file.read.size.total,gauge,,byte,,"The total number of bytes read from file descriptors. If the file is compressed, this will show the compressed data size.",0,clickhouse,,, +clickhouse.file.read.slow.count,count,,read,,The number of reads from a file that were slow during the last interval. This indicates system overload. Thresholds are controlled by read_backoff_* settings.,0,clickhouse,,, +clickhouse.file.read.slow.total,gauge,,read,,The total number of reads from a file that were slow. This indicates system overload. Thresholds are controlled by read_backoff_* settings.,0,clickhouse,,, +clickhouse.file.read.total,gauge,,read,,The total number of reads (read/pread) from a file descriptor. Does not include sockets.,0,clickhouse,,, +clickhouse.file.seek.count,count,,operation,,The number of times the `lseek` function was called during the last interval.,0,clickhouse,,, +clickhouse.file.seek.total,gauge,,operation,,The total number of times the `lseek` function was called.,0,clickhouse,,, +clickhouse.file.write.count,count,,write,,The number of writes (write/pwrite) to a file descriptor during the last interval. Does not include sockets.,0,clickhouse,,, +clickhouse.file.write.fail.count,count,,write,,The number of times the write (write/pwrite) to a file descriptor have failed during the last interval.,0,clickhouse,,, +clickhouse.file.write.fail.total,gauge,,write,,The total number of times the write (write/pwrite) to a file descriptor have failed.,0,clickhouse,,, +clickhouse.file.write.size.count,count,,byte,,"The number of bytes written to file descriptors during the last interval. If the file is compressed, this will show compressed data size.",0,clickhouse,,, +clickhouse.file.write.size.total,gauge,,byte,,"The total number of bytes written to file descriptors during the last interval. If the file is compressed, this will show compressed data size.",0,clickhouse,,, +clickhouse.file.write.total,gauge,,write,,The total number of writes (write/pwrite) to a file descriptor. Does not include sockets.,0,clickhouse,,, +clickhouse.file_segment.cache.complete.time,gauge,,microsecond,,Duration of FileSegment::complete() in filesystem cache,0,clickhouse,,, +clickhouse.file_segment.cache.predownload.time,gauge,,microsecond,,Metric per file segment. Time spent pre-downloading data to cache (pre-downloading - finishing file segment download (after someone who failed to do that) up to the point current thread was requested to do),0,clickhouse,,, +clickhouse.file_segment.cache.write.time,gauge,,microsecond,,Metric per file segment. Time spend writing data to cache,0,clickhouse,,, +clickhouse.file_segment.download.wait_time.count,count,,,,Wait on DOWNLOADING state,0,clickhouse,,, +clickhouse.file_segment.download.wait_time.total,gauge,,,,Wait on DOWNLOADING state,0,clickhouse,,, +clickhouse.file_segment.holder.complete.time,gauge,,microsecond,,File segments holder complete() time,0,clickhouse,,, +clickhouse.file_segment.lock.time,gauge,,microsecond,,Lock file segment time,0,clickhouse,,, +clickhouse.file_segment.read.time,gauge,,microsecond,,Metric per file segment. Time spend reading from file,0,clickhouse,,, +clickhouse.file_segment.remove.time,gauge,,microsecond,,File segment remove() time,0,clickhouse,,, +clickhouse.file_segment.use.bytes.count,count,,,,Metric per file segment. How many bytes were actually used from current file segment,0,clickhouse,,, +clickhouse.file_segment.use.bytes.total,gauge,,,,Metric per file segment. How many bytes were actually used from current file segment,0,clickhouse,,, +clickhouse.file_segment.use.time,gauge,,microsecond,,File segment use() time,0,clickhouse,,, +clickhouse.file_segment.write.timex.count,count,,,,File segment write() time,0,clickhouse,,, +clickhouse.file_segment.write.timex.total,gauge,,,,File segment write() time,0,clickhouse,,, +clickhouse.filesystem.cache.buffers.active,gauge,,buffer,,Number of active cache buffers,0,clickhouse,,, +clickhouse.filesystem.cache.cleanup.queue,gauge,,,,Filesystem cache elements in background cleanup queue,0,clickhouse,,, +clickhouse.filesystem.cache.download.queue,gauge,,,,Filesystem cache elements in download queue,0,clickhouse,,, +clickhouse.filesystem.cache.elements,gauge,,,,Filesystem cache elements (file segments),0,clickhouse,,, +clickhouse.filesystem.cache.eviction.bytes.count,count,,,,Number of bytes evicted from filesystem cache,0,clickhouse,,, +clickhouse.filesystem.cache.eviction.bytes.total,gauge,,,,Number of bytes evicted from filesystem cache,0,clickhouse,,, +clickhouse.filesystem.cache.eviction.time,gauge,,microsecond,,Filesystem cache eviction time,0,clickhouse,,, +clickhouse.filesystem.cache.filesegments.hold,gauge,,,,"Filesystem cache file segments count, which were hold",0,clickhouse,,, +clickhouse.filesystem.cache.get.time,gauge,,microsecond,,Filesystem cache get() time,0,clickhouse,,, +clickhouse.filesystem.cache.get_set.time,gauge,,microsecond,,Filesystem cache getOrSet() time,0,clickhouse,,, +clickhouse.filesystem.cache.limit,gauge,,,,Filesystem cache size limit in bytes,0,clickhouse,,, +clickhouse.filesystem.cache.lock.key.time,gauge,,microsecond,,Lock cache key time,0,clickhouse,,, +clickhouse.filesystem.cache.lock.metadata.time,gauge,,microsecond,,Lock filesystem cache metadata time,0,clickhouse,,, +clickhouse.filesystem.cache.lock.time,gauge,,microsecond,,Lock filesystem cache time,0,clickhouse,,, +clickhouse.filesystem.cache.metadata.load.time,gauge,,microsecond,,Time spent loading filesystem cache metadata,0,clickhouse,,, +clickhouse.filesystem.cache.reserve.time,gauge,,microsecond,,Filesystem cache space reservation time,0,clickhouse,,, +clickhouse.filesystem.cache.size,gauge,,,,Filesystem cache size in bytes,0,clickhouse,,, +clickhouse.filesystem.remote.aysnc.read.prefetches.count,count,,,,Number of prefetches made with asynchronous reading from remote filesystem,0,clickhouse,,, +clickhouse.filesystem.remote.aysnc.read.prefetches.total,gauge,,,,Number of prefetches made with asynchronous reading from remote filesystem,0,clickhouse,,, +clickhouse.filesystem.remote.buffer.seeks.count,count,,,,Total number of seeks for async buffer,0,clickhouse,,, +clickhouse.filesystem.remote.buffer.seeks.reset.count,count,,,,Number of seeks which lead to a new connection,0,clickhouse,,, +clickhouse.filesystem.remote.buffer.seeks.reset.total,gauge,,,,Number of seeks which lead to a new connection,0,clickhouse,,, +clickhouse.filesystem.remote.buffer.seeks.total,gauge,,,,Total number of seeks for async buffer,0,clickhouse,,, +clickhouse.filesystem.remote.buffers.count,count,,,,Number of buffers created for asynchronous reading from remote filesystem,0,clickhouse,,, +clickhouse.filesystem.remote.buffers.total,gauge,,,,Number of buffers created for asynchronous reading from remote filesystem,0,clickhouse,,, +clickhouse.filesystem.remote.lazy_seeks.count,count,,,,Number of lazy seeks,0,clickhouse,,, +clickhouse.filesystem.remote.lazy_seeks.total,gauge,,,,Number of lazy seeks,0,clickhouse,,, +clickhouse.filesystem.remote.prefetched.reads.count,count,,,,Number of reads from prefecthed buffer,0,clickhouse,,, +clickhouse.filesystem.remote.prefetched.reads.total,gauge,,,,Number of reads from prefecthed buffer,0,clickhouse,,, +clickhouse.filesystem.remote.prefetched.size.count,count,,,,Number of bytes from prefecthed buffer,0,clickhouse,,, +clickhouse.filesystem.remote.prefetched.size.total,gauge,,,,Number of bytes from prefecthed buffer,0,clickhouse,,, +clickhouse.filesystem.remote.prefetches.pending.count,count,,,,Number of prefetches pending at buffer destruction,0,clickhouse,,, +clickhouse.filesystem.remote.prefetches.pending.total,gauge,,,,Number of prefetches pending at buffer destruction,0,clickhouse,,, +clickhouse.filesystem.remote.unprefetched.size.count,count,,,,Number of bytes from unprefetched buffer,0,clickhouse,,, +clickhouse.filesystem.remote.unprefetched.size.total,gauge,,,,Number of bytes from unprefetched buffer,0,clickhouse,,, +clickhouse.fs.read.size.count,count,,byte,,The number of bytes read from filesystem (including page cache) during the last interval.,0,clickhouse,,, +clickhouse.fs.read.size.total,gauge,,byte,,The total number of bytes read from filesystem (including page cache).,0,clickhouse,,, +clickhouse.fs.write.size.count,count,,byte,,The number of bytes written to filesystem (including page cache) during the last interval.,0,clickhouse,,, +clickhouse.fs.write.size.total,gauge,,byte,,The total number of bytes written to filesystem (including page cache).,0,clickhouse,,, +clickhouse.function.filesync.count,count,,,,Number of times the F_FULLFSYNC/fsync/fdatasync function was called for files.,0,clickhouse,,, +clickhouse.function.filesync.time,gauge,,microsecond,,Total time spent waiting for F_FULLFSYNC/fsync/fdatasync syscall for files.,0,clickhouse,,, +clickhouse.function.filesync.total,gauge,,,,Number of times the F_FULLFSYNC/fsync/fdatasync function was called for files.,0,clickhouse,,, +clickhouse.hash_table.elements.allocated.aggregation.count,count,,,,How many elements were preallocated in hash tables for aggregation.,0,clickhouse,,, +clickhouse.hash_table.elements.allocated.aggregation.total,gauge,,,,How many elements were preallocated in hash tables for aggregation.,0,clickhouse,,, +clickhouse.http_connection.addresses.expired.count,count,,,,Total count of expired addresses which is no longer presented in dns resolve results for http connections,0,clickhouse,,, +clickhouse.http_connection.addresses.expired.total,gauge,,,,Total count of expired addresses which is no longer presented in dns resolve results for http connections,0,clickhouse,,, +clickhouse.http_connection.addresses.faulty.count,count,,,,Total count of addresses which has been marked as faulty due to connection errors for http connections,0,clickhouse,,, +clickhouse.http_connection.addresses.faulty.total,gauge,,,,Total count of addresses which has been marked as faulty due to connection errors for http connections,0,clickhouse,,, +clickhouse.http_connection.addresses.new.count,count,,,,Total count of new addresses in dns resolve results for http connections,0,clickhouse,,, +clickhouse.http_connection.addresses.new.total,gauge,,,,Total count of new addresses in dns resolve results for http connections,0,clickhouse,,, +clickhouse.index.usearch.distance.compute.count,count,,,,Number of times distance was computed when adding vectors to usearch indexes.,0,clickhouse,,, +clickhouse.index.usearch.distance.compute.total,gauge,,,,Number of times distance was computed when adding vectors to usearch indexes.,0,clickhouse,,, +clickhouse.index.usearch.search.node.visit.count,count,,,,Number of nodes visited when searching in usearch indexes.,0,clickhouse,,, +clickhouse.index.usearch.search.node.visit.total,gauge,,,,Number of nodes visited when searching in usearch indexes.,0,clickhouse,,, +clickhouse.index.usearch.search.operation.count,count,,,,Number of search operations performed in usearch indexes.,0,clickhouse,,, +clickhouse.index.usearch.search.operation.total,gauge,,,,Number of search operations performed in usearch indexes.,0,clickhouse,,, +clickhouse.index.usearch.vector.add.count,count,,,,Number of vectors added to usearch indexes.,0,clickhouse,,, +clickhouse.index.usearch.vector.add.total,gauge,,,,Number of vectors added to usearch indexes.,0,clickhouse,,, +clickhouse.index.usearch.vector.node.visit.count,count,,,,Number of nodes visited when adding vectors to usearch indexes.,0,clickhouse,,, +clickhouse.index.usearch.vector.node.visit.total,gauge,,,,Number of nodes visited when adding vectors to usearch indexes.,0,clickhouse,,, +clickhouse.insert.query.time,gauge,,microsecond,,Total time of INSERT queries.,0,clickhouse,,, +clickhouse.insert_queue.async.size,gauge,,,,Number of pending bytes in the AsynchronousInsert queue.,0,clickhouse,,, +clickhouse.insert_queue.async.total,gauge,,,,Number of pending tasks in the AsynchronousInsert queue.,0,clickhouse,,, +clickhouse.insert_threads.async.active,gauge,,,,Number of threads in the AsynchronousInsert thread pool running a task.,0,clickhouse,,, +clickhouse.insert_threads.async.scheduled,gauge,,,,Number of queued or active jobs in the AsynchronousInsert thread pool.,0,clickhouse,,, +clickhouse.insert_threads.async.total,gauge,,,,Number of threads in the AsynchronousInsert thread pool.,0,clickhouse,,, +clickhouse.inserts.async.flush.pending,gauge,,,,Number of asynchronous inserts that are waiting for flush.,0,clickhouse,,, +clickhouse.interface.http.received.bytes.count,count,,,,Number of bytes received through HTTP interfaces,0,clickhouse,,, +clickhouse.interface.http.received.bytes.total,gauge,,,,Number of bytes received through HTTP interfaces,0,clickhouse,,, +clickhouse.interface.http.sent.bytes.count,count,,,,Number of bytes sent through HTTP interfaces,0,clickhouse,,, +clickhouse.interface.http.sent.bytes.total,gauge,,,,Number of bytes sent through HTTP interfaces,0,clickhouse,,, +clickhouse.interface.mysql.received.bytes.count,count,,,,Number of bytes received through MySQL interfaces,0,clickhouse,,, +clickhouse.interface.mysql.received.bytes.total,gauge,,,,Number of bytes received through MySQL interfaces,0,clickhouse,,, +clickhouse.interface.mysql.sent.bytes.count,count,,,,Number of bytes sent through MySQL interfaces,0,clickhouse,,, +clickhouse.interface.mysql.sent.bytes.total,gauge,,,,Number of bytes sent through MySQL interfaces,0,clickhouse,,, +clickhouse.interface.native.received.bytes.count,count,,,,Number of bytes received through native interfaces,0,clickhouse,,, +clickhouse.interface.native.received.bytes.total,gauge,,,,Number of bytes received through native interfaces,0,clickhouse,,, +clickhouse.interface.native.sent.bytes.count,count,,,,Number of bytes sent through native interfaces,0,clickhouse,,, +clickhouse.interface.native.sent.bytes.total,gauge,,,,Number of bytes sent through native interfaces,0,clickhouse,,, +clickhouse.interface.postgresql.sent.bytes.count,count,,,,Number of bytes sent through PostgreSQL interfaces,0,clickhouse,,, +clickhouse.interface.postgresql.sent.bytes.total,gauge,,,,Number of bytes sent through PostgreSQL interfaces,0,clickhouse,,, +clickhouse.interface.prometheus.sent.bytes.count,count,,,,Number of bytes sent through Prometheus interfaces,0,clickhouse,,, +clickhouse.interface.prometheus.sent.bytes.total,gauge,,,,Number of bytes sent through Prometheus interfaces,0,clickhouse,,, +clickhouse.io_buffer.allocated.bytes.count,count,,byte,,Number of bytes allocated for IO buffers (for ReadBuffer/WriteBuffer).,0,clickhouse,,, +clickhouse.io_buffer.allocated.bytes.total,gauge,,byte,,Number of bytes allocated for IO buffers (for ReadBuffer/WriteBuffer).,0,clickhouse,,, +clickhouse.io_buffer.allocated.count,count,,,,Number of allocations of IO buffers (for ReadBuffer/WriteBuffer).,0,clickhouse,,, +clickhouse.io_buffer.allocated.total,gauge,,,,Number of allocations of IO buffers (for ReadBuffer/WriteBuffer).,0,clickhouse,,, +clickhouse.io_uring.cqe.completed.count,count,,,,Total number of successfully completed io_uring CQEs,0,clickhouse,,, +clickhouse.io_uring.cqe.completed.total,gauge,,,,Total number of successfully completed io_uring CQEs,0,clickhouse,,, +clickhouse.io_uring.cqe.failed.count,count,,,,Total number of completed io_uring CQEs with failures,0,clickhouse,,, +clickhouse.io_uring.cqe.failed.total,gauge,,,,Total number of completed io_uring CQEs with failures,0,clickhouse,,, +clickhouse.io_uring.sqe.resubmitted.count,count,,,,Total number of io_uring SQE resubmits performed,0,clickhouse,,, +clickhouse.io_uring.sqe.resubmitted.total,gauge,,,,Total number of io_uring SQE resubmits performed,0,clickhouse,,, +clickhouse.io_uring.sqe.submitted.count,count,,,,Total number of io_uring SQEs submitted,0,clickhouse,,, +clickhouse.io_uring.sqe.submitted.total,gauge,,,,Total number of io_uring SQEs submitted,0,clickhouse,,, +clickhouse.jemalloc.active,gauge,,byte,,(EXPERIMENTAL),0,clickhouse,,, +clickhouse.jemalloc.allocated,gauge,,byte,,The amount of memory allocated by ClickHouse.,0,clickhouse,,, +clickhouse.jemalloc.background_thread.num_runs,gauge,,byte,,(EXPERIMENTAL),0,clickhouse,,, +clickhouse.jemalloc.background_thread.num_threads,gauge,,thread,,(EXPERIMENTAL),0,clickhouse,,, +clickhouse.jemalloc.background_thread.run_interval,gauge,,byte,,(EXPERIMENTAL),0,clickhouse,,, +clickhouse.jemalloc.mapped,gauge,,byte,,The amount of memory in active extents mapped by the allocator.,0,clickhouse,,, +clickhouse.jemalloc.metadata,gauge,,byte,,"The amount of memory dedicated to metadata, which comprise base allocations used for bootstrap-sensitive allocator metadata structures and internal allocations.",0,clickhouse,,, +clickhouse.jemalloc.metadata_thp,gauge,,byte,,(EXPERIMENTAL),0,clickhouse,,, +clickhouse.jemalloc.resident,gauge,,byte,,"The amount of memory in physically resident data pages mapped by the allocator, comprising all pages dedicated to allocator metadata, pages backing active allocations, and unused dirty pages.",0,clickhouse,,, +clickhouse.jemalloc.retained,gauge,,byte,,The amount of memory in virtual memory mappings that were retained rather than being returned to the operating system.,0,clickhouse,,, +clickhouse.kafka.background.reads,gauge,,read,,Number of background reads currently working (populating materialized views from Kafka),0,clickhouse,,, +clickhouse.kafka.background.reads.count,count,,,,Number of background reads currently working (populating materialized views from Kafka),0,clickhouse,,, +clickhouse.kafka.background.reads.total,gauge,,,,Number of background reads currently working (populating materialized views from Kafka),0,clickhouse,,, +clickhouse.kafka.commit.failed.count,count,,,,Number of failed commits of consumed offsets to Kafka (usually is a sign of some data duplication),0,clickhouse,,, +clickhouse.kafka.commit.failed.total,gauge,,,,Number of failed commits of consumed offsets to Kafka (usually is a sign of some data duplication),0,clickhouse,,, +clickhouse.kafka.commit.success.count,count,,,,Number of successful commits of consumed offsets to Kafka (normally should be the same as KafkaBackgroundReads),0,clickhouse,,, +clickhouse.kafka.commit.success.total,gauge,,,,Number of successful commits of consumed offsets to Kafka (normally should be the same as KafkaBackgroundReads),0,clickhouse,,, +clickhouse.kafka.consumer.errors.count,count,,,,Number of errors reported by librdkafka during polls,0,clickhouse,,, +clickhouse.kafka.consumer.errors.total,gauge,,,,Number of errors reported by librdkafka during polls,0,clickhouse,,, +clickhouse.kafka.consumers.active,gauge,,,,Number of active Kafka consumers,0,clickhouse,,, +clickhouse.kafka.consumers.assigned,gauge,,,,Number of active Kafka consumers which have some partitions assigned.,0,clickhouse,,, +clickhouse.kafka.consumers.in_use,gauge,,,,Number of consumers which are currently used by direct or background reads,0,clickhouse,,, +clickhouse.kafka.direct.read.count,count,,,,Number of direct selects from Kafka tables since server start,0,clickhouse,,, +clickhouse.kafka.direct.read.total,gauge,,,,Number of direct selects from Kafka tables since server start,0,clickhouse,,, +clickhouse.kafka.inserts.running,gauge,,write,,Number of writes (inserts) to Kafka tables ,0,clickhouse,,, +clickhouse.kafka.messages.failed.count,count,,,,Number of Kafka messages ClickHouse failed to parse,0,clickhouse,,, +clickhouse.kafka.messages.failed.total,gauge,,,,Number of Kafka messages ClickHouse failed to parse,0,clickhouse,,, +clickhouse.kafka.messages.polled.count,count,,,,Number of Kafka messages polled from librdkafka to ClickHouse,0,clickhouse,,, +clickhouse.kafka.messages.polled.total,gauge,,,,Number of Kafka messages polled from librdkafka to ClickHouse,0,clickhouse,,, +clickhouse.kafka.messages.produced.count,count,,,,Number of messages produced to Kafka,0,clickhouse,,, +clickhouse.kafka.messages.produced.total,gauge,,,,Number of messages produced to Kafka,0,clickhouse,,, +clickhouse.kafka.messages.read.count,count,,,,Number of Kafka messages already processed by ClickHouse,0,clickhouse,,, +clickhouse.kafka.messages.read.total,gauge,,,,Number of Kafka messages already processed by ClickHouse,0,clickhouse,,, +clickhouse.kafka.partitions.assigned,gauge,,,,Number of partitions Kafka tables currently assigned to,0,clickhouse,,, +clickhouse.kafka.producer.errors.count,count,,,,Number of errors during producing the messages to Kafka,0,clickhouse,,, +clickhouse.kafka.producer.errors.total,gauge,,,,Number of errors during producing the messages to Kafka,0,clickhouse,,, +clickhouse.kafka.producer.flushes.count,count,,,,Number of explicit flushes to Kafka producer,0,clickhouse,,, +clickhouse.kafka.producer.flushes.total,gauge,,,,Number of explicit flushes to Kafka producer,0,clickhouse,,, +clickhouse.kafka.producers.active,gauge,,,,Number of active Kafka producer created,0,clickhouse,,, +clickhouse.kafka.rebalance.assignments.count,count,,,,Number of partition assignments (the final stage of consumer group rebalance),0,clickhouse,,, +clickhouse.kafka.rebalance.assignments.total,gauge,,,,Number of partition assignments (the final stage of consumer group rebalance),0,clickhouse,,, +clickhouse.kafka.rebalance.errors.count,count,,,,Number of failed consumer group rebalances,0,clickhouse,,, +clickhouse.kafka.rebalance.errors.total,gauge,,,,Number of failed consumer group rebalances,0,clickhouse,,, +clickhouse.kafka.rebalance.revocations.count,count,,,,Number of partition revocations (the first stage of consumer group rebalance),0,clickhouse,,, +clickhouse.kafka.rebalance.revocations.total,gauge,,,,Number of partition revocations (the first stage of consumer group rebalance),0,clickhouse,,, +clickhouse.kafka.rows.read.count,count,,,,Number of rows parsed from Kafka messages,0,clickhouse,,, +clickhouse.kafka.rows.read.total,gauge,,,,Number of rows parsed from Kafka messages,0,clickhouse,,, +clickhouse.kafka.rows.rejected.count,count,,,,Number of parsed rows which were later rejected (due to rebalances / errors or similar reasons). Those rows will be consumed again after the rebalance.,0,clickhouse,,, +clickhouse.kafka.rows.rejected.total,gauge,,,,Number of parsed rows which were later rejected (due to rebalances / errors or similar reasons). Those rows will be consumed again after the rebalance.,0,clickhouse,,, +clickhouse.kafka.rows.written.count,count,,,,Number of rows inserted into Kafka tables,0,clickhouse,,, +clickhouse.kafka.rows.written.total,gauge,,,,Number of rows inserted into Kafka tables,0,clickhouse,,, +clickhouse.kafkta.table.writes.count,count,,,,Number of writes (inserts) to Kafka tables,0,clickhouse,,, +clickhouse.kafkta.table.writes.total,gauge,,,,Number of writes (inserts) to Kafka tables,0,clickhouse,,, +clickhouse.keeper.cache.hit.count,count,,,,Number of times an object storage metadata request was answered from cache without making request to Keeper,0,clickhouse,,, +clickhouse.keeper.cache.hit.total,gauge,,,,Number of times an object storage metadata request was answered from cache without making request to Keeper,0,clickhouse,,, +clickhouse.keeper.cache.miss.count,count,,,,Number of times an object storage metadata request had to be answered from Keeper,0,clickhouse,,, +clickhouse.keeper.cache.miss.total,gauge,,,,Number of times an object storage metadata request had to be answered from Keeper,0,clickhouse,,, +clickhouse.keeper.cache.update.time,gauge,,microsecond,,Total time spent in updating the cache including waiting for responses from Keeper,0,clickhouse,,, +clickhouse.keeper.check.requests.count,count,,,,Number of check requests,0,clickhouse,,, +clickhouse.keeper.check.requests.total,gauge,,,,Number of check requests,0,clickhouse,,, +clickhouse.keeper.commits.count,count,,,,Number of successful commits,0,clickhouse,,, +clickhouse.keeper.commits.failed.count,count,,,,Number of failed commits,0,clickhouse,,, +clickhouse.keeper.commits.failed.total,gauge,,,,Number of failed commits,0,clickhouse,,, +clickhouse.keeper.commits.total,gauge,,,,Number of successful commits,0,clickhouse,,, +clickhouse.keeper.create.requests.count,count,,,,Number of create requests,0,clickhouse,,, +clickhouse.keeper.create.requests.total,gauge,,,,Number of create requests,0,clickhouse,,, +clickhouse.keeper.exists.requests.count,count,,,,Number of exists requests,0,clickhouse,,, +clickhouse.keeper.exists.requests.total,gauge,,,,Number of exists requests,0,clickhouse,,, +clickhouse.keeper.get.requests.count,count,,,,Number of get requests,0,clickhouse,,, +clickhouse.keeper.get.requests.total,gauge,,,,Number of get requests,0,clickhouse,,, +clickhouse.keeper.latency.count,count,,,,Keeper latency,0,clickhouse,,, +clickhouse.keeper.latency.total,gauge,,,,Keeper latency,0,clickhouse,,, +clickhouse.keeper.list.requests.count,count,,,,Number of list requests,0,clickhouse,,, +clickhouse.keeper.list.requests.total,gauge,,,,Number of list requests,0,clickhouse,,, +clickhouse.keeper.log_entry.file.prefetched.count,count,,,,Number of log entries in Keeper being prefetched from the changelog file,0,clickhouse,,, +clickhouse.keeper.log_entry.file.prefetched.total,gauge,,,,Number of log entries in Keeper being prefetched from the changelog file,0,clickhouse,,, +clickhouse.keeper.log_entry.file.read.count,count,,,,Number of log entries in Keeper being read directly from the changelog file,0,clickhouse,,, +clickhouse.keeper.log_entry.file.read.total,gauge,,,,Number of log entries in Keeper being read directly from the changelog file,0,clickhouse,,, +clickhouse.keeper.multi.requests.count,count,,,,Number of multi requests,0,clickhouse,,, +clickhouse.keeper.multi.requests.total,gauge,,,,Number of multi requests,0,clickhouse,,, +clickhouse.keeper.multi_read.requests.count,count,,,,Number of multi read requests,0,clickhouse,,, +clickhouse.keeper.multi_read.requests.total,gauge,,,,Number of multi read requests,0,clickhouse,,, +clickhouse.keeper.packets.received.count,count,,,,Packets received by keeper server,0,clickhouse,,, +clickhouse.keeper.packets.received.total,gauge,,,,Packets received by keeper server,0,clickhouse,,, +clickhouse.keeper.packets.sent.count,count,,,,Packets sent by keeper server,0,clickhouse,,, +clickhouse.keeper.packets.sent.total,gauge,,,,Packets sent by keeper server,0,clickhouse,,, +clickhouse.keeper.reconfig.requests.count,count,,,,Number of reconfig requests,0,clickhouse,,, +clickhouse.keeper.reconfig.requests.total,gauge,,,,Number of reconfig requests,0,clickhouse,,, +clickhouse.keeper.reconnects.count,count,,,,Number of times a reconnect to Keeper was done,0,clickhouse,,, +clickhouse.keeper.reconnects.total,gauge,,,,Number of times a reconnect to Keeper was done,0,clickhouse,,, +clickhouse.keeper.remove.requests.count,count,,,,Number of remove requests,0,clickhouse,,, +clickhouse.keeper.remove.requests.total,gauge,,,,Number of remove requests,0,clickhouse,,, +clickhouse.keeper.requests.count,count,,,,Number of times a request was made to Keeper,0,clickhouse,,, +clickhouse.keeper.requests.total,gauge,,,,Number of times a request was made to Keeper,0,clickhouse,,, +clickhouse.keeper.requests.total.count,count,,,,Total requests number on keeper server,0,clickhouse,,, +clickhouse.keeper.requests.total.total,gauge,,,,Total requests number on keeper server,0,clickhouse,,, +clickhouse.keeper.set.requests.count,count,,,,Number of set requests,0,clickhouse,,, +clickhouse.keeper.set.requests.total,gauge,,,,Number of set requests,0,clickhouse,,, +clickhouse.keeper.snapshot.apply.count,count,,,,Number of snapshot applying,0,clickhouse,,, +clickhouse.keeper.snapshot.apply.failed.count,count,,,,Number of failed snapshot applying,0,clickhouse,,, +clickhouse.keeper.snapshot.apply.failed.total,gauge,,,,Number of failed snapshot applying,0,clickhouse,,, +clickhouse.keeper.snapshot.apply.total,gauge,,,,Number of snapshot applying,0,clickhouse,,, +clickhouse.keeper.snapshot.create.count,count,,,,Number of snapshots creations,0,clickhouse,,, +clickhouse.keeper.snapshot.create.failed.count,count,,,,Number of failed snapshot creations,0,clickhouse,,, +clickhouse.keeper.snapshot.create.failed.total,gauge,,,,Number of failed snapshot creations,0,clickhouse,,, +clickhouse.keeper.snapshot.create.total,gauge,,,,Number of snapshots creations,0,clickhouse,,, +clickhouse.keeper.snapshot.read.count,count,,,,Number of snapshot read(serialization),0,clickhouse,,, +clickhouse.keeper.snapshot.read.total,gauge,,,,Number of snapshot read(serialization),0,clickhouse,,, +clickhouse.keeper.snapshot.save.count,count,,,,Number of snapshot save,0,clickhouse,,, +clickhouse.keeper.snapshot.save.total,gauge,,,,Number of snapshot save,0,clickhouse,,, +clickhouse.keerper.snapshot.create.failed.count,count,,,,Number of failed snapshot creations - To be deprecated,0,clickhouse,,, +clickhouse.keerper.snapshot.create.failed.total,gauge,,,,Number of failed snapshot creations - To be deprecated,0,clickhouse,,, +clickhouse.lock.context.acquisition.count,count,,event,,The number of times the lock of Context was acquired or tried to acquire during the last interval. This is global lock.,0,clickhouse,,, +clickhouse.lock.context.acquisition.total,gauge,,event,,The total number of times the lock of Context was acquired or tried to acquire. This is global lock.,0,clickhouse,,, +clickhouse.lock.context.wait_time.count,count,,,,Context lock wait time in microseconds,0,clickhouse,,, +clickhouse.lock.context.wait_time.total,gauge,,,,Context lock wait time in microseconds,0,clickhouse,,, +clickhouse.lock.read.rwlock.acquired.count,count,,,,Number of times a read lock was acquired (in a heavy RWLock).,0,clickhouse,,, +clickhouse.lock.read.rwlock.acquired.time,gauge,,microsecond,,Total time spent waiting for a read lock to be acquired (in a heavy RWLock).,0,clickhouse,,, +clickhouse.lock.read.rwlock.acquired.total,gauge,,,,Number of times a read lock was acquired (in a heavy RWLock).,0,clickhouse,,, +clickhouse.lock.write.rwlock.acquired.count,count,,,,Number of times a write lock was acquired (in a heavy RWLock).,0,clickhouse,,, +clickhouse.lock.write.rwlock.acquired.time,gauge,,microsecond,,Total time spent waiting for a write lock to be acquired (in a heavy RWLock).,0,clickhouse,,, +clickhouse.lock.write.rwlock.acquired.total,gauge,,,,Number of times a write lock was acquired (in a heavy RWLock).,0,clickhouse,,, +clickhouse.log.entry.merge.created.count,count,,event,,Successfully created log entry to merge parts in ReplicatedMergeTree.,0,clickhouse,,, +clickhouse.log.entry.merge.created.total,gauge,,event,,Total successfully created log entryies to merge parts in ReplicatedMergeTree.,0,clickhouse,,, +clickhouse.log.entry.merge.not_created.count,count,,event,,Log entry to merge parts in ReplicatedMergeTree is not created due to concurrent log update by another replica.,0,clickhouse,,, +clickhouse.log.entry.merge.not_created.total,gauge,,event,,Total log entries to merge parts in ReplicatedMergeTree not created due to concurrent log update by another replica.,0,clickhouse,,, +clickhouse.log.entry.mutation.created.count,count,,event,,Successfully created log entry to mutate parts in ReplicatedMergeTree.,0,clickhouse,,, +clickhouse.log.entry.mutation.created.total,gauge,,event,,Total successfully created log entry to mutate parts in ReplicatedMergeTree.,0,clickhouse,,, +clickhouse.log.entry.mutation.not_created.count,count,,event,,Log entry to mutate parts in ReplicatedMergeTree is not created due to concurrent log update by another replica.,0,clickhouse,,, +clickhouse.log.entry.mutation.not_created.total,gauge,,event,,Total log entries to mutate parts in ReplicatedMergeTree not created due to concurrent log update by another replica.,0,clickhouse,,, +clickhouse.log.messages.debug.count,count,,,,Number of log messages with level Debug,0,clickhouse,,, +clickhouse.log.messages.debug.total,gauge,,,,Number of log messages with level Debug,0,clickhouse,,, +clickhouse.log.messages.error.count,count,,,,Number of log messages with level Error,0,clickhouse,,, +clickhouse.log.messages.error.total,gauge,,,,Number of log messages with level Error,0,clickhouse,,, +clickhouse.log.messages.fatal.count,count,,,,Number of log messages with level Fatal,0,clickhouse,,, +clickhouse.log.messages.fatal.total,gauge,,,,Number of log messages with level Fatal,0,clickhouse,,, +clickhouse.log.messages.info.count,count,,,,Number of log messages with level Info,0,clickhouse,,, +clickhouse.log.messages.info.total,gauge,,,,Number of log messages with level Info,0,clickhouse,,, +clickhouse.log.messages.test.count,count,,,,Number of log messages with level Test,0,clickhouse,,, +clickhouse.log.messages.test.total,gauge,,,,Number of log messages with level Test,0,clickhouse,,, +clickhouse.log.messages.trace.count,count,,,,Number of log messages with level Trace,0,clickhouse,,, +clickhouse.log.messages.trace.total,gauge,,,,Number of log messages with level Trace,0,clickhouse,,, +clickhouse.log.messages.warning.count,count,,,,Number of log messages with level Warning,0,clickhouse,,, +clickhouse.log.messages.warning.total,gauge,,,,Number of log messages with level Warning,0,clickhouse,,, +clickhouse.marks.load.time,gauge,,microsecond,,Time spent loading marks,0,clickhouse,,, +clickhouse.marks.loaded.bytes.count,count,,,,Size of in-memory representations of loaded marks.,0,clickhouse,,, +clickhouse.marks.loaded.bytes.total,gauge,,,,Size of in-memory representations of loaded marks.,0,clickhouse,,, +clickhouse.marks.loaded.count.count,count,,,,Number of marks loaded (total across columns).,0,clickhouse,,, +clickhouse.marks.loaded.count.total,gauge,,,,Number of marks loaded (total across columns).,0,clickhouse,,, +clickhouse.memory.allocator.purge.count,count,,,,Total number of times memory allocator purge was requested,0,clickhouse,,, +clickhouse.memory.allocator.purge.time,gauge,,microsecond,,Total number of times memory allocator purge was requested,0,clickhouse,,, +clickhouse.memory.allocator.purge.total,gauge,,,,Total number of times memory allocator purge was requested,0,clickhouse,,, +clickhouse.memory.allocator.purge.wait.time,gauge,,microsecond,,Total time spent in waiting for memory to be freed in OvercommitTracker.,0,clickhouse,,, +clickhouse.memory.arena.bytes.count,count,,byte,,Number of bytes allocated for memory Arena (used for GROUP BY and similar operations),0,clickhouse,,, +clickhouse.memory.arena.bytes.total,gauge,,byte,,Number of bytes allocated for memory Arena (used for GROUP BY and similar operations),0,clickhouse,,, +clickhouse.memory.arena.chunks.count,count,,,,Number of chunks allocated for memory Arena (used for GROUP BY and similar operations),0,clickhouse,,, +clickhouse.memory.arena.chunks.total,gauge,,,,Number of chunks allocated for memory Arena (used for GROUP BY and similar operations),0,clickhouse,,, +clickhouse.memory.external.join.files.merged.count,count,,,,Number of times temporary files were merged for JOIN in external memory.,0,clickhouse,,, +clickhouse.memory.external.join.files.merged.total,gauge,,,,Number of times temporary files were merged for JOIN in external memory.,0,clickhouse,,, +clickhouse.memory.external.join.files.num_written.count,count,,,,Number of times a temporary file was written to disk for JOIN in external memory.,0,clickhouse,,, +clickhouse.memory.external.join.files.num_written.total,gauge,,,,Number of times a temporary file was written to disk for JOIN in external memory.,0,clickhouse,,, +clickhouse.memory.external.sort.files.num_written.count,count,,,,Number of times a temporary file was written to disk for sorting in external memory.,0,clickhouse,,, +clickhouse.memory.external.sort.files.num_written.total,gauge,,,,Number of times a temporary file was written to disk for sorting in external memory.,0,clickhouse,,, +clickhouse.merge.active,gauge,,merge,,The number of executing background merges,0,clickhouse,,, +clickhouse.merge.count,count,,merge,,The number of launched background merges during the last interval.,0,clickhouse,,, +clickhouse.merge.disk.reserved,gauge,,byte,,Disk space reserved for currently running background merges. It is slightly more than the total size of currently merging parts.,0,clickhouse,,, +clickhouse.merge.memory,gauge,,byte,,Total amount of memory allocated for background merges. Included in MemoryTrackingInBackgroundProcessingPool. Note that this value may include a drift when the memory was allocated in a context of background processing pool and freed in other context or vice-versa. This happens naturally due to caches for tables indexes and doesn't indicate memory leaks.,0,clickhouse,,, +clickhouse.merge.parts.compact.count,count,,,,Number of parts merged into Compact format.,0,clickhouse,,, +clickhouse.merge.parts.compact.total,gauge,,,,Number of parts merged into Compact format.,0,clickhouse,,, +clickhouse.merge.parts.wide.count,count,,,,Number of parts merged into Wide format.,0,clickhouse,,, +clickhouse.merge.parts.wide.total,gauge,,,,Number of parts merged into Wide format.,0,clickhouse,,, +clickhouse.merge.read.size.uncompressed.count,count,,byte,,The number of uncompressed bytes (for columns as they are stored in memory) that was read for background merges during the last interval. This is the number before merge.,0,clickhouse,,, +clickhouse.merge.read.size.uncompressed.total,gauge,,byte,,The total number of uncompressed bytes (for columns as they are stored in memory) that was read for background merges. This is the number before merge.,0,clickhouse,,, +clickhouse.merge.row.read.count,count,,row,,The number of rows read for background merges during the last interval. This is the number of rows before merge.,0,clickhouse,,, +clickhouse.merge.row.read.total,gauge,,row,,The total number of rows read for background merges. This is the number of rows before merge.,0,clickhouse,,, +clickhouse.merge.time,gauge,,percent,,The percentage of time spent for background merges during the last interval.,0,clickhouse,,, +clickhouse.merge.total,gauge,,merge,,The total number of launched background merges.,0,clickhouse,,, +clickhouse.merge_tree.announcements.sent,gauge,,,,The number of announcements sent from the remote server to the initiator server about the set of data parts (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, +clickhouse.merge_tree.read_task.requests.sent,gauge,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, +clickhouse.merges_mutations.bytes.total,gauge,,,,Total amount of memory (bytes) allocated by background tasks (merges and mutations).,0,clickhouse,,, +clickhouse.mmapped.file.current,gauge,,file,,Total number of mmapped files.,0,clickhouse,,, +clickhouse.mmapped.file.size,gauge,,byte,,Sum size of mmapped file regions.,0,clickhouse,,, +clickhouse.moves.executing.currently,gauge,,,,Number of currently executing moves,0,clickhouse,,, +clickhouse.network.receive.elapsed.time,gauge,,microsecond,,Total time spent waiting for data to receive or receiving data from the network.,0,clickhouse,,, +clickhouse.network.receive.size.count,count,,byte,second,The number of bytes received from network.,0,clickhouse,,, +clickhouse.network.receive.size.total,gauge,,byte,second,The total number of bytes received from network.,0,clickhouse,,, +clickhouse.network.send.elapsed.time,gauge,,microsecond,,Total time spent waiting for data to send to network or sending data to network.,0,clickhouse,,, +clickhouse.network.send.size.count,count,,byte,,The number of bytes sent to the network.,0,clickhouse,,, +clickhouse.network.send.size.total,gauge,,byte,,The total number of bytes sent to the network.,0,clickhouse,,, +clickhouse.network.threads.receive,gauge,,thread,,Number of threads receiving data from the network.,0,clickhouse,,, +clickhouse.network.threads.send,gauge,,thread,,Number of threads sending data to the network.,0,clickhouse,,, +clickhouse.node.remove.count,count,,error,,"The number of times an error happened while trying to remove ephemeral node during the last interval. This is usually not an issue, because ClickHouse's implementation of ZooKeeper library guarantees that the session will expire and the node will be removed.",0,clickhouse,,, +clickhouse.node.remove.total,gauge,,error,,"The total number of times an error happened while trying to remove ephemeral node. This is usually not an issue, because ClickHouse's implementation of ZooKeeper library guarantees that the session will expire and the node will be removed.",0,clickhouse,,, +clickhouse.part.max,gauge,,item,,The maximum number of active parts in partitions.,0,clickhouse,,, +clickhouse.parts.active,gauge,,item,,[Only versions >= 22.7.1] Active data part used by current and upcoming SELECTs.,0,clickhouse,,, +clickhouse.parts.committed,gauge,,item,,"Active data part, used by current and upcoming SELECTs.",0,clickhouse,,, +clickhouse.parts.compact,gauge,,item,,Compact parts.,0,clickhouse,,, +clickhouse.parts.compact.inserted.count,count,,item,,Number of parts inserted in Compact format.,0,clickhouse,,, +clickhouse.parts.compact.inserted.total,gauge,,item,,Number of parts inserted in Compact format.,0,clickhouse,,, +clickhouse.parts.delete_on_destroy,gauge,,item,,Part was moved to another disk and should be deleted in own destructor.,0,clickhouse,,, +clickhouse.parts.deleting,gauge,,item,,"Not active data part with identity refcounter, it is deleting right now by a cleaner.",0,clickhouse,,, +clickhouse.parts.inmemory,gauge,,item,,In-memory parts.,0,clickhouse,,, +clickhouse.parts.mutations.applied.fly.count,count,,,,Total number of parts for which there was any mutation applied on fly,0,clickhouse,,, +clickhouse.parts.mutations.applied.fly.total,gauge,,,,Total number of parts for which there was any mutation applied on fly,0,clickhouse,,, +clickhouse.parts.outdated,gauge,,item,,"Not active data part, but could be used by only current SELECTs, could be deleted after SELECTs finishes.",0,clickhouse,,, +clickhouse.parts.pre_active,gauge,,item,,[Only versions >= 22.7.1] The part is in data_parts but not used for SELECTs.,0,clickhouse,,, +clickhouse.parts.precommitted,gauge,,item,,"The part is in data_parts, but not used for SELECTs.",0,clickhouse,,, +clickhouse.parts.temporary,gauge,,item,,"The part is generating now, it is not in data_parts list.",0,clickhouse,,, +clickhouse.parts.wide,gauge,,item,,Wide parts.,0,clickhouse,,, +clickhouse.parts.wide.inserted.count,count,,,,Number of parts inserted in Wide format.,0,clickhouse,,, +clickhouse.parts.wide.inserted.total,gauge,,,,Number of parts inserted in Wide format.,0,clickhouse,,, +clickhouse.perf.alignment.faults.count,count,,event,,Number of alignment faults. These happen when unaligned memory accesses happen; the kernel can handle these but it reduces performance. This happens only on some architectures (never on x86).,0,clickhouse,,, +clickhouse.perf.alignment.faults.total,gauge,,event,,Total number of alignment faults. These happen when unaligned memory accesses happen; the kernel can handle these but it reduces performance. This happens only on some architectures (never on x86).,0,clickhouse,,, +clickhouse.perf.branch.instructions.count,count,,unit,,"Retired branch instructions. Prior to Linux 2.6.35, this used the wrong event on AMD processors.",0,clickhouse,,, +clickhouse.perf.branch.instructions.total,gauge,,unit,,"Total retired branch instructions. Prior to Linux 2.6.35, this used the wrong event on AMD processors.",0,clickhouse,,, +clickhouse.perf.branch.misses.count,count,,unit,,Mispredicted branch instructions.,0,clickhouse,,, +clickhouse.perf.branch.misses.total,gauge,,unit,,Total mispredicted branch instructions.,0,clickhouse,,, +clickhouse.perf.bus.cycles.count,count,,unit,,"Bus cycles, which can be different from total cycles.",0,clickhouse,,, +clickhouse.perf.bus.cycles.total,gauge,,unit,,"Total bus cycles, which can be different from total cycles.",0,clickhouse,,, +clickhouse.perf.cache.misses.count,count,,miss,,Cache misses. Usually this indicates Last Level Cache misses; this is intended to be used in conjunction with the PERFCOUNTHWCACHEREFERENCES event to calculate cache miss rates.,0,clickhouse,,, +clickhouse.perf.cache.misses.total,gauge,,miss,,Cache misses. Usually this indicates total Last Level Cache misses; this is intended to be used in conjunction with the PERFCOUNTHWCACHEREFERENCES event to calculate cache miss rates.,0,clickhouse,,, +clickhouse.perf.cache.references.count,count,,unit,,Cache accesses. Usually this indicates Last Level Cache accesses but this may vary depending on your CPU. This may include prefetches and coherency messages; again this depends on the design of your CPU.,0,clickhouse,,, +clickhouse.perf.cache.references.total,gauge,,unit,,Cache accesses. Usually this indicates total Last Level Cache accesses but this may vary depending on your CPU. This may include prefetches and coherency messages; again this depends on the design of your CPU.,0,clickhouse,,, +clickhouse.perf.context.switches.count,count,,,,Number of context switches,0,clickhouse,,, +clickhouse.perf.context.switches.total,gauge,,,,Total number of context switches,0,clickhouse,,, +clickhouse.perf.cpu.clock,gauge,,unit,,"The CPU clock, a high-resolution per-CPU timer.",0,clickhouse,,, +clickhouse.perf.cpu.cycles.count,count,,unit,,CPU cycles. Be wary of what happens during CPU frequency scaling.,0,clickhouse,,, +clickhouse.perf.cpu.cycles.total,gauge,,unit,,Total CPU cycles. Be wary of what happens during CPU frequency scaling.,0,clickhouse,,, +clickhouse.perf.cpu.migrations.count,count,,unit,,Number of times the process has migrated to a new CPU,0,clickhouse,,, +clickhouse.perf.cpu.migrations.total,gauge,,unit,,Total number of times the process has migrated to a new CPU,0,clickhouse,,, +clickhouse.perf.cpu.ref_cycles.count,count,,unit,,CPU cycles; not affected by CPU frequency scaling.,0,clickhouse,,, +clickhouse.perf.cpu.ref_cycles.total,gauge,,unit,,Total cycles; not affected by CPU frequency scaling.,0,clickhouse,,, +clickhouse.perf.data.tlb.misses.count,count,,miss,,Data TLB misses,0,clickhouse,,, +clickhouse.perf.data.tlb.misses.total,gauge,,miss,,Total data TLB misses,0,clickhouse,,, +clickhouse.perf.data.tlb.references.count,count,,unit,,Data TLB references,0,clickhouse,,, +clickhouse.perf.data.tlb.references.total,gauge,,unit,,Total data TLB references,0,clickhouse,,, +clickhouse.perf.emulation.faults.count,count,,fault,,Number of emulation faults. The kernel sometimes traps on unimplemented instructions and emulates them for user space. This can negatively impact performance.,0,clickhouse,,, +clickhouse.perf.emulation.faults.total,gauge,,fault,,Total number of emulation faults. The kernel sometimes traps on unimplemented instructions and emulates them for user space. This can negatively impact performance.,0,clickhouse,,, +clickhouse.perf.instruction.tlb.misses.count,count,,miss,,Instruction TLB misses,0,clickhouse,,, +clickhouse.perf.instruction.tlb.misses.total,gauge,,miss,,Total instruction TLB misses,0,clickhouse,,, +clickhouse.perf.instruction.tlb.references.count,count,,unit,,Instruction TLB references,0,clickhouse,,, +clickhouse.perf.instruction.tlb.references.total,gauge,,unit,,Total instruction TLB references,0,clickhouse,,, +clickhouse.perf.instructions.count,count,,unit,,"Retired instructions. Be careful, these can be affected by various issues, most notably hardware interrupt counts.",0,clickhouse,,, +clickhouse.perf.instructions.total,gauge,,unit,,"Total retired instructions. Be careful, these can be affected by various issues, most notably hardware interrupt counts.",0,clickhouse,,, +clickhouse.perf.local_memory.misses.count,count,,miss,,Local NUMA node memory read misses,0,clickhouse,,, +clickhouse.perf.local_memory.misses.total,gauge,,miss,,Total local NUMA node memory read misses,0,clickhouse,,, +clickhouse.perf.local_memory.references.count,count,,unit,,Local NUMA node memory reads,0,clickhouse,,, +clickhouse.perf.local_memory.references.total,gauge,,unit,,Total local NUMA node memory reads,0,clickhouse,,, +clickhouse.perf.min_enabled.min_time,gauge,,microsecond,,"For all events, minimum time that an event was enabled. Used to track event multiplexing influence.",0,clickhouse,,, +clickhouse.perf.min_enabled.running_time,gauge,,microsecond,,Running time for event with minimum enabled time. Used to track the amount of event multiplexing,0,clickhouse,,, +clickhouse.perf.stalled_cycles.backend.count,count,,unit,,Stalled cycles during retirement.,0,clickhouse,,, +clickhouse.perf.stalled_cycles.backend.total,gauge,,unit,,Total stalled cycles during retirement.,0,clickhouse,,, +clickhouse.perf.stalled_cycles.frontend.count,count,,unit,,Stalled cycles during issue.,0,clickhouse,,, +clickhouse.perf.stalled_cycles.frontend.total,gauge,,unit,,Total stalled cycles during issue.,0,clickhouse,,, +clickhouse.perf.task.clock,gauge,,,,A clock count specific to the task that is running,0,clickhouse,,, +clickhouse.pool.polygon.added.count,count,,,,A polygon has been added to the cache (pool) for the 'pointInPolygon' function.,0,clickhouse,,, +clickhouse.pool.polygon.added.total,gauge,,,,A polygon has been added to the cache (pool) for the 'pointInPolygon' function.,0,clickhouse,,, +clickhouse.pool.polygon.bytes.count,count,,,,The number of bytes for polygons added to the cache (pool) for the 'pointInPolygon' function.,0,clickhouse,,, +clickhouse.pool.polygon.bytes.total,gauge,,,,The number of bytes for polygons added to the cache (pool) for the 'pointInPolygon' function.,0,clickhouse,,, +clickhouse.postgresql.connection,gauge,,connection,,Number of client connections using PostgreSQL protocol,0,clickhouse,,, +clickhouse.processing.external.files.total.count,count,,,,Number of files used by external processing (sorting/aggragating/joining),0,clickhouse,,, +clickhouse.processing.external.files.total.total,gauge,,,,Number of files used by external processing (sorting/aggragating/joining),0,clickhouse,,, +clickhouse.queries.read.new_parts.ignored.count,count,,,,See setting ignore_cold_parts_seconds. Number of times read queries ignored very new parts that weren't pulled into cache by CacheWarmer yet.,0,clickhouse,,, +clickhouse.queries.read.new_parts.ignored.total,gauge,,,,See setting ignore_cold_parts_seconds. Number of times read queries ignored very new parts that weren't pulled into cache by CacheWarmer yet.,0,clickhouse,,, +clickhouse.queries.read.outdated.parts.count,count,,,,See setting prefer_warmed_unmerged_parts_seconds. Number of times read queries used outdated pre-merge parts that are in cache instead of merged part that wasn't pulled into cache by CacheWarmer yet.,0,clickhouse,,, +clickhouse.queries.read.outdated.parts.total,gauge,,,,See setting prefer_warmed_unmerged_parts_seconds. Number of times read queries used outdated pre-merge parts that are in cache instead of merged part that wasn't pulled into cache by CacheWarmer yet.,0,clickhouse,,, +clickhouse.query.active,gauge,,query,,The number of executing queries,0,clickhouse,,, +clickhouse.query.async.insert.bytes.count,count,,,,Data size in bytes of asynchronous INSERT queries.,0,clickhouse,,, +clickhouse.query.async.insert.bytes.total,gauge,,,,Data size in bytes of asynchronous INSERT queries.,0,clickhouse,,, +clickhouse.query.async.insert.count,count,,,,"Same as InsertQuery, but only for asynchronous INSERT queries.",0,clickhouse,,, +clickhouse.query.async.insert.failed.count,count,,,,Number of failed ASYNC INSERT queries.,0,clickhouse,,, +clickhouse.query.async.insert.failed.total,gauge,,,,Number of failed ASYNC INSERT queries.,0,clickhouse,,, +clickhouse.query.async.insert.hash_id.duplicate.count,count,,,,Number of times a duplicate hash id has been found in asynchronous INSERT hash id cache.,0,clickhouse,,, +clickhouse.query.async.insert.hash_id.duplicate.total,gauge,,,,Number of times a duplicate hash id has been found in asynchronous INSERT hash id cache.,0,clickhouse,,, +clickhouse.query.async.insert.rows.count,count,,,,Number of rows inserted by asynchronous INSERT queries.,0,clickhouse,,, +clickhouse.query.async.insert.rows.total,gauge,,,,Number of rows inserted by asynchronous INSERT queries.,0,clickhouse,,, +clickhouse.query.async.insert.total,gauge,,,,"Same as InsertQuery, but only for asynchronous INSERT queries.",0,clickhouse,,, +clickhouse.query.async.loader.wait.time,gauge,,microsecond,,Total time a query was waiting for async loader jobs.,0,clickhouse,,, +clickhouse.query.count,count,,query,,"The number of queries to be interpreted and potentially executed during the last interval. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.",0,clickhouse,,, +clickhouse.query.failed.count,count,,query,,Number of failed queries.,0,clickhouse,,, +clickhouse.query.failed.total,gauge,,query,,Total number of failed queries.,0,clickhouse,,, +clickhouse.query.initial.count,count,,,,"Same as Query, but only counts initial queries (see is_initial_query).",0,clickhouse,,, +clickhouse.query.initial.total,gauge,,,,"Same as Query, but only counts initial queries (see is_initial_query).",0,clickhouse,,, +clickhouse.query.insert.count,count,,query,,"The number of INSERT queries to be interpreted and potentially executed during the last interval. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.",0,clickhouse,,, +clickhouse.query.insert.delayed,gauge,,query,,The number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table.,-1,clickhouse,,, +clickhouse.query.insert.failed.count,count,,query,,"Same as FailedQuery, but only for INSERT queries.",0,clickhouse,,, +clickhouse.query.insert.failed.total,gauge,,query,,"Same as FailedQuery, but only for INSERT queries.",0,clickhouse,,, +clickhouse.query.insert.subqueries.count,count,,,,Count INSERT queries with all subqueries,0,clickhouse,,, +clickhouse.query.insert.subqueries.total,gauge,,,,Count INSERT queries with all subqueries,0,clickhouse,,, +clickhouse.query.insert.total,gauge,,query,,"The total number of INSERT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.",0,clickhouse,,, +clickhouse.query.local_timers.active,gauge,,,,Number of Created thread local timers in QueryProfiler,0,clickhouse,,, +clickhouse.query.mask.match.count,count,,occurrence,,The number of times query masking rules were successfully matched during the last interval.,0,clickhouse,,, +clickhouse.query.mask.match.total,gauge,,occurrence,,The total number of times query masking rules were successfully matched.,0,clickhouse,,, +clickhouse.query.memory,gauge,,byte,,Total amount of memory allocated in currently executing queries. Note that some memory allocations may not be accounted.,0,clickhouse,,, +clickhouse.query.memory.limit_exceeded.count,count,,,,Number of times when memory limit exceeded for query.,0,clickhouse,,, +clickhouse.query.memory.limit_exceeded.total,gauge,,,,Total number of times when memory limit exceeded for query.,0,clickhouse,,, +clickhouse.query.mutation,gauge,,query,,The number of mutations (ALTER DELETE/UPDATE),0,clickhouse,,, +clickhouse.query.other.time,gauge,,microsecond,,Total time of queries that are not SELECT or INSERT.,0,clickhouse,,, +clickhouse.query.overflow.any.count,count,,,,Number of times approximate GROUP BY was in effect: when aggregation was performed only on top of first 'max_rows_to_group_by' unique keys and other keys were ignored due to 'group_by_overflow_mode' = 'any'.,0,clickhouse,,, +clickhouse.query.overflow.any.total,gauge,,,,Number of times approximate GROUP BY was in effect: when aggregation was performed only on top of first 'max_rows_to_group_by' unique keys and other keys were ignored due to 'group_by_overflow_mode' = 'any'.,0,clickhouse,,, +clickhouse.query.overflow.break.count,count,,,,"Number of times, data processing was cancelled by query complexity limitation with setting '*_overflow_mode' = 'break' and the result is incomplete.",0,clickhouse,,, +clickhouse.query.overflow.break.total,gauge,,,,"Number of times, data processing was cancelled by query complexity limitation with setting '*_overflow_mode' = 'break' and the result is incomplete.",0,clickhouse,,, +clickhouse.query.overflow.throw.count,count,,,,"Number of times, data processing was cancelled by query complexity limitation with setting '*_overflow_mode' = 'throw' and exception was thrown.",0,clickhouse,,, +clickhouse.query.overflow.throw.total,gauge,,,,"Number of times, data processing was cancelled by query complexity limitation with setting '*_overflow_mode' = 'throw' and exception was thrown.",0,clickhouse,,, +clickhouse.query.profiler.runs.count,count,,,,Number of times QueryProfiler had been run.,0,clickhouse,,, +clickhouse.query.profiler.runs.total,gauge,,,,Number of times QueryProfiler had been run.,0,clickhouse,,, +clickhouse.query.read.backoff.count,count,,occurrence,,The number of times the number of query processing threads was lowered due to slow reads during the last interval.,0,clickhouse,,, +clickhouse.query.read.backoff.total,gauge,,occurrence,,The total number of times the number of query processing threads was lowered due to slow reads.,0,clickhouse,,, +clickhouse.query.select.count,count,,query,,"The number of SELECT queries to be interpreted and potentially executed during the last interval. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.",0,clickhouse,,, +clickhouse.query.select.subqueries.count,count,,,,Count SELECT queries with all subqueries,0,clickhouse,,, +clickhouse.query.select.subqueries.total,gauge,,,,Count SELECT queries with all subqueries,0,clickhouse,,, +clickhouse.query.select.time,gauge,,microsecond,,Total time of SELECT queries.,0,clickhouse,,, +clickhouse.query.select.total,gauge,,query,,"The total number of SELECT queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.",0,clickhouse,,, +clickhouse.query.signal.dropped.count,count,,occurrence,,The number of times the processing of a signal was dropped due to overrun plus the number of signals that the OS has not delivered due to overrun during the last interval.,0,clickhouse,,, +clickhouse.query.signal.dropped.total,gauge,,occurrence,,The total number of times the processing of a signal was dropped due to overrun plus the number of signals that the OS has not delivered due to overrun.,0,clickhouse,,, +clickhouse.query.sleep.time,gauge,,percent,,The percentage of time a query was sleeping to conform to the `max_network_bandwidth` setting during the last interval.,0,clickhouse,,, +clickhouse.query.subqueries.count,count,,,,Count queries with all subqueries,0,clickhouse,,, +clickhouse.query.subqueries.total,gauge,,,,Count queries with all subqueries,0,clickhouse,,, +clickhouse.query.time,gauge,,microsecond,,Total time of all queries.,0,clickhouse,,, +clickhouse.query.timers.active,gauge,,,,Number of Active thread local timers in QueryProfiler,0,clickhouse,,, +clickhouse.query.total,gauge,,query,,"The total number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries.",0,clickhouse,,, +clickhouse.query.waiting,gauge,,query,,The number of queries that are stopped and waiting due to 'priority' setting.,0,clickhouse,,, +clickhouse.read.buffer.mmap.created.count,count,,,,Number of times a read buffer using 'mmap' was created for reading data (while choosing among other read methods).,0,clickhouse,,, +clickhouse.read.buffer.mmap.created.total,gauge,,,,Number of times a read buffer using 'mmap' was created for reading data (while choosing among other read methods).,0,clickhouse,,, +clickhouse.read.buffer.mmap.failed.count,count,,,,"Number of times a read buffer with 'mmap' was attempted to be created for reading data (while choosing among other read methods), but the OS did not allow it (due to lack of filesystem support or other reasons) and we fallen back to the ordinary reading method.",0,clickhouse,,, +clickhouse.read.buffer.mmap.failed.total,gauge,,,,"Number of times a read buffer with 'mmap' was attempted to be created for reading data (while choosing among other read methods), but the OS did not allow it (due to lack of filesystem support or other reasons) and we fallen back to the ordinary reading method.",0,clickhouse,,, +clickhouse.read.buffer.o_direct.created.count,count,,,,Number of times a read buffer with O_DIRECT was created for reading data (while choosing among other read methods).,0,clickhouse,,, +clickhouse.read.buffer.o_direct.created.total,gauge,,,,Number of times a read buffer with O_DIRECT was created for reading data (while choosing among other read methods).,0,clickhouse,,, +clickhouse.read.buffer.o_direct.failed.count,count,,,,"Number of times a read buffer with O_DIRECT was attempted to be created for reading data (while choosing among other read methods), but the OS did not allow it (due to lack of filesystem support or other reasons) and we fallen back to the ordinary reading method.",0,clickhouse,,, +clickhouse.read.buffer.o_direct.failed.total,gauge,,,,"Number of times a read buffer with O_DIRECT was attempted to be created for reading data (while choosing among other read methods), but the OS did not allow it (due to lack of filesystem support or other reasons) and we fallen back to the ordinary reading method.",0,clickhouse,,, +clickhouse.read.buffer.ordinary.created.count,count,,,,Number of times ordinary read buffer was created for reading data (while choosing among other read methods).,0,clickhouse,,, +clickhouse.read.buffer.ordinary.created.total,gauge,,,,Number of times ordinary read buffer was created for reading data (while choosing among other read methods).,0,clickhouse,,, +clickhouse.read.compressed.block.count,count,,block,,"The number of compressed blocks (the blocks of data that are compressed independent of each other) read from compressed sources (files, network) during the last interval.",0,clickhouse,,, +clickhouse.read.compressed.block.total,gauge,,block,,"The total number of compressed blocks (the blocks of data that are compressed independent of each other) read from compressed sources (files, network).",0,clickhouse,,, +clickhouse.read.compressed.raw.size.count,count,,byte,,"The number of uncompressed bytes (the number of bytes after decompression) read from compressed sources (files, network) during the last interval.",0,clickhouse,,, +clickhouse.read.compressed.raw.size.total,gauge,,byte,,"The total number of uncompressed bytes (the number of bytes after decompression) read from compressed sources (files, network).",0,clickhouse,,, +clickhouse.read.compressed.size.count,count,,byte,,"The number of bytes (the number of bytes before decompression) read from compressed sources (files, network) during the last interval.",0,clickhouse,,, +clickhouse.read.compressed.size.total,gauge,,byte,,"The total number of bytes (the number of bytes before decompression) read from compressed sources (files, network).",0,clickhouse,,, +clickhouse.read.connections.new.count,count,,,,"Number of seeks which lead to new connection (s3, http)",0,clickhouse,,, +clickhouse.read.connections.new.total,gauge,,,,"Number of seeks which lead to new connection (s3, http)",0,clickhouse,,, +clickhouse.read.synchronous.wait.time,gauge,,microsecond,,Time spent in waiting for synchronous reads in asynchronous local read.,0,clickhouse,,, +clickhouse.remote.query.read_throttler.sleep.time,gauge,,microsecond,,Total time a query was sleeping to conform 'max_remote_read_network_bandwidth_for_server'/'max_remote_read_network_bandwidth' throttling.,0,clickhouse,,, +clickhouse.remote.query.write_throttler.sleep.time,gauge,,microsecond,,Total time a query was sleeping to conform 'max_remote_write_network_bandwidth_for_server'/'max_remote_write_network_bandwidth' throttling.,0,clickhouse,,, +clickhouse.remote.read.synchronous.wait.time,gauge,,microsecond,,Time spent in waiting for synchronous remote reads.,0,clickhouse,,, +clickhouse.remote.read_throttler.bytes.count,count,,,,Bytes passed through 'max_remote_read_network_bandwidth_for_server'/'max_remote_read_network_bandwidth' throttler.,0,clickhouse,,, +clickhouse.remote.read_throttler.bytes.total,gauge,,,,Bytes passed through 'max_remote_read_network_bandwidth_for_server'/'max_remote_read_network_bandwidth' throttler.,0,clickhouse,,, +clickhouse.remote.write_throttler.bytes.count,count,,,,Bytes passed through 'max_remote_write_network_bandwidth_for_server'/'max_remote_write_network_bandwidth' throttler.,0,clickhouse,,, +clickhouse.remote.write_throttler.bytes.total,gauge,,,,Bytes passed through 'max_remote_write_network_bandwidth_for_server'/'max_remote_write_network_bandwidth' throttler.,0,clickhouse,,, +clickhouse.remote_reader.total,gauge,,,,Number of read with remote reader in fly,0,clickhouse,,, +clickhouse.replica.delay.absolute,gauge,,millisecond,,The maximum replica queue delay relative to current time.,0,clickhouse,,, +clickhouse.replica.delay.relative,gauge,,millisecond,,The maximum difference of absolute delay from any other replica.,0,clickhouse,,, +clickhouse.replica.leader.election,gauge,,shard,,The number of Replicas participating in leader election. Equals to total number of replicas in usual cases.,0,clickhouse,,, +clickhouse.replica.queue.size,gauge,,task,,The number of replication tasks in queue.,0,clickhouse,,, +clickhouse.replicas.parralel.announcement.handle.time,gauge,,microsecond,,Time spent processing replicas announcements,0,clickhouse,,, +clickhouse.replicas.parralel.available.count,count,,,,Number of replicas available to execute a query with task-based parallel replicas,0,clickhouse,,, +clickhouse.replicas.parralel.available.total,gauge,,,,Number of replicas available to execute a query with task-based parallel replicas,0,clickhouse,,, +clickhouse.replicas.parralel.collect_segment.time,gauge,,microsecond,,Time spent collecting segments meant by hash,0,clickhouse,,, +clickhouse.replicas.parralel.hash.stealing.time,gauge,,microsecond,,Time spent collecting segments meant for stealing by hash,0,clickhouse,,, +clickhouse.replicas.parralel.leftover_segment.stealing.time,gauge,,microsecond,,Time spent collecting orphaned segments,0,clickhouse,,, +clickhouse.replicas.parralel.processing.time,gauge,,microsecond,,Time spent processing data parts,0,clickhouse,,, +clickhouse.replicas.parralel.request.handle.time,gauge,,microsecond,,Time spent processing requests for marks from replicas,0,clickhouse,,, +clickhouse.replicas.parralel.requests.count,count,,,,Number of requests to the initiator.,0,clickhouse,,, +clickhouse.replicas.parralel.requests.total,gauge,,,,Number of requests to the initiator.,0,clickhouse,,, +clickhouse.replicas.parralel.used.count,count,,,,Number of replicas used to execute a query with task-based parallel replicas,0,clickhouse,,, +clickhouse.replicas.parralel.used.total,gauge,,,,Number of replicas used to execute a query with task-based parallel replicas,0,clickhouse,,, +clickhouse.s3.abort_multipart_upload.count,count,,,,Number of S3 API AbortMultipartUpload calls.,0,clickhouse,,, +clickhouse.s3.abort_multipart_upload.total,gauge,,,,Number of S3 API AbortMultipartUpload calls.,0,clickhouse,,, +clickhouse.s3.client.copy.reuse.count,count,,,,Number of S3 clients copies which reuse an existing auth provider from another client.,0,clickhouse,,, +clickhouse.s3.client.copy.reuse.total,gauge,,,,Number of S3 clients copies which reuse an existing auth provider from another client.,0,clickhouse,,, +clickhouse.s3.clients.created.count,count,,,,Number of created S3 clients.,0,clickhouse,,, +clickhouse.s3.clients.created.total,gauge,,,,Number of created S3 clients.,0,clickhouse,,, +clickhouse.s3.complete_multipart_upload.count,count,,,,Number of S3 API CompleteMultipartUpload calls.,0,clickhouse,,, +clickhouse.s3.complete_multipart_upload.total,gauge,,,,Number of S3 API CompleteMultipartUpload calls.,0,clickhouse,,, +clickhouse.s3.connect.time,gauge,,microsecond,,Time spent initializing connection to S3.,0,clickhouse,,, +clickhouse.s3.copy_object.count,count,,,,Number of S3 API CopyObject calls.,0,clickhouse,,, +clickhouse.s3.copy_object.total,gauge,,,,Number of S3 API CopyObject calls.,0,clickhouse,,, +clickhouse.s3.create_multipart_upload.count,count,,,,Number of S3 API CreateMultipartUpload calls.,0,clickhouse,,, +clickhouse.s3.create_multipart_upload.total,gauge,,,,Number of S3 API CreateMultipartUpload calls.,0,clickhouse,,, +clickhouse.s3.delete_obkect.count,count,,,,Number of S3 API DeleteObject(s) calls.,0,clickhouse,,, +clickhouse.s3.delete_obkect.total,gauge,,,,Number of S3 API DeleteObject(s) calls.,0,clickhouse,,, +clickhouse.s3.get_object.count,count,,,,Number of S3 API GetObject calls.,0,clickhouse,,, +clickhouse.s3.get_object.total,gauge,,,,Number of S3 API GetObject calls.,0,clickhouse,,, +clickhouse.s3.get_object_attribute.count,count,,,,Number of S3 API GetObjectAttributes calls.,0,clickhouse,,, +clickhouse.s3.get_object_attribute.total,gauge,,,,Number of S3 API GetObjectAttributes calls.,0,clickhouse,,, +clickhouse.s3.get_request.throttled.count,count,,,,Number of S3 GET and SELECT requests passed through throttler.,0,clickhouse,,, +clickhouse.s3.get_request.throttled.time,gauge,,microsecond,,Total time a query was sleeping to conform S3 GET and SELECT request throttling.,0,clickhouse,,, +clickhouse.s3.get_request.throttled.total,gauge,,,,Number of S3 GET and SELECT requests passed through throttler.,0,clickhouse,,, +clickhouse.s3.head_object.count,count,,,,Number of S3 API HeadObject calls.,0,clickhouse,,, +clickhouse.s3.head_object.total,gauge,,,,Number of S3 API HeadObject calls.,0,clickhouse,,, +clickhouse.s3.list_object.count,count,,,,Number of S3 API ListObjects calls.,0,clickhouse,,, +clickhouse.s3.list_object.total,gauge,,,,Number of S3 API ListObjects calls.,0,clickhouse,,, +clickhouse.s3.lock_localfile_status.time,gauge,,microsecond,,Time spent to lock local file statuses,0,clickhouse,,, +clickhouse.s3.put_object.count,count,,,,Number of S3 API PutObject calls.,0,clickhouse,,, +clickhouse.s3.put_object.total,gauge,,,,Number of S3 API PutObject calls.,0,clickhouse,,, +clickhouse.s3.put_request.throttled.count,count,,,,"Number of S3 PUT, COPY, POST and LIST requests passed through throttler.",0,clickhouse,,, +clickhouse.s3.put_request.throttled.time,gauge,,microsecond,,"Total time a query was sleeping to conform S3 PUT, COPY, POST and LIST request throttling.",0,clickhouse,,, +clickhouse.s3.put_request.throttled.total,gauge,,,,"Number of S3 PUT, COPY, POST and LIST requests passed through throttler.",0,clickhouse,,, +clickhouse.s3.read.bytes.count,count,,byte,,Read bytes (incoming) in GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.bytes.total,gauge,,byte,,Total read bytes (incoming) in GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.errors.count,count,,,,Number of exceptions while reading from S3.,0,clickhouse,,, +clickhouse.s3.read.errors.total,gauge,,,,Number of exceptions while reading from S3.,0,clickhouse,,, +clickhouse.s3.read.file.time,gauge,,microsecond,,Time spent to read file data,0,clickhouse,,, +clickhouse.s3.read.requests.count,count,,request,,Number of GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.requests.errors.count,count,,error,,Number of non-throttling errors in GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.requests.errors.total,gauge,,error,,Total number of non-throttling errors in GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.requests.redirects.count,count,,unit,,Number of redirects in GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.requests.redirects.total,gauge,,unit,,Total number of redirects in GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.requests.throttling.count,count,,error,,Number of 429 and 503 errors in GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.requests.throttling.total,gauge,,error,,Total number of 429 and 503 errors in GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.requests.total,gauge,,request,,Total number of GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.s3.read.reset.count,count,,,,Number of HTTP sessions that were reset in ReadBufferFromS3.,0,clickhouse,,, +clickhouse.s3.read.reset.total,gauge,,,,Number of HTTP sessions that were reset in ReadBufferFromS3.,0,clickhouse,,, +clickhouse.s3.read.sessions.preserved..count,count,,,,Number of HTTP sessions that were preserved in ReadBufferFromS3.,0,clickhouse,,, +clickhouse.s3.read.sessions.preserved..total,gauge,,,,Number of HTTP sessions that were preserved in ReadBufferFromS3.,0,clickhouse,,, +clickhouse.s3.read.size.count,count,,,,Bytes read from S3.,0,clickhouse,,, +clickhouse.s3.read.size.total,gauge,,,,Bytes read from S3.,0,clickhouse,,, +clickhouse.s3.read.time,gauge,,microsecond,,Time spent on reading from S3.,0,clickhouse,,, +clickhouse.s3.requests.count,gauge,,request,,S3 requests count,0,clickhouse,,, +clickhouse.s3.set.file.failed.time,gauge,,microsecond,,Time spent to set file as failed,0,clickhouse,,, +clickhouse.s3.set.file.processed.time,gauge,,microsecond,,Time spent to set file as processed,0,clickhouse,,, +clickhouse.s3.set.file.processing.time,gauge,,microsecond,,Time spent to set file as processing,0,clickhouse,,, +clickhouse.s3.set_file.failed.time,gauge,,microsecond,,Time spent to set file as failed,0,clickhouse,,, +clickhouse.s3.upload_part.count,count,,,,Number of S3 API UploadPart calls.,0,clickhouse,,, +clickhouse.s3.upload_part.total,gauge,,,,Number of S3 API UploadPart calls.,0,clickhouse,,, +clickhouse.s3.upload_part_copy.count,count,,,,Number of S3 API UploadPartCopy calls.,0,clickhouse,,, +clickhouse.s3.upload_part_copy.total,gauge,,,,Number of S3 API UploadPartCopy calls.,0,clickhouse,,, +clickhouse.s3.write.bytes.count,count,,byte,,"Write bytes (outgoing) in POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.bytes.total,gauge,,byte,,"Total write bytes (outgoing) in POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.errors.count,count,,,,Number of exceptions while writing to S3.,0,clickhouse,,, +clickhouse.s3.write.errors.total,gauge,,,,Number of exceptions while writing to S3.,0,clickhouse,,, +clickhouse.s3.write.requests.count,count,,request,,"Number of POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.requests.errors.count,count,,request,,"Number of non-throttling errors in POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.requests.errors.total,gauge,,request,,"Total number of non-throttling errors in POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.requests.redirects.count,count,,request,,"Number of redirects in POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.requests.redirects.total,gauge,,request,,"Total number of redirects in POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.requests.throttling.count,count,,request,,"Number of 429 and 503 errors in POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.requests.throttling.total,gauge,,request,,"Total number of 429 and 503 errors in POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.requests.total,gauge,,request,,"Total number of POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.s3.write.size.count,count,,,,Bytes written to S3.,0,clickhouse,,, +clickhouse.s3.write.size.total,gauge,,,,Bytes written to S3.,0,clickhouse,,, +clickhouse.s3.write.time,gauge,,microsecond,,Time spent on writing to S3.,0,clickhouse,,, +clickhouse.s3.write.wait.time,gauge,,microsecond,,Time spent on waiting while some of the current requests are done when its number reached the limit defined by s3_max_inflight_parts_for_one_file.,0,clickhouse,,, +clickhouse.select.query.select.failed.count,count,,query,,"Same as FailedQuery, but only for SELECT queries.",0,clickhouse,,, +clickhouse.select.query.select.failed.total,gauge,,query,,"Same as FailedQuery, but only for SELECT queries.",0,clickhouse,,, +clickhouse.selected.bytes.count,count,,byte,,Number of bytes (uncompressed; for columns as they stored in memory) SELECTed from all tables.,0,clickhouse,,, +clickhouse.selected.bytes.total,gauge,,byte,,Total number of bytes (uncompressed; for columns as they stored in memory) SELECTed from all tables.,0,clickhouse,,, +clickhouse.selected.rows.count,count,,row,,Total number of rows SELECTed from all tables.,0,clickhouse,,, +clickhouse.selected.rows.total,gauge,,row,,Number of rows SELECTed from all tables.,0,clickhouse,,, +clickhouse.server.startup.time,gauge,,microsecond,,Time elapsed from starting server to listening to sockets in milliseconds,0,clickhouse,,, +clickhouse.sessions_pool.storage.active,gauge,,,,Total count of all sessions: stored in the pool and actively used right now for storages,0,clickhouse,,, +clickhouse.sessions_pool.storage.total,gauge,,,,Total count of sessions stored in the session pool for storages,0,clickhouse,,, +clickhouse.shard.send_query.suspend.count,count,,,,Total count when sending query to shard was suspended when async_query_sending_for_remote is enabled.,0,clickhouse,,, +clickhouse.shard.send_query.suspend.total,gauge,,,,Total count when sending query to shard was suspended when async_query_sending_for_remote is enabled.,0,clickhouse,,, +clickhouse.shared_merge_tree.fetches.total,gauge,,,,Number of fetches in progress,0,clickhouse,,, +clickhouse.shell_command.executions.count,count,,,,Number of shell command executions.,0,clickhouse,,, +clickhouse.shell_command.executions.total,gauge,,,,Number of shell command executions.,0,clickhouse,,, +clickhouse.sleep_function.sleep.time,gauge,,microsecond,,"Time spent sleeping in a sleep function (sleep, sleepEachRow).",0,clickhouse,,, +clickhouse.sqe.io_uring.inflight,gauge,,,,Number of io_uring SQEs in flight,0,clickhouse,,, +clickhouse.sqe.io_uring.waiting,gauge,,,,Number of io_uring SQEs waiting to be submitted,0,clickhouse,,, +clickhouse.sql.ordinary.function.calls.count,count,,block,,"Number of SQL ordinary function calls (SQL functions are called on per-block basis, so this number represents the number of blocks).",0,clickhouse,,, +clickhouse.sql.ordinary.function.calls.total,gauge,,block,,"Number of SQL ordinary function calls (SQL functions are called on per-block basis, so this number represents the number of blocks).",0,clickhouse,,, +clickhouse.storage.buffer.flush.count,count,,,,Number of times a buffer in a 'Buffer' table was flushed.,0,clickhouse,,, +clickhouse.storage.buffer.flush.total,gauge,,,,Number of times a buffer in a 'Buffer' table was flushed.,0,clickhouse,,, +clickhouse.storage.buffer.flush_error.count,count,,,,Number of times a buffer in the 'Buffer' table has not been able to flush due to error writing in the destination table.,0,clickhouse,,, +clickhouse.storage.buffer.flush_error.total,gauge,,,,Number of times a buffer in the 'Buffer' table has not been able to flush due to error writing in the destination table.,0,clickhouse,,, +clickhouse.storage.connection.create.error.count,count,,,,Number of cases when creation of a connection for storage is failed,0,clickhouse,,, +clickhouse.storage.connection.create.error.total,gauge,,,,Number of cases when creation of a connection for storage is failed,0,clickhouse,,, +clickhouse.storage.connection.create.expired.count,count,,,,Number of expired connections for storages,0,clickhouse,,, +clickhouse.storage.connection.create.expired.total,gauge,,,,Number of expired connections for storages,0,clickhouse,,, +clickhouse.storage.connection.created.count,count,,,,Number of created connections for storages,0,clickhouse,,, +clickhouse.storage.connection.created.time,gauge,,microsecond,,Total time spend on creating connections for storages,0,clickhouse,,, +clickhouse.storage.connection.created.total,gauge,,,,Number of created connections for storages,0,clickhouse,,, +clickhouse.storage.connection.preserved.count,count,,,,Number of preserved connections for storages,0,clickhouse,,, +clickhouse.storage.connection.preserved.total,gauge,,,,Number of preserved connections for storages,0,clickhouse,,, +clickhouse.storage.connection.reused.count,count,,,,Number of reused connections for storages,0,clickhouse,,, +clickhouse.storage.connection.reused.total,gauge,,,,Number of reused connections for storages,0,clickhouse,,, +clickhouse.storeage.connection.reset.count,count,,,,Number of reset connections for storages,0,clickhouse,,, +clickhouse.storeage.connection.reset.total,gauge,,,,Number of reset connections for storages,0,clickhouse,,, +clickhouse.subquery.scalar.read.cache.miss.count,count,,,,Number of times a read from a scalar subquery was not cached and had to be calculated completely,0,clickhouse,,, +clickhouse.subquery.scalar.read.cache.miss.total,gauge,,,,Number of times a read from a scalar subquery was not cached and had to be calculated completely,0,clickhouse,,, +clickhouse.syscall.directory.sync.count,count,,,,Number of times the F_FULLFSYNC/fsync/fdatasync function was called for directories.,0,clickhouse,,, +clickhouse.syscall.directory.sync.time,gauge,,microsecond,,Total time spent waiting for F_FULLFSYNC/fsync/fdatasync syscall for directories.,0,clickhouse,,, +clickhouse.syscall.directory.sync.total,gauge,,,,Number of times the F_FULLFSYNC/fsync/fdatasync function was called for directories.,0,clickhouse,,, +clickhouse.syscall.read,gauge,,read,,"The number of read (read, pread, io_getevents, etc.) syscalls in fly.",0,clickhouse,,, +clickhouse.syscall.read.wait,gauge,,percent,,The percentage of time spent waiting for read syscall during the last interval. This includes reads from page cache.,0,clickhouse,,, +clickhouse.syscall.write,gauge,,write,,"The number of write (write, pwrite, io_getevents, etc.) syscalls in fly.",0,clickhouse,,, +clickhouse.syscall.write.wait,gauge,,percent,,The percentage of time spent waiting for write syscall during the last interval. This include writes to page cache.,0,clickhouse,,, +clickhouse.table.buffer.row,gauge,,row,,The number of rows in buffers of Buffer tables.,0,clickhouse,,, +clickhouse.table.buffer.size,gauge,,byte,,Size of buffers of Buffer tables.,0,clickhouse,,, +clickhouse.table.distributed.bytes.insert.broken,gauge,,,,Number of bytes for asynchronous insertion into Distributed tables that has been marked as broken. Number of bytes for every shard is summed.,0,clickhouse,,, +clickhouse.table.distributed.bytes.insert.pending,gauge,,,,Number of pending bytes to process for asynchronous insertion into Distributed tables. Number of bytes for every shard is summed.,0,clickhouse,,, +clickhouse.table.distributed.connection.inserted,gauge,,connection,,The number of connections to remote servers sending data that was INSERTed into Distributed tables. Both synchronous and asynchronous mode.,0,clickhouse,,, +clickhouse.table.distributed.file.insert.broken,gauge,,file,,Number of files for asynchronous insertion into Distributed tables that has been marked as broken. This metric will starts from 0 on start. Number of files for every shard is summed.,0,clickhouse,,, +clickhouse.table.distributed.file.insert.pending,gauge,,file,,The number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed.,0,clickhouse,,, +clickhouse.table.function.count,count,,,,Number of table function calls.,0,clickhouse,,, +clickhouse.table.function.total,gauge,,,,Number of table function calls.,0,clickhouse,,, +clickhouse.table.insert.row.count,count,,row,,The number of rows INSERTed to all tables during the last interval.,0,clickhouse,,, +clickhouse.table.insert.row.total,gauge,,row,,The total number of rows INSERTed to all tables.,0,clickhouse,,, +clickhouse.table.insert.size.count,count,,byte,,The number of bytes (uncompressed; for columns as they stored in memory) INSERTed to all tables during the last interval.,0,clickhouse,,, +clickhouse.table.insert.size.total,gauge,,byte,,The total number of bytes (uncompressed; for columns as they stored in memory) INSERTed to all tables.,0,clickhouse,,, +clickhouse.table.mergetree.announcements.sent.time,gauge,,microsecond,,Time spent in sending the announcement from the remote server to the initiator server about the set of data parts (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, +clickhouse.table.mergetree.calculating.projections.time,gauge,,microsecond,,Time spent calculating projections,0,clickhouse,,, +clickhouse.table.mergetree.calculating.skip_indices.time,gauge,,microsecond,,Time spent calculating skip indices,0,clickhouse,,, +clickhouse.table.mergetree.calculating.sorting.time,gauge,,microsecond,,Time spent sorting blocks,0,clickhouse,,, +clickhouse.table.mergetree.calculating.statistics.time,gauge,,microsecond,,Time spent calculating statistics,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.already_sorted.count,count,,block,,The number of blocks INSERTed to MergeTree tables that appeared to be already sorted during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.already_sorted.projection.total,gauge,,block,,Total number of blocks INSERTed to MergeTree tables projection that appeared to be already sorted.,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.already_sorted.total,gauge,,block,,The total number of blocks INSERTed to MergeTree tables that appeared to be already sorted.,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.count,count,,block,,The number of blocks INSERTed to MergeTree tables during the last interval. Each block forms a data part of level zero.,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.projection.count,count,,block,,Number of blocks INSERTed to MergeTree tables projection. Each block forms a data part of level zero.,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.projection.total,gauge,,block,,Total number of blocks INSERTed to MergeTree tables projection. Each block forms a data part of level zero.,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.rejected.count,count,,block,,The number of times the INSERT of a block to a MergeTree table was rejected with `Too many parts` exception due to high number of active data parts for partition during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.rejected.total,gauge,,block,,The total number of times the INSERT of a block to a MergeTree table was rejected with `Too many parts` exception due to high number of active data parts for partition.,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.size.compressed.projection.count,count,,block,,Number of blocks INSERTed to MergeTree tables projection that appeared to be already sorted.,0,clickhouse,,, +clickhouse.table.mergetree.insert.block.total,gauge,,block,,The total number of blocks INSERTed to MergeTree tables. Each block forms a data part of level zero.,0,clickhouse,,, +clickhouse.table.mergetree.insert.delayed.count,count,,throttle,,The number of times the INSERT of a block to a MergeTree table was throttled due to high number of active data parts for partition during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.insert.delayed.time,gauge,,percent,,The percentage of time spent while the INSERT of a block to a MergeTree table was throttled due to high number of active data parts for partition during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.insert.delayed.total,gauge,,throttle,,The total number of times the INSERT of a block to a MergeTree table was throttled due to high number of active data parts for partition.,0,clickhouse,,, +clickhouse.table.mergetree.insert.row.count,count,,row,,The number of rows INSERTed to MergeTree tables during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.insert.row.total,gauge,,row,,The total number of rows INSERTed to MergeTree tables.,0,clickhouse,,, +clickhouse.table.mergetree.insert.write.row.projection.count,count,,row,,Number of rows INSERTed to MergeTree tables projection.,0,clickhouse,,, +clickhouse.table.mergetree.insert.write.row.projection.total,gauge,,row,,Total number of rows INSERTed to MergeTree tables projection.,0,clickhouse,,, +clickhouse.table.mergetree.insert.write.size.compressed.count,count,,byte,,The number of bytes written to filesystem for data INSERTed to MergeTree tables during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.insert.write.size.compressed.total,gauge,,byte,,The total number of bytes written to filesystem for data INSERTed to MergeTree tables.,0,clickhouse,,, +clickhouse.table.mergetree.insert.write.size.uncompressed.count,count,,byte,,The number of uncompressed bytes (for columns as they are stored in memory) INSERTed to MergeTree tables during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.insert.write.size.uncompressed.projection.count,count,,byte,,Uncompressed bytes (for columns as they stored in memory) INSERTed to MergeTree tables projection.,0,clickhouse,,, +clickhouse.table.mergetree.insert.write.size.uncompressed.projection.total,gauge,,byte,,Total uncompressed bytes (for columns as they stored in memory) INSERTed to MergeTree tables projection.,0,clickhouse,,, +clickhouse.table.mergetree.insert.write.size.uncompressed.total,gauge,,byte,,The total number of uncompressed bytes (for columns as they are stored in memory) INSERTed to MergeTree tables.,0,clickhouse,,, +clickhouse.table.mergetree.mark.selected.count,count,,index,,The number of marks (index granules) selected to read from a MergeTree table during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.mark.selected.total,gauge,,index,,The total number of marks (index granules) selected to read from a MergeTree table.,0,clickhouse,,, +clickhouse.table.mergetree.merging.blocks.time,gauge,,microsecond,,Time spent merging input blocks (for special MergeTree engines),0,clickhouse,,, +clickhouse.table.mergetree.merging.projection.time,gauge,,microsecond,,Time spent merging blocks,0,clickhouse,,, +clickhouse.table.mergetree.mutation.delayed.count,count,,,,Number of times the mutation of a MergeTree table was throttled due to high number of unfinished mutations for table.,0,clickhouse,,, +clickhouse.table.mergetree.mutation.delayed.total,gauge,,,,Number of times the mutation of a MergeTree table was throttled due to high number of unfinished mutations for table.,0,clickhouse,,, +clickhouse.table.mergetree.mutation.rejected.count,count,,,,Number of times the mutation of a MergeTree table was rejected with 'Too many mutations' exception due to high number of unfinished mutations for table.,0,clickhouse,,, +clickhouse.table.mergetree.mutation.rejected.total,gauge,,,,Number of times the mutation of a MergeTree table was rejected with 'Too many mutations' exception due to high number of unfinished mutations for table.,0,clickhouse,,, +clickhouse.table.mergetree.part.current,gauge,,object,,The total number of data parts of a MergeTree table.,0,clickhouse,,, +clickhouse.table.mergetree.part.selected.count,count,,item,,The number of data parts selected to read from a MergeTree table during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.part.selected.total,gauge,,item,,The total number of data parts selected to read from a MergeTree table.,0,clickhouse,,, +clickhouse.table.mergetree.partslock.hold.time,gauge,,microsecond,,Total time spent holding data parts lock in MergeTree tables,0,clickhouse,,, +clickhouse.table.mergetree.partslock.wait.time,gauge,,microsecond,,Total time spent waiting for data parts lock in MergeTree tables,0,clickhouse,,, +clickhouse.table.mergetree.prefetched_read_pool.tasks.time,gauge,,microsecond,,Time spent preparing tasks in MergeTreePrefetchedReadPool,0,clickhouse,,, +clickhouse.table.mergetree.range.selected.count,count,,item,,The number of non-adjacent ranges in all data parts selected to read from a MergeTree table during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.range.selected.total,gauge,,item,,The total number of non-adjacent ranges in all data parts selected to read from a MergeTree table.,0,clickhouse,,, +clickhouse.table.mergetree.read_task_requests.sent.time,gauge,,microsecond,,Time spent in callbacks requested from the remote server back to the initiator server to choose the read task (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.fetch.merged.count,count,,fetch,,The number of times ClickHouse prefers to download already merged part from replica of ReplicatedMergeTree table instead of performing a merge itself (usually it prefers doing a merge itself to save network traffic) during the last interval. This happens when ClickHouse does not have all source parts to perform a merge or when the data part is old enough.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.fetch.merged.total,gauge,,fetch,,The total number of times ClickHouse prefers to download already merged part from replica of ReplicatedMergeTree table instead of performing a merge itself (usually it prefers doing a merge itself to save network traffic). This happens when ClickHouse does not have all source parts to perform a merge or when the data part is old enough.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.fetch.replica.count,count,,fetch,,The number of times a data part was downloaded from replica of a ReplicatedMergeTree table during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.fetch.replica.fail.count,count,,byte,,The number of times a data part was failed to download from replica of a ReplicatedMergeTree table during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.fetch.replica.fail.total,gauge,,byte,,The total number of times a data part was failed to download from replica of a ReplicatedMergeTree table.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.fetch.replica.total,gauge,,fetch,,The total number of times a data part was downloaded from replica of a ReplicatedMergeTree table.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.insert.deduplicate.count,count,,operation,,The number of times the INSERTed block to a ReplicatedMergeTree table was deduplicated during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.insert.deduplicate.total,gauge,,operation,,The total number of times the INSERTed block to a ReplicatedMergeTree table was deduplicated.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.leader.elected.count,count,,event,,"The number of times a ReplicatedMergeTree table became a leader during the last interval. Leader replica is responsible for assigning merges, cleaning old blocks for deduplications and a few more bookkeeping tasks.",0,clickhouse,,, +clickhouse.table.mergetree.replicated.leader.elected.total,gauge,,event,,"The total number of times a ReplicatedMergeTree table became a leader. Leader replica is responsible for assigning merges, cleaning old blocks for deduplications and a few more bookkeeping tasks.",0,clickhouse,,, +clickhouse.table.mergetree.replicated.merge.count,count,,byte,,The number of times data parts of ReplicatedMergeTree tables were successfully merged during the last interval.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.merge.total,gauge,,byte,,The total number of times data parts of ReplicatedMergeTree tables were successfully merged.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.mutated.count,count,,,,Number of times data parts of ReplicatedMergeTree tables were successfully mutated.,0,clickhouse,,, +clickhouse.table.mergetree.replicated.mutated.total,gauge,,,,Number of times data parts of ReplicatedMergeTree tables were successfully mutated.,0,clickhouse,,, +clickhouse.table.mergetree.row.current,gauge,,row,,The total number of rows in a MergeTree table.,0,clickhouse,,, +clickhouse.table.mergetree.size,gauge,,byte,,The total size of all data part files of a MergeTree table.,0,clickhouse,,, +clickhouse.table.mergetree.sorting.projection.time,gauge,,microsecond,,Time spent sorting blocks (for projection it might be a key different from table's sorting key),0,clickhouse,,, +clickhouse.table.mergetree.storage.mark.cache,gauge,,byte,,The size of the cache of `marks` for StorageMergeTree.,0,clickhouse,,, +clickhouse.table.replica.change.hedged_requests.count,gauge,,timeout,,Count when timeout for changing replica expired in hedged requests.,0,clickhouse,,, +clickhouse.table.replica.change.hedged_requests.total,gauge,,timeout,,Total count when timeout for changing replica expired in hedged requests.,0,clickhouse,,, +clickhouse.table.replica.partial.shutdown.count,count,,,,How many times Replicated table has to deinitialize its state due to session expiration in ZooKeeper. The state is reinitialized every time when ZooKeeper is available again.,0,clickhouse,,, +clickhouse.table.replica.partial.shutdown.total,gauge,,,,Total times Replicated table has to deinitialize its state due to session expiration in ZooKeeper. The state is reinitialized every time when ZooKeeper is available again.,0,clickhouse,,, +clickhouse.table.replicated.active,gauge,,table,,"The number of replicas of this table that have a session in ZooKeeper (i.e., the number of functioning replicas).",0,clickhouse,,, +clickhouse.table.replicated.leader,gauge,,table,,"The number of Replicated tables that are leaders. Leader replica is responsible for assigning merges, cleaning old blocks for deduplications and a few more bookkeeping tasks. There may be no more than one leader across all replicas at one moment of time. If there is no leader it will be elected soon or it indicate an issue.",0,clickhouse,,, +clickhouse.table.replicated.leader.yield.count,count,,event,,The number of times Replicated table yielded its leadership due to large replication lag relative to other replicas during the last interval.,0,clickhouse,,, +clickhouse.table.replicated.leader.yield.total,gauge,,event,,The total number of times Replicated table yielded its leadership due to large replication lag relative to other replicas.,0,clickhouse,,, +clickhouse.table.replicated.log.max,gauge,,item,,Maximum entry number in the log of general activity.,0,clickhouse,,, +clickhouse.table.replicated.log.pointer,gauge,,item,,"Maximum entry number in the log of general activity that the replica copied to its execution queue, plus one. If this is much smaller than `clickhouse.table.replicated.log.max`, something is wrong.",0,clickhouse,,, +clickhouse.table.replicated.part.check,gauge,,item,,The number of data parts checking for consistency,0,clickhouse,,, +clickhouse.table.replicated.part.check.count,count,,item,,The number of data parts checking for consistency,0,clickhouse,,, +clickhouse.table.replicated.part.check.failed.count,count,,,,Number of times the advanced search for a data part on replicas did not give result or when unexpected part has been found and moved away.,0,clickhouse,,, +clickhouse.table.replicated.part.check.failed.total,gauge,,,,Number of times the advanced search for a data part on replicas did not give result or when unexpected part has been found and moved away.,0,clickhouse,,, +clickhouse.table.replicated.part.check.total,gauge,,item,,The number of data parts checking for consistency,0,clickhouse,,, +clickhouse.table.replicated.part.fetch,gauge,,item,,The number of data parts being fetched from replica,0,clickhouse,,, +clickhouse.table.replicated.part.future,gauge,,item,,The number of data parts that will appear as the result of INSERTs or merges that haven't been done yet.,0,clickhouse,,, +clickhouse.table.replicated.part.loss.count,count,,item,,"The number of times a data part we wanted doesn't exist on any replica (even on replicas that are offline right now) during the last interval. Those data parts are definitely lost. This is normal due to asynchronous replication (if quorum inserts were not enabled), when the replica on which the data part was written failed and when it became online after fail it doesn't contain that data part.",0,clickhouse,,, +clickhouse.table.replicated.part.loss.total,gauge,,item,,"The total number of times a data part that we wanted doesn't exist on any replica (even on replicas that are offline right now). That data parts are definitely lost. This is normal due to asynchronous replication (if quorum inserts were not enabled), when the replica on which the data part was written failed and when it became online after fail it doesn't contain that data part.",0,clickhouse,,, +clickhouse.table.replicated.part.send,gauge,,item,,The number of data parts being sent to replicas,0,clickhouse,,, +clickhouse.table.replicated.part.suspect,gauge,,item,,The number of data parts in the queue for verification. A part is put in the verification queue if there is suspicion that it might be damaged.,0,clickhouse,,, +clickhouse.table.replicated.queue.insert,gauge,,operation,,"The number of inserts of blocks of data that need to be made. Insertions are usually replicated fairly quickly. If this number is large, it means something is wrong.",0,clickhouse,,, +clickhouse.table.replicated.queue.merge,gauge,,merge,,"The number of merges waiting to be made. Sometimes merges are lengthy, so this value may be greater than zero for a long time.",0,clickhouse,,, +clickhouse.table.replicated.queue.size,gauge,,operation,,"Size of the queue for operations waiting to be performed. Operations include inserting blocks of data, merges, and certain other actions. It usually coincides with `clickhouse.table.replicated.part.future`.",0,clickhouse,,, +clickhouse.table.replicated.readonly,gauge,,table,,The number of Replicated tables that are currently in readonly state due to re-initialization after ZooKeeper session loss or due to startup without ZooKeeper configured.,0,clickhouse,,, +clickhouse.table.replicated.total,gauge,,table,,The total number of known replicas of this table.,0,clickhouse,,, +clickhouse.table.replicated.version,gauge,,operation,,"Version number of the table structure indicating how many times ALTER was performed. If replicas have different versions, it means some replicas haven't made all of the ALTERs yet.",0,clickhouse,,, +clickhouse.table.total,gauge,,table,,The current number of tables.,0,clickhouse,,, +clickhouse.table_engines.files.read.count,count,,,,Number of files read in table engines working with files (like File/S3/URL/HDFS).,0,clickhouse,,, +clickhouse.table_engines.files.read.total,gauge,,,,Number of files read in table engines working with files (like File/S3/URL/HDFS).,0,clickhouse,,, +clickhouse.tables_to_drop.queue.total,gauge,,table,,"Number of dropped tables, that are waiting for background data removal.",0,clickhouse,,, +clickhouse.task.mutate.calculate.projections.time,gauge,,microsecond,,Time spent calculating projections,0,clickhouse,,, +clickhouse.task.prefetch.reader.wait.time,gauge,,microsecond,,Time spend waiting for prefetched reader,0,clickhouse,,, +clickhouse.task.read.requests.received.count,count,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the initiator server side.,0,clickhouse,,, +clickhouse.task.read.requests.received.total,gauge,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the initiator server side.,0,clickhouse,,, +clickhouse.task.read.requests.sent.count,count,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the remote server side.,0,clickhouse,,, +clickhouse.task.read.requests.sent.time,gauge,,microsecond,,Time spent in callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the remote server side.,0,clickhouse,,, +clickhouse.task.read.requests.sent.total,gauge,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the remote server side.,0,clickhouse,,, +clickhouse.task.requests.callback,gauge,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the remote server side.,0,clickhouse,,, +clickhouse.task.thread_pool_reader.cache.time,gauge,,microsecond,,How much time we spent checking if content is cached,0,clickhouse,,, +clickhouse.task.thread_pool_reader.read.count,count,,,,Bytes read from a threadpool task in asynchronous reading,0,clickhouse,,, +clickhouse.task.thread_pool_reader.read.size.count,count,,,,Bytes read from a threadpool task in asynchronous reading,0,clickhouse,,, +clickhouse.task.thread_pool_reader.read.size.total,gauge,,,,Bytes read from a threadpool task in asynchronous reading,0,clickhouse,,, +clickhouse.task.thread_pool_reader.read.sync.time,gauge,,microsecond,,How much time we spent reading synchronously,0,clickhouse,,, +clickhouse.task.thread_pool_reader.read.time,gauge,,microsecond,,Time spent getting the data in asynchronous reading,0,clickhouse,,, +clickhouse.task.thread_pool_reader.read.total,gauge,,,,Bytes read from a threadpool task in asynchronous reading,0,clickhouse,,, +clickhouse.tasks.background.loading_marks.count,count,,,,Number of background tasks for loading marks,0,clickhouse,,, +clickhouse.tasks.background.loading_marks.total,gauge,,,,Number of background tasks for loading marks,0,clickhouse,,, +clickhouse.temporary_files.aggregation.total,gauge,,,,Number of temporary files created for external aggregation,0,clickhouse,,, +clickhouse.temporary_files.join.total,gauge,,,,Number of temporary files created for JOIN,0,clickhouse,,, +clickhouse.temporary_files.sort.total,gauge,,,,Number of temporary files created for external sorting,0,clickhouse,,, +clickhouse.temporary_files.total,gauge,,,,Number of temporary files created,0,clickhouse,,, +clickhouse.temporary_files.unknown.total,gauge,,,,Number of temporary files created without known purpose,0,clickhouse,,, +clickhouse.thread.cpu.wait,gauge,,percent,,The percentage of time a thread was ready for execution but waiting to be scheduled by OS (from the OS point of view) during the last interval.,0,clickhouse,,, +clickhouse.thread.global.active,gauge,,thread,,The number of threads in global thread pool running a task.,0,clickhouse,,, +clickhouse.thread.global.scheduled,gauge,,,,Number of queued or active jobs in global thread pool.,0,clickhouse,,, +clickhouse.thread.global.total,gauge,,thread,,The number of threads in global thread pool.,0,clickhouse,,, +clickhouse.thread.io.wait,gauge,,percent,,The percentage of time a thread spent waiting for a result of IO operation (from the OS point of view) during the last interval. This is real IO that doesn't include page cache.,0,clickhouse,,, +clickhouse.thread.local.active,gauge,,thread,,The number of threads in local thread pools running a task.,0,clickhouse,,, +clickhouse.thread.local.scheduled,gauge,,,,Number of queued or active jobs in local thread pools.,0,clickhouse,,, +clickhouse.thread.local.total,gauge,,thread,,The number of threads in local thread pools. Should be similar to GlobalThreadActive.,0,clickhouse,,, +clickhouse.thread.lock.context.waiting,gauge,,thread,,The number of threads waiting for lock in Context. This is global lock.,-1,clickhouse,,, +clickhouse.thread.lock.rw.active.read,gauge,,thread,,The number of threads holding read lock in a table RWLock.,0,clickhouse,,, +clickhouse.thread.lock.rw.active.write,gauge,,thread,,The number of threads holding write lock in a table RWLock.,0,clickhouse,,, +clickhouse.thread.lock.rw.waiting.read,gauge,,thread,,The number of threads waiting for read on a table RWLock.,0,clickhouse,,, +clickhouse.thread.lock.rw.waiting.write,gauge,,thread,,The number of threads waiting for write on a table RWLock.,0,clickhouse,,, +clickhouse.thread.process_time,gauge,,percent,,The percentage of time spent processing (queries and other tasks) threads during the last interval.,0,clickhouse,,, +clickhouse.thread.query,gauge,,thread,,The number of query processing threads,0,clickhouse,,, +clickhouse.thread.system.process_time,gauge,,percent,,"The percentage of time spent processing (queries and other tasks) threads executing CPU instructions in OS kernel space during the last interval. This includes time CPU pipeline was stalled due to cache misses, branch mispredictions, hyper-threading, etc.",0,clickhouse,,, +clickhouse.thread.user.process_time,gauge,,percent,,"The percentage of time spent processing (queries and other tasks) threads executing CPU instructions in user space during the last interval. This includes time CPU pipeline was stalled due to cache misses, branch mispredictions, hyper-threading, etc.",0,clickhouse,,, +clickhouse.threads.async.disk_object_storage.active,gauge,,,,"Obsolete metric, shows nothing.",0,clickhouse,,, +clickhouse.threads.async.disk_object_storage.total,gauge,,,,"Obsolete metric, shows nothing.",0,clickhouse,,, +clickhouse.threads.async.read,gauge,,thread,,Number of threads waiting for asynchronous read.,0,clickhouse,,, +clickhouse.threads.azure_object_storage.active,gauge,,,,Number of threads in the AzureObjectStorage thread pool running a task.,0,clickhouse,,, +clickhouse.threads.azure_object_storage.scheduled,gauge,,,,Number of queued or active jobs in the AzureObjectStorage thread pool.,0,clickhouse,,, +clickhouse.threads.azure_object_storage.total,gauge,,,,Number of threads in the AzureObjectStorage thread pool.,0,clickhouse,,, +clickhouse.threads.database_catalog.active,gauge,,,,Number of threads in the DatabaseCatalog thread pool running a task.,0,clickhouse,,, +clickhouse.threads.database_catalog.scheduled,gauge,,,,Number of queued or active jobs in the DatabaseCatalog thread pool.,0,clickhouse,,, +clickhouse.threads.database_catalog.total,gauge,,,,Number of threads in the DatabaseCatalog thread pool.,0,clickhouse,,, +clickhouse.threads.database_ondisk.active,gauge,,,,Number of threads in the DatabaseOnDisk thread pool running a task.,0,clickhouse,,, +clickhouse.threads.database_ondisk.scheduled,gauge,,,,Number of queued or active jobs in the DatabaseOnDisk thread pool.,0,clickhouse,,, +clickhouse.threads.database_ondisk.total,gauge,,,,Number of threads in the DatabaseOnDisk thread pool.,0,clickhouse,,, +clickhouse.threads.database_replicated.active,gauge,,,,Number of active threads in the threadpool for table creation in DatabaseReplicated.,0,clickhouse,,, +clickhouse.threads.database_replicated.scheduled,gauge,,,,Number of queued or active jobs in the threadpool for table creation in DatabaseReplicated.,0,clickhouse,,, +clickhouse.threads.database_replicated.total,gauge,,,,Number of threads in the threadpool for table creation in DatabaseReplicated.,0,clickhouse,,, +clickhouse.threads.ddl_worker.active,gauge,,,,Number of threads in the DDLWORKER thread pool for ON CLUSTER queries running a task.,0,clickhouse,,, +clickhouse.threads.ddl_worker.scheduled,gauge,,,,Number of queued or active jobs in the DDLWORKER thread pool for ON CLUSTER queries.,0,clickhouse,,, +clickhouse.threads.ddl_worker.total,gauge,,,,Number of threads in the DDLWorker thread pool for ON CLUSTER queries.,0,clickhouse,,, +clickhouse.threads.destroy_aggregates.active,gauge,,,,Number of threads in the thread pool for destroy aggregate states running a task.,0,clickhouse,,, +clickhouse.threads.destroy_aggregates.scheduled,gauge,,,,Number of queued or active jobs in the thread pool for destroy aggregate states.,0,clickhouse,,, +clickhouse.threads.destroy_aggregates.total,gauge,,,,Number of threads in the thread pool for destroy aggregate states.,0,clickhouse,,, +clickhouse.threads.distribured.insert.active,gauge,,,,Number of threads used for INSERT into Distributed running a task.,0,clickhouse,,, +clickhouse.threads.distribured.insert.scheduled,gauge,,,,Number of queued or active jobs used for INSERT into Distributed.,0,clickhouse,,, +clickhouse.threads.distribured.insert.total,gauge,,,,Number of threads used for INSERT into Distributed.,0,clickhouse,,, +clickhouse.threads.dwarf.active,gauge,,,,Number of threads in the DWARFBlockInputFormat thread pool running a task.,0,clickhouse,,, +clickhouse.threads.dwarf.scheduled,gauge,,,,Number of queued or active jobs in the DWARFBlockInputFormat thread pool.,0,clickhouse,,, +clickhouse.threads.dwarf.total,gauge,,,,Number of threads in the DWARFBlockInputFormat thread pool.,0,clickhouse,,, +clickhouse.threads.hashed_dictionary.active,gauge,,,,Number of threads in the HashedDictionary thread pool running a task.,0,clickhouse,,, +clickhouse.threads.hashed_dictionary.scheduled,gauge,,,,Number of queued or active jobs in the HashedDictionary thread pool.,0,clickhouse,,, +clickhouse.threads.hashed_dictionary.total,gauge,,,,Number of threads in the HashedDictionary thread pool.,0,clickhouse,,, +clickhouse.threads.idisk.copier.active,gauge,,,,Number of threads for copying data between disks of different types running a task.,0,clickhouse,,, +clickhouse.threads.idisk.copier.scheduled,gauge,,,,Number of queued or active jobs for copying data between disks of different types.,0,clickhouse,,, +clickhouse.threads.idisk.copier.total,gauge,,,,Number of threads for copying data between disks of different types.,0,clickhouse,,, +clickhouse.threads.in_overcommit_tracker.total,gauge,,,,Number of waiting threads inside of OvercommitTracker,0,clickhouse,,, +clickhouse.threads.io.active,gauge,,,,Number of threads in the IO thread pool running a task.,0,clickhouse,,, +clickhouse.threads.io.scheduled,gauge,,,,Number of queued or active jobs in the IO thread pool.,0,clickhouse,,, +clickhouse.threads.io.total,gauge,,,,Number of threads in the IO thread pool.,0,clickhouse,,, +clickhouse.threads.io_prefetch.active,gauge,,,,Number of threads in the IO prefetch thread pool running a task.,0,clickhouse,,, +clickhouse.threads.io_prefetch.scheduled,gauge,,,,Number of queued or active jobs in the IO prefetch thread pool.,0,clickhouse,,, +clickhouse.threads.io_prefetch.total,gauge,,,,Number of threads in the IO prefetch thread pool.,0,clickhouse,,, +clickhouse.threads.io_writer.active,gauge,,,,Number of threads in the IO writer thread pool running a task.,0,clickhouse,,, +clickhouse.threads.io_writer.scheduled,gauge,,,,Number of queued or active jobs in the IO writer thread pool.,0,clickhouse,,, +clickhouse.threads.io_writer.total,gauge,,,,Number of threads in the IO writer thread pool.,0,clickhouse,,, +clickhouse.threads.librdkafka.active,gauge,,thread,,Number of active librdkafka threads,0,clickhouse,,, +clickhouse.threads.marks_loader.active,gauge,,,,Number of threads in the thread pool for loading marks running a task.,0,clickhouse,,, +clickhouse.threads.marks_loader.scheduled,gauge,,,,Number of queued or active jobs in the thread pool for loading marks.,0,clickhouse,,, +clickhouse.threads.marks_loader.total,gauge,,,,Number of threads in thread pool for loading marks.,0,clickhouse,,, +clickhouse.threads.merge_tree_background_executor.active,gauge,,,,Number of threads in the MergeTreeBackgroundExecutor thread pool running a task.,0,clickhouse,,, +clickhouse.threads.merge_tree_background_executor.scheduled,gauge,,,,Number of queued or active jobs in the MergeTreeBackgroundExecutor thread pool.,0,clickhouse,,, +clickhouse.threads.merge_tree_background_executor.total,gauge,,,,Number of threads in the MergeTreeBackgroundExecutor thread pool.,0,clickhouse,,, +clickhouse.threads.merge_tree_data_selector_executor.active,gauge,,,,Number of threads in the MergeTreeDataSelectExecutor thread pool running a task.,0,clickhouse,,, +clickhouse.threads.merge_tree_data_selector_executor.scheduled,gauge,,,,Number of queued or active jobs in the MergeTreeDataSelectExecutor thread pool.,0,clickhouse,,, +clickhouse.threads.merge_tree_data_selector_executor.total,gauge,,,,Number of threads in the MergeTreeDataSelectExecutor thread pool.,0,clickhouse,,, +clickhouse.threads.merge_tree_outdated_parts_loader.active,gauge,,,,Number of active threads in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.threads.merge_tree_outdated_parts_loader.scheduled,gauge,,,,Number of queued or active jobs in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.threads.merge_tree_outdated_parts_loader.total,gauge,,,,Number of threads in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.threads.merge_tree_parts_cleaner.active,gauge,,,,Number of threads in the MergeTree parts cleaner thread pool running a task.,0,clickhouse,,, +clickhouse.threads.merge_tree_parts_cleaner.scheduled,gauge,,,,Number of queued or active jobs in the MergeTree parts cleaner thread pool.,0,clickhouse,,, +clickhouse.threads.merge_tree_parts_cleaner.total,gauge,,,,Number of threads in the MergeTree parts cleaner thread pool.,0,clickhouse,,, +clickhouse.threads.merge_tree_parts_loader.active,gauge,,,,Number of threads in the MergeTree parts loader thread pool running a task.,0,clickhouse,,, +clickhouse.threads.merge_tree_parts_loader.scheduled,gauge,,,,Number of queued or active jobs in the MergeTree parts loader thread pool.,0,clickhouse,,, +clickhouse.threads.merge_tree_parts_loader.total,gauge,,,,Number of threads in the MergeTree parts loader thread pool.,0,clickhouse,,, +clickhouse.threads.outdated_parts_loading.active,gauge,,,,Number of active threads in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.threads.outdated_parts_loading.scheduled,gauge,,,,Number of queued or active jobs in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.threads.outdated_parts_loading.total,gauge,,,,Number of threads in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.threads.parallel_formatting_output.active,gauge,,,,Number of threads in the ParallelFormattingOutputFormatThreads thread pool running a task.,0,clickhouse,,, +clickhouse.threads.parallel_formatting_output.scheduled,gauge,,,,Number of queued or active jobs in the ParallelFormattingOutputFormatThreads thread pool.,0,clickhouse,,, +clickhouse.threads.parallel_formatting_output.total,gauge,,,,Number of threads in the ParallelFormattingOutputFormatThreads thread pool.,0,clickhouse,,, +clickhouse.threads.parallel_parsing_input.active,gauge,,,,Number of threads in the ParallelParsingInputFormat thread pool running a task.,0,clickhouse,,, +clickhouse.threads.parallel_parsing_input.scheduled,gauge,,,,Number of queued or active jobs in the ParallelParsingInputFormat thread pool.,0,clickhouse,,, +clickhouse.threads.parallel_parsing_input.total,gauge,,,,Number of threads in the ParallelParsingInputFormat thread pool.,0,clickhouse,,, +clickhouse.threads.parquet_decoder.active,gauge,,,,Number of threads in the ParquetBlockInputFormat thread pool running a task.,0,clickhouse,,, +clickhouse.threads.parquet_decoder.scheduled,gauge,,,,Number of queued or active jobs in the ParquetBlockInputFormat thread pool.,0,clickhouse,,, +clickhouse.threads.parquet_decoder.total,gauge,,,,Number of threads in the ParquetBlockInputFormat thread pool.,0,clickhouse,,, +clickhouse.threads.parquet_encoder.active,gauge,,,,Number of threads in ParquetBlockOutputFormat thread pool running a task.,0,clickhouse,,, +clickhouse.threads.parquet_encoder.scheduled,gauge,,,,Number of queued or active jobs in ParquetBlockOutputFormat thread pool.,0,clickhouse,,, +clickhouse.threads.parquet_encoder.total,gauge,,,,Number of threads in ParquetBlockOutputFormat thread pool.,0,clickhouse,,, +clickhouse.threads.pool.fs_reader.active,gauge,,,,Number of threads in the thread pool for local_filesystem_read_method=threadpool running a task.,0,clickhouse,,, +clickhouse.threads.pool.fs_reader.scheduled,gauge,,,,Number of queued or active jobs in the thread pool for local_filesystem_read_method=threadpool.,0,clickhouse,,, +clickhouse.threads.pool.fs_reader.total,gauge,,,,Number of threads in the thread pool for local_filesystem_read_method=threadpool.,0,clickhouse,,, +clickhouse.threads.pool.remote_fs_reader.active,gauge,,,,Number of threads in the thread pool for remote_filesystem_read_method=threadpool running a task.,0,clickhouse,,, +clickhouse.threads.pool.remote_fs_reader.scheduled,gauge,,,,Number of queued or active jobs in the thread pool for remote_filesystem_read_method=threadpool.,0,clickhouse,,, +clickhouse.threads.pool.remote_fs_reader.total,gauge,,,,Number of threads in the thread pool for remote_filesystem_read_method=threadpool.,0,clickhouse,,, +clickhouse.threads.query.execution.hard_page_faults.count,count,,thread,,"The number of hard page faults in query execution threads. High values indicate either that you forgot to turn off swap on your server, or eviction of memory pages of the ClickHouse binary during very high memory pressure, or successful usage of the 'mmap' read method for the tables data.",0,clickhouse,,, +clickhouse.threads.query.execution.hard_page_faults.total,gauge,,thread,,"The number of hard page faults in query execution threads. High values indicate either that you forgot to turn off swap on your server, or eviction of memory pages of the ClickHouse binary during very high memory pressure, or successful usage of the 'mmap' read method for the tables data.",0,clickhouse,,, +clickhouse.threads.query.soft_page_faults.count,count,,,,"The number of soft page faults in query execution threads. Soft page fault usually means a miss in the memory allocator cache, which requires a new memory mapping from the OS and subsequent allocation of a page of physical memory.",0,clickhouse,,, +clickhouse.threads.query.soft_page_faults.total,gauge,,,,"The number of soft page faults in query execution threads. Soft page fault usually means a miss in the memory allocator cache, which requires a new memory mapping from the OS and subsequent allocation of a page of physical memory.",0,clickhouse,,, +clickhouse.threads.query_pipeline_executor.active,gauge,,,,Number of threads in the PipelineExecutor thread pool running a task.,0,clickhouse,,, +clickhouse.threads.query_pipeline_executor.scheduled,gauge,,,,Number of queued or active jobs in the PipelineExecutor thread pool.,0,clickhouse,,, +clickhouse.threads.query_pipeline_executor.total,gauge,,,,Number of threads in the PipelineExecutor thread pool.,0,clickhouse,,, +clickhouse.threads.restart_replica.active,gauge,,,,Number of threads in the RESTART REPLICA thread pool running a task.,0,clickhouse,,, +clickhouse.threads.restart_replica.scheduled,gauge,,,,Number of queued or active jobs in the RESTART REPLICA thread pool.,0,clickhouse,,, +clickhouse.threads.restore.active,gauge,,,,Number of threads in the thread pool for RESTORE running a task.,0,clickhouse,,, +clickhouse.threads.restore.scheduled,gauge,,,,Number of queued or active jobs for RESTORE.,0,clickhouse,,, +clickhouse.threads.restore.total,gauge,,,,Number of threads in the thread pool for RESTORE.,0,clickhouse,,, +clickhouse.threads.s3_object_storage.active,gauge,,,,Number of threads in the S3ObjectStorage thread pool running a task.,0,clickhouse,,, +clickhouse.threads.s3_object_storage.scheduled,gauge,,,,Number of queued or active jobs in the S3ObjectStorage thread pool.,0,clickhouse,,, +clickhouse.threads.s3_object_storage.total,gauge,,,,Number of threads in the S3ObjectStorage thread pool.,0,clickhouse,,, +clickhouse.threads.shared_merge_tree.active,gauge,,,,Number of threads in the thread pools in internals of SharedMergeTree running a task,0,clickhouse,,, +clickhouse.threads.shared_merge_tree.scheduled,gauge,,,,Number of queued or active threads in the thread pools in internals of SharedMergeTree,0,clickhouse,,, +clickhouse.threads.shared_merge_tree.total,gauge,,,,Number of threads in the thread pools in internals of SharedMergeTree,0,clickhouse,,, +clickhouse.threads.startup_system_tables.active,gauge,,,,Number of threads in the StartupSystemTables thread pool running a task.,0,clickhouse,,, +clickhouse.threads.startup_system_tables.scheduled,gauge,,,,Number of queued or active jobs in the StartupSystemTables thread pool.,0,clickhouse,,, +clickhouse.threads.startup_system_tables.total,gauge,,,,Number of threads in the StartupSystemTables thread pool.,0,clickhouse,,, +clickhouse.threads.storage_buffer_flush.active,gauge,,,,Number of threads for background flushes in StorageBuffer running a task,0,clickhouse,,, +clickhouse.threads.storage_buffer_flush.scheduled,gauge,,,,Number of queued or active threads for background flushes in StorageBuffer,0,clickhouse,,, +clickhouse.threads.storage_buffer_flush.total,gauge,,,,Number of threads for background flushes in StorageBuffer,0,clickhouse,,, +clickhouse.threads.storage_distributed.active,gauge,,,,Number of threads in the StorageDistributed thread pool running a task.,0,clickhouse,,, +clickhouse.threads.storage_distributed.scheduled,gauge,,,,Number of queued or active jobs in the StorageDistributed thread pool.,0,clickhouse,,, +clickhouse.threads.storage_distributed.total,gauge,,,,Number of threads in the StorageDistributed thread pool.,0,clickhouse,,, +clickhouse.threads.storage_hive.active,gauge,,,,Number of threads in the StorageHive thread pool running a task.,0,clickhouse,,, +clickhouse.threads.storage_hive.scheduled,gauge,,,,Number of queued or active jobs in the StorageHive thread pool.,0,clickhouse,,, +clickhouse.threads.storage_hive.total,gauge,,,,Number of threads in the StorageHive thread pool.,0,clickhouse,,, +clickhouse.threads.storage_s3.active,gauge,,,,Number of threads in the StorageS3 thread pool running a task.,0,clickhouse,,, +clickhouse.threads.storage_s3.scheduled,gauge,,,,Number of queued or active jobs in the StorageS3 thread pool.,0,clickhouse,,, +clickhouse.threads.storage_s3.total,gauge,,,,Number of threads in the StorageS3 thread pool.,0,clickhouse,,, +clickhouse.threads.system_replicas.active,gauge,,,,Number of threads in the system.replicas thread pool running a task.,0,clickhouse,,, +clickhouse.threads.system_replicas.scheduled,gauge,,,,Number of queued or active jobs in the system.replicas thread pool.,0,clickhouse,,, +clickhouse.threads.system_replicas.total,gauge,,,,Number of threads in the system.replicas thread pool.,0,clickhouse,,, +clickhouse.threads.tables_loader_background.active,gauge,,,,Number of threads in the tables loader background thread pool running a task.,0,clickhouse,,, +clickhouse.threads.tables_loader_background.scheduled,gauge,,,,Number of queued or active jobs in the tables loader background thread pool.,0,clickhouse,,, +clickhouse.threads.tables_loader_background.total,gauge,,,,Number of threads in the tables loader background thread pool.,0,clickhouse,,, +clickhouse.threads.tables_loader_foreground.active,gauge,,,,Number of threads in the tables loader foreground thread pool running a task.,0,clickhouse,,, +clickhouse.threads.tables_loader_foreground.scheduled,gauge,,,,Number of queued or active jobs in the tables loader foreground thread pool.,0,clickhouse,,, +clickhouse.threads.tables_loader_foreground.total,gauge,,,,Number of threads in the tables loader foreground thread pool.,0,clickhouse,,, +clickhouse.throttler.local_read.bytes.count,count,,,,Bytes passed through 'max_local_read_bandwidth_for_server'/'max_local_read_bandwidth' throttler.,0,clickhouse,,, +clickhouse.throttler.local_read.bytes.total,gauge,,,,Bytes passed through 'max_local_read_bandwidth_for_server'/'max_local_read_bandwidth' throttler.,0,clickhouse,,, +clickhouse.throttler.local_read.sleep.time,gauge,,microsecond,,Total time a query was sleeping to conform 'max_local_read_bandwidth_for_server'/'max_local_read_bandwidth' throttling.,0,clickhouse,,, +clickhouse.throttler.local_write.bytes.count,count,,,,Bytes passed through 'max_local_write_bandwidth_for_server'/'max_local_write_bandwidth' throttler.,0,clickhouse,,, +clickhouse.throttler.local_write.bytes.total,gauge,,,,Bytes passed through 'max_local_write_bandwidth_for_server'/'max_local_write_bandwidth' throttler.,0,clickhouse,,, +clickhouse.throttler.local_write.sleep.time,gauge,,microsecond,,Total time a query was sleeping to conform 'max_local_write_bandwidth_for_server'/'max_local_write_bandwidth' throttling.,0,clickhouse,,, +clickhouse.uptime,gauge,,second,,The amount of time ClickHouse has been active.,0,clickhouse,,, +clickhouse.views.refreshing.current,gauge,,,,Number of materialized views currently executing a refresh,0,clickhouse,,, +clickhouse.views.refreshing.total,gauge,,,,Number materialized views with periodic refreshing (REFRESH),0,clickhouse,,, +clickhouse.zk.check.count,count,,,,"Number of 'check' requests to ZooKeeper. Usually they don't make sense in isolation, only as part of a complex transaction.",0,clickhouse,,, +clickhouse.zk.check.total,gauge,,,,"Number of 'check' requests to ZooKeeper. Usually they don't make sense in isolation, only as part of a complex transaction.",0,clickhouse,,, +clickhouse.zk.close.count,count,,,,Number of times connection with ZooKeeper has been closed voluntary.,0,clickhouse,,, +clickhouse.zk.close.total,gauge,,,,Number of times connection with ZooKeeper has been closed voluntary.,0,clickhouse,,, +clickhouse.zk.connection,gauge,,connection,,"The number of sessions (connections) to ZooKeeper. Should be no more than one, because using more than one connection to ZooKeeper may lead to bugs due to lack of linearizability (stale reads) that ZooKeeper consistency model allows.",0,clickhouse,,, +clickhouse.zk.connection.established.count,count,,,,Number of times connection with ZooKeeper has been established.,0,clickhouse,,, +clickhouse.zk.connection.established.total,gauge,,,,Number of times connection with ZooKeeper has been established.,0,clickhouse,,, +clickhouse.zk.create.count,count,,request,,Number of 'create' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.create.total,gauge,,request,,Number of 'create' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.data.exception.count,count,,,,"Number of exceptions while working with ZooKeeper related to the data (no node, bad version or similar).",0,clickhouse,,, +clickhouse.zk.data.exception.total,gauge,,,,"Number of exceptions while working with ZooKeeper related to the data (no node, bad version or similar).",0,clickhouse,,, +clickhouse.zk.ddl_entry.max,gauge,,,,Max DDL entry of DDLWorker that pushed to zookeeper.,0,clickhouse,,, +clickhouse.zk.exist.count,count,,request,,Number of 'exists' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.exist.total,gauge,,request,,Number of 'exists' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.get.count,count,,request,,Number of 'get' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.get.total,gauge,,request,,Number of 'get' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.list.count,count,,request,,Number of 'list' (getChildren) requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.list.total,gauge,,request,,Number of 'list' (getChildren) requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.multi.count,count,,request,,Number of 'multi' requests to ZooKeeper (compound transactions).,0,clickhouse,,, +clickhouse.zk.multi.total,gauge,,request,,Number of 'multi' requests to ZooKeeper (compound transactions).,0,clickhouse,,, +clickhouse.zk.network.exception.count,count,,,,Number of exceptions while working with ZooKeeper related to network (connection loss or similar).,0,clickhouse,,, +clickhouse.zk.network.exception.total,gauge,,,,Number of exceptions while working with ZooKeeper related to network (connection loss or similar).,0,clickhouse,,, +clickhouse.zk.node.ephemeral,gauge,,node,,The number of ephemeral nodes hold in ZooKeeper.,0,clickhouse,,, +clickhouse.zk.operation.count,count,,operation,,"Number of ZooKeeper operations, which include both read and write operations as well as multi-transactions.",0,clickhouse,,, +clickhouse.zk.operation.total,gauge,,operation,,"Number of ZooKeeper operations, which include both read and write operations as well as multi-transactions.",0,clickhouse,,, +clickhouse.zk.other.exception.count,count,,,,Number of exceptions while working with ZooKeeper other than ZooKeeperUserExceptions and ZooKeeperHardwareExceptions.,0,clickhouse,,, +clickhouse.zk.other.exception.total,gauge,,,,Number of exceptions while working with ZooKeeper other than ZooKeeperUserExceptions and ZooKeeperHardwareExceptions.,0,clickhouse,,, +clickhouse.zk.parts.covered.count,count,,,,"For debugging purposes. Number of parts in ZooKeeper that have a covering part, but doesn't exist on disk. Checked on server start.",0,clickhouse,,, +clickhouse.zk.parts.covered.total,gauge,,,,"For debugging purposes. Number of parts in ZooKeeper that have a covering part, but doesn't exist on disk. Checked on server start.",0,clickhouse,,, +clickhouse.zk.received.size.count,count,,byte,,Number of bytes received over network while communicating with ZooKeeper.,0,clickhouse,,, +clickhouse.zk.received.size.total,gauge,,byte,,Number of bytes received over network while communicating with ZooKeeper.,0,clickhouse,,, +clickhouse.zk.reconfig.count,count,,,,Number of 'reconfig' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.reconfig.total,gauge,,,,Number of 'reconfig' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.remove.count,count,,request,,Number of 'remove' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.remove.total,gauge,,request,,Number of 'remove' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.request,gauge,,request,,The number of requests to ZooKeeper in fly.,0,clickhouse,,, +clickhouse.zk.sent.size.count,count,,byte,,Number of bytes send over network while communicating with ZooKeeper.,0,clickhouse,,, +clickhouse.zk.sent.size.total,gauge,,byte,,Number of bytes send over network while communicating with ZooKeeper.,0,clickhouse,,, +clickhouse.zk.set.count,count,,request,,Number of 'set' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.set.total,gauge,,request,,Number of 'set' requests to ZooKeeper.,0,clickhouse,,, +clickhouse.zk.sync.count,count,,,,Number of 'sync' requests to ZooKeeper. These requests are rarely needed or usable.,0,clickhouse,,, +clickhouse.zk.sync.total,gauge,,,,Number of 'sync' requests to ZooKeeper. These requests are rarely needed or usable.,0,clickhouse,,, +clickhouse.zk.wait.time,gauge,,microsecond,,"Number of microseconds spent waiting for responses from ZooKeeper after creating a request, summed across all the requesting threads.",0,clickhouse,,, +clickhouse.zk.watch,gauge,,event,,The number of watches (event subscriptions) in ZooKeeper.,0,clickhouse,,, +clickhouse.zk.watch.count,count,,event,,The number of watches (event subscriptions) in ZooKeeper.,0,clickhouse,,, +clickhouse.zk.watch.total,gauge,,event,,The number of watches (event subscriptions) in ZooKeeper.,0,clickhouse,,, +clickhouse.errors.raised,count,,error,,"Number of errors raised since last server restart. Tagged by ``error_name``, ``error_code``, and ``remote`` (whether the error originated on a remote shard).",0,clickhouse,,,"error_name,error_code,remote" diff --git a/clickhouse/metadata.csv b/clickhouse/metadata.csv index 3e04fedad7116..4b18ea156d1b2 100644 --- a/clickhouse/metadata.csv +++ b/clickhouse/metadata.csv @@ -24,6 +24,130 @@ clickhouse.async.read.time,gauge,,microsecond,,Time spent in waiting for asynchr clickhouse.async.reader.ignored.bytes.count,count,,,,Number of bytes ignored during asynchronous reading,0,clickhouse,,, clickhouse.async.reader.ignored.bytes.total,gauge,,,,Number of bytes ignored during asynchronous reading,0,clickhouse,,, clickhouse.async.remote_read.time,gauge,,microsecond,,Time spent in waiting for asynchronous remote reads.,0,clickhouse,,, +clickhouse.asynchronous_metrics.AsynchronousHeavyMetricsCalculationTimeSpent,gauge,,,,Time in seconds spent for calculation of asynchronous heavy (tables related) metrics (this is the overhead of asynchronous metrics).,0,clickhouse,,, +clickhouse.asynchronous_metrics.AsynchronousHeavyMetricsUpdateInterval,gauge,,,,Heavy (tables related) metrics update interval,0,clickhouse,,, +clickhouse.asynchronous_metrics.AsynchronousMetricsCalculationTimeSpent,gauge,,,,Time in seconds spent for calculation of asynchronous metrics (this is the overhead of asynchronous metrics).,0,clickhouse,,, +clickhouse.asynchronous_metrics.AsynchronousMetricsUpdateInterval,gauge,,,,Metrics update interval,0,clickhouse,,, +clickhouse.asynchronous_metrics.CGroupMaxCPU,gauge,,,,The maximum number of CPU cores according to CGroups.,0,clickhouse,,, +clickhouse.asynchronous_metrics.CGroupMemoryTotal,gauge,,,,"The total amount of memory in cgroup, in bytes. If stated zero, the limit is the same as OSMemoryTotal.",0,clickhouse,,, +clickhouse.asynchronous_metrics.CGroupMemoryUsed,gauge,,,,"The amount of memory used in cgroup, in bytes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.CGroupSystemTime,gauge,,,,The ratio of time the CPU core was running OS kernel (system) code.,0,clickhouse,,, +clickhouse.asynchronous_metrics.CGroupSystemTimeNormalized,gauge,,,,"The value is similar to `CGroupSystemTime` but divided by the number of available CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.CGroupUserTime,gauge,,,,"The ratio of time the CPU core was running userspace code. This includes also the time when the CPU was under-utilized due to the reasons internal to the CPU (memory loads, pipeline stalls, branch mispredictions, running another SMT core).",0,clickhouse,,, +clickhouse.asynchronous_metrics.CGroupUserTimeNormalized,gauge,,,,"The value is similar to `CGroupUserTime` but divided by the number of available CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.CompiledExpressionCacheBytes,gauge,,,,Total bytes used for the cache of JIT-compiled code.,0,clickhouse,,, +clickhouse.asynchronous_metrics.CompiledExpressionCacheCount,gauge,,,,Total entries in the cache of JIT-compiled code.,0,clickhouse,,, +clickhouse.asynchronous_metrics.DictionaryTotalFailedUpdates,gauge,,,,Sum of sequantially failed updates in all dictionaries,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemCacheBytes,gauge,,,,Total bytes in the `cache` virtual filesystem. This cache is hold on disk.,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemCacheCapacity,gauge,,,,Total capacity in the `cache` virtual filesystem. This cache is hold on disk.,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemCacheFiles,gauge,,,,Total number of cached file segments in the `cache` virtual filesystem. This cache is hold on disk.,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemLogsPathAvailableBytes,gauge,,,,"Available bytes on the volume where ClickHouse logs path is mounted. If this value approaches zero, you should tune the log rotation in the configuration file.",0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemLogsPathAvailableINodes,gauge,,,,The number of available inodes on the volume where ClickHouse logs path is mounted.,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemLogsPathTotalBytes,gauge,,,,"The size of the volume where ClickHouse logs path is mounted, in bytes. It's recommended to have at least 10 GB for logs.",0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemLogsPathTotalINodes,gauge,,,,The total number of inodes on the volume where ClickHouse logs path is mounted.,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemLogsPathUsedBytes,gauge,,,,Used bytes on the volume where ClickHouse logs path is mounted.,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemLogsPathUsedINodes,gauge,,,,The number of used inodes on the volume where ClickHouse logs path is mounted.,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemMainPathAvailableBytes,gauge,,,,Available bytes on the volume where the main ClickHouse path is mounted.,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemMainPathAvailableINodes,gauge,,,,"The number of available inodes on the volume where the main ClickHouse path is mounted. If it is close to zero, it indicates a misconfiguration, and you will get 'no space left on device' even when the disk is not full.",0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemMainPathTotalBytes,gauge,,,,"The size of the volume where the main ClickHouse path is mounted, in bytes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemMainPathTotalINodes,gauge,,,,"The total number of inodes on the volume where the main ClickHouse path is mounted. If it is less than 25 million, it indicates a misconfiguration.",0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemMainPathUsedBytes,gauge,,,,Used bytes on the volume where the main ClickHouse path is mounted.,0,clickhouse,,, +clickhouse.asynchronous_metrics.FilesystemMainPathUsedINodes,gauge,,,,The number of used inodes on the volume where the main ClickHouse path is mounted. This value mostly corresponds to the number of files.,0,clickhouse,,, +clickhouse.asynchronous_metrics.HashTableStatsCacheEntries,gauge,,,,The number of entries in the cache of hash table sizes. The cache for hash table sizes is used for predictive optimization of GROUP BY.,0,clickhouse,,, +clickhouse.asynchronous_metrics.HashTableStatsCacheHits,gauge,,,,The number of times the prediction of a hash table size was correct.,0,clickhouse,,, +clickhouse.asynchronous_metrics.HashTableStatsCacheMisses,gauge,,,,The number of times the prediction of a hash table size was incorrect.,0,clickhouse,,, +clickhouse.asynchronous_metrics.IndexMarkCacheBytes,gauge,,,,Total size of mark cache for secondary indices in bytes.,0,clickhouse,,, +clickhouse.asynchronous_metrics.IndexMarkCacheFiles,gauge,,,,Total number of mark files cached in the mark cache for secondary indices.,0,clickhouse,,, +clickhouse.asynchronous_metrics.IndexUncompressedCacheBytes,gauge,,,,Total size of uncompressed cache in bytes for secondary indices. Uncompressed cache does not usually improve the performance and should be mostly avoided.,0,clickhouse,,, +clickhouse.asynchronous_metrics.IndexUncompressedCacheCells,gauge,,,,Total number of entries in the uncompressed cache for secondary indices. Each entry represents a decompressed block of data. Uncompressed cache does not usually improve performance and should be mostly avoided.,0,clickhouse,,, +clickhouse.asynchronous_metrics.Jitter,gauge,,,,"The difference in time the thread for calculation of the asynchronous metrics was scheduled to wake up and the time it was in fact, woken up. A proxy-indicator of overall system latency and responsiveness.",0,clickhouse,,, +clickhouse.asynchronous_metrics.LoadAverage1,gauge,,,,"The whole system load, averaged with exponential smoothing over 1 minute.",0,clickhouse,,, +clickhouse.asynchronous_metrics.LoadAverage15,gauge,,,,"The whole system load, averaged with exponential smoothing over 15 minutes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.LoadAverage5,gauge,,,,"The whole system load, averaged with exponential smoothing over 5 minutes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.MMapCacheCells,gauge,,,,The number of files opened with `mmap` (mapped in memory). This is used for queries with the setting `local_filesystem_read_method` set to `mmap`. The files opened with `mmap` are kept in the cache to avoid costly TLB flushes.,0,clickhouse,,, +clickhouse.asynchronous_metrics.MarkCacheBytes,gauge,,,,Total size of mark cache in bytes,0,clickhouse,,, +clickhouse.asynchronous_metrics.MarkCacheFiles,gauge,,,,Total number of mark files cached in the mark cache,0,clickhouse,,, +clickhouse.asynchronous_metrics.MaxPartCountForPartition,gauge,,,,"Maximum number of parts per partition across all partitions of all tables of MergeTree family. Values larger than 300 indicates misconfiguration, overload, or massive data loading.",0,clickhouse,,, +clickhouse.asynchronous_metrics.MemoryCode,gauge,,,,"The amount of virtual memory mapped for the pages of machine code of the server process, in bytes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.MemoryDataAndStack,gauge,,,,"The amount of virtual memory mapped for the use of stack and for the allocated memory, in bytes. It is unspecified whether it includes the per-thread stacks and most of the allocated memory, that is allocated with the 'mmap' system call. This metric exists only for completeness reasons. I recommend to use the `MemoryResident` metric for monitoring.",0,clickhouse,,, +clickhouse.asynchronous_metrics.MemoryResident,gauge,,,,"The amount of physical memory used by the server process, in bytes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.MemoryResidentMax,gauge,,,,"Maximum amount of physical memory used by the server process, in bytes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.MemoryShared,gauge,,,,"The amount of memory used by the server process, that is also shared by another processes, in bytes. ClickHouse does not use shared memory, but some memory can be labeled by OS as shared for its own reasons. This metric does not make a lot of sense to watch, and it exists only for completeness reasons.",0,clickhouse,,, +clickhouse.asynchronous_metrics.MemoryVirtual,gauge,,,,"The size of the virtual address space allocated by the server process, in bytes. The size of the virtual address space is usually much greater than the physical memory consumption, and should not be used as an estimate for the memory consumption. The large values of this metric are totally normal, and makes only technical sense.",0,clickhouse,,, +clickhouse.asynchronous_metrics.NetworkTCPReceiveQueue,gauge,,,,Total size of receive queues of network sockets used on the server across TCPv4 and TCPv6.,0,clickhouse,,, +clickhouse.asynchronous_metrics.NetworkTCPSocketRemoteAddresses,gauge,,,,Total number of unique remote addresses of network sockets used on the server across TCPv4 and TCPv6.,0,clickhouse,,, +clickhouse.asynchronous_metrics.NetworkTCPSockets,gauge,,,,"Total number of network sockets used on the server across TCPv4 and TCPv6, in all states.",0,clickhouse,,, +clickhouse.asynchronous_metrics.NetworkTCPTransmitQueue,gauge,,,,Total size of transmit queues of network sockets used on the server across TCPv4 and TCPv6.,0,clickhouse,,, +clickhouse.asynchronous_metrics.NetworkTCPUnrecoveredRetransmits,gauge,,,,Total size of current retransmits (unrecovered at this moment) of network sockets used on the server across TCPv4 and TCPv6.,0,clickhouse,,, +clickhouse.asynchronous_metrics.NumberOfDatabases,gauge,,,,Total number of databases on the server.,0,clickhouse,,, +clickhouse.asynchronous_metrics.NumberOfDetachedByUserParts,gauge,,,,"The total number of parts detached from MergeTree tables by users with the `ALTER TABLE DETACH` query (as opposed to unexpected, broken or ignored parts). The server does not care about detached parts and they can be removed.",0,clickhouse,,, +clickhouse.asynchronous_metrics.NumberOfDetachedParts,gauge,,,,"The total number of parts detached from MergeTree tables. A part can be detached by a user with the `ALTER TABLE DETACH` query or by the server itself it the part is broken, unexpected or unneeded. The server does not care about detached parts and they can be removed.",0,clickhouse,,, +clickhouse.asynchronous_metrics.NumberOfPendingMutations,gauge,,,,The total number of mutations that are in left to be mutated.,0,clickhouse,,, +clickhouse.asynchronous_metrics.NumberOfPendingMutationsOverExecutionTime,gauge,,,,The total number of mutations which have data part left to be mutated over the specified max_pending_mutations_execution_time_to_warn setting.,0,clickhouse,,, +clickhouse.asynchronous_metrics.NumberOfStuckMutations,gauge,,,,The total number of mutations which have data part left to be mutated over the last 1 hour.,0,clickhouse,,, +clickhouse.asynchronous_metrics.NumberOfTables,gauge,,,,"Total number of tables summed across the databases on the server, excluding the databases that cannot contain MergeTree tables. The excluded database engines are those who generate the set of tables on the fly, like `Lazy`, `MySQL`, `PostgreSQL`, `SQlite`.",0,clickhouse,,, +clickhouse.asynchronous_metrics.NumberOfTablesSystem,gauge,,,,Total number of tables in the system database on the server stored in tables of MergeTree family.,0,clickhouse,,, +clickhouse.asynchronous_metrics.OSCPUOverload,gauge,,,,"Relative CPU deficit, calculated as: how many threads are waiting for CPU relative to the number of threads, using CPU. If it is greater than zero, the server would benefit from more CPU. If it is significantly greater than zero, the server could become unresponsive. The metric is accumulated between the updates of asynchronous metrics.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSContextSwitches,gauge,,,,"The number of context switches that the system underwent on the host machine. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSGuestNiceTimeNormalized,gauge,,,,"The value is similar to `OSGuestNiceTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSGuestTimeNormalized,gauge,,,,"The value is similar to `OSGuestTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSIOWaitTimeNormalized,gauge,,,,"The value is similar to `OSIOWaitTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSIdleTimeNormalized,gauge,,,,"The value is similar to `OSIdleTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSInterrupts,gauge,,,,"The number of interrupts on the host machine. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSIrqTimeNormalized,gauge,,,,"The value is similar to `OSIrqTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSMemoryAvailable,gauge,,,,"The amount of memory available to be used by programs, in bytes. This is very similar to the `OSMemoryFreePlusCached` metric. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSMemoryBuffers,gauge,,,,"The amount of memory used by OS kernel buffers, in bytes. This should be typically small, and large values may indicate a misconfiguration of the OS. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSMemoryCached,gauge,,,,"The amount of memory used by the OS page cache, in bytes. Typically, almost all available memory is used by the OS page cache - high values of this metric are normal and expected. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSMemoryFreePlusCached,gauge,,,,"The amount of free memory plus OS page cache memory on the host system, in bytes. This memory is available to be used by programs. The value should be very similar to `OSMemoryAvailable`. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSMemoryFreeWithoutCached,gauge,,,,"The amount of free memory on the host system, in bytes. This does not include the memory used by the OS page cache memory, in bytes. The page cache memory is also available for usage by programs, so the value of this metric can be confusing. See the `OSMemoryAvailable` metric instead. For convenience we also provide the `OSMemoryFreePlusCached` metric, that should be somewhat similar to OSMemor...",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSMemorySwapCached,gauge,,,,"The amount of memory in swap that was also loaded in RAM. Swap should be disabled on production systems. If the value of this metric is large, it indicates a misconfiguration. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSMemoryTotal,gauge,,,,"The total amount of memory on the host system, in bytes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSNiceTimeNormalized,gauge,,,,"The value is similar to `OSNiceTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSOpenFiles,gauge,,,,"The total number of opened files on the host machine. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSProcessesBlocked,gauge,,,,"Number of threads blocked waiting for I/O to complete (`man procfs`). This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSProcessesCreated,gauge,,,,"The number of processes created. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSProcessesRunning,gauge,,,,"The number of runnable (running or ready to run) threads by the operating system. This is a system-wide metric, it includes all the processes on the host machine, not just clickhouse-server.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSSoftIrqTimeNormalized,gauge,,,,"The value is similar to `OSSoftIrqTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSStealTimeNormalized,gauge,,,,"The value is similar to `OSStealTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSSystemTimeNormalized,gauge,,,,"The value is similar to `OSSystemTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSThreadsRunnable,gauge,,,,"The total number of 'runnable' threads, as the OS kernel scheduler seeing it.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSThreadsTotal,gauge,,,,"The total number of threads, as the OS kernel scheduler seeing it.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSUptime,gauge,,,,"The uptime of the host server (the machine where ClickHouse is running), in seconds.",0,clickhouse,,, +clickhouse.asynchronous_metrics.OSUserTimeNormalized,gauge,,,,"The value is similar to `OSUserTime` but divided to the number of CPU cores to be measured in the [0..1] interval regardless of the number of cores. This allows you to average the values of this metric across multiple servers in a cluster even if the number of cores is non-uniform, and still get the average resource utilization metric.",0,clickhouse,,, +clickhouse.asynchronous_metrics.PageCacheBytes,gauge,,,,Total size of userspace page cache in bytes.,0,clickhouse,,, +clickhouse.asynchronous_metrics.PageCacheCells,gauge,,,,Total number of entries in the userspace page cache.,0,clickhouse,,, +clickhouse.asynchronous_metrics.PageCacheMaxBytes,gauge,,,,"Current limit on the size of userspace page cache, in bytes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.PageCachePinnedBytes,gauge,,,,Userspace page cache memory that's currently in use and can't be evicted,0,clickhouse,,, +clickhouse.asynchronous_metrics.PrimaryIndexCacheBytes,gauge,,,,Total size of primary index cache in bytes,0,clickhouse,,, +clickhouse.asynchronous_metrics.PrimaryIndexCacheFiles,gauge,,,,Total number of index files cached in the primary index cache,0,clickhouse,,, +clickhouse.asynchronous_metrics.QueryCacheBytes,gauge,,,,Total size of the query cache in bytes.,0,clickhouse,,, +clickhouse.asynchronous_metrics.QueryCacheEntries,gauge,,,,Total number of entries in the query cache.,0,clickhouse,,, +clickhouse.asynchronous_metrics.ReplicasMaxAbsoluteDelay,gauge,,,,"Maximum difference in seconds between the most fresh replicated part and the most fresh data part still to be replicated, across Replicated tables. A very high value indicates a replica with no data.",0,clickhouse,,, +clickhouse.asynchronous_metrics.ReplicasMaxInsertsInQueue,gauge,,,,Maximum number of INSERT operations in the queue (still to be replicated) across Replicated tables.,0,clickhouse,,, +clickhouse.asynchronous_metrics.ReplicasMaxMergesInQueue,gauge,,,,Maximum number of merge operations in the queue (still to be applied) across Replicated tables.,0,clickhouse,,, +clickhouse.asynchronous_metrics.ReplicasMaxQueueSize,gauge,,,,"Maximum queue size (in the number of operations like get, merge) across Replicated tables.",0,clickhouse,,, +clickhouse.asynchronous_metrics.ReplicasMaxRelativeDelay,gauge,,,,"Maximum difference between the replica delay and the delay of the most up-to-date replica of the same table, across Replicated tables.",0,clickhouse,,, +clickhouse.asynchronous_metrics.ReplicasSumInsertsInQueue,gauge,,,,Sum of INSERT operations in the queue (still to be replicated) across Replicated tables.,0,clickhouse,,, +clickhouse.asynchronous_metrics.ReplicasSumMergesInQueue,gauge,,,,Sum of merge operations in the queue (still to be applied) across Replicated tables.,0,clickhouse,,, +clickhouse.asynchronous_metrics.ReplicasSumQueueSize,gauge,,,,"Sum queue size (in the number of operations like get, merge) across Replicated tables.",0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalBytesOfMergeTreeTables,gauge,,,,"Total amount of bytes (compressed, including data and indices) stored in all tables of MergeTree family.",0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalBytesOfMergeTreeTablesSystem,gauge,,,,"Total amount of bytes (compressed, including data and indices) stored in tables of MergeTree family in the system database.",0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalIndexGranularityBytesInMemory,gauge,,,,The total amount of memory (in bytes) used by index granulas (only takes active parts into account).,0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalIndexGranularityBytesInMemoryAllocated,gauge,,,,The total amount of memory (in bytes) reserved for index granulas (only takes active parts into account).,0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalPartsOfMergeTreeTables,gauge,,,,Total amount of data parts in all tables of MergeTree family. Numbers larger than 10 000 will negatively affect the server startup time and it may indicate unreasonable choice of the partition key.,0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalPartsOfMergeTreeTablesSystem,gauge,,,,Total amount of data parts in tables of MergeTree family in the system database.,0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalPrimaryKeyBytesInMemory,gauge,,,,The total amount of memory (in bytes) used by primary key values (only takes active parts into account).,0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalPrimaryKeyBytesInMemoryAllocated,gauge,,,,The total amount of memory (in bytes) reserved for primary key values (only takes active parts into account).,0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalRowsOfMergeTreeTables,gauge,,,,Total amount of rows (records) stored in all tables of MergeTree family.,0,clickhouse,,, +clickhouse.asynchronous_metrics.TotalRowsOfMergeTreeTablesSystem,gauge,,,,Total amount of rows (records) stored in tables of MergeTree family in the system database.,0,clickhouse,,, +clickhouse.asynchronous_metrics.TrackedMemory,gauge,,,,"Memory tracked by ClickHouse (should be equal to MemoryTracking metric), in bytes.",0,clickhouse,,, +clickhouse.asynchronous_metrics.UncompressedCacheBytes,gauge,,,,Total size of uncompressed cache in bytes. Uncompressed cache does not usually improve the performance and should be mostly avoided.,0,clickhouse,,, +clickhouse.asynchronous_metrics.UncompressedCacheCells,gauge,,,,Total number of entries in the uncompressed cache. Each entry represents a decompressed block of data. Uncompressed cache does not usually improve performance and should be mostly avoided.,0,clickhouse,,, +clickhouse.asynchronous_metrics.UnreclaimableRSS,gauge,,,,"The amount of physical memory used by the server process, in bytes, excluding memory reclaimable by the OS (MADV_FREE)",0,clickhouse,,, +clickhouse.asynchronous_metrics.Uptime,gauge,,,,The server uptime in seconds. It includes the time spent for server initialization before accepting connections.,0,clickhouse,,, +clickhouse.asynchronous_metrics.VMMaxMapCount,gauge,,,,The maximum number of memory mappings a process may have (/proc/sys/vm/max_map_count).,0,clickhouse,,, +clickhouse.asynchronous_metrics.VMNumMaps,gauge,,,,"The current number of memory mappings of the process (/proc/self/maps). If it is close to the maximum (VMMaxMapCount), you should increase the limit for vm.max_map_count in /etc/sysctl.conf",0,clickhouse,,, +clickhouse.asynchronous_metrics.jemalloc.epoch,gauge,,,,"An internal incremental update number of the statistics of jemalloc (Jason Evans' memory allocator), used in all other `jemalloc` metrics.",0,clickhouse,,, clickhouse.attached.database,gauge,,,,"Active database, used by current and upcoming SELECTs.",0,clickhouse,,, clickhouse.attached.table,gauge,,,,"Active table, used by current and upcoming SELECTs.",0,clickhouse,,, clickhouse.azure.blob_storage.copy_object.count,count,,,,Number of Azure blob storage API CopyObject calls,0,clickhouse,,, @@ -118,12 +242,8 @@ clickhouse.cache.page.chunk.misses.total,gauge,,,,Number of times a chunk has no clickhouse.cache.page.chunk.shared.count,count,,,,"Number of times a chunk has been found in the userspace page cache, already in use by another thread.",0,clickhouse,,, clickhouse.cache.page.chunk.shared.total,gauge,,,,"Number of times a chunk has been found in the userspace page cache, already in use by another thread.",0,clickhouse,,, clickhouse.cache.page.thread_pool_reader.prepare.time,gauge,,microsecond,,Time spent on preparation (e.g. call to reader seek() method),0,clickhouse,,, -clickhouse.cache.page.thread_pool_reader.read.count,count,,,,Number of bytes read from the page cache in ThreadPoolReader,0,clickhouse,,, clickhouse.cache.page.thread_pool_reader.read.miss.time,gauge,,microsecond,,Time spent reading data inside the asynchronous job in ThreadPoolReader - when read was not done from the page cache.,0,clickhouse,,, -clickhouse.cache.page.thread_pool_reader.read.size.count,count,,,,Bytes read from the page cache in ThreadPoolReader,0,clickhouse,,, -clickhouse.cache.page.thread_pool_reader.read.size.total,gauge,,,,Bytes read from the page cache in ThreadPoolReader,0,clickhouse,,, clickhouse.cache.page.thread_pool_reader.read.time,gauge,,microsecond,,Time spent reading data from page cache in ThreadPoolReader.,0,clickhouse,,, -clickhouse.cache.page.thread_pool_reader.read.total,gauge,,,,Number of bytes read from the page cache in ThreadPoolReader,0,clickhouse,,, clickhouse.cache.query.hits.count,count,,,,Number of times a query result has been found in the query cache (and query computation was avoided). Only updated for SELECT queries with SETTING use_query_cache = 1.,0,clickhouse,,, clickhouse.cache.query.hits.total,gauge,,,,Number of times a query result has been found in the query cache (and query computation was avoided). Only updated for SELECT queries with SETTING use_query_cache = 1.,0,clickhouse,,, clickhouse.cache.query.misses.count,count,,,,Number of times a query result has not been found in the query cache (and required query computation). Only updated for SELECT queries with SETTING use_query_cache = 1.,0,clickhouse,,, @@ -322,6 +442,1829 @@ clickhouse.drained_connections.sync,gauge,,connection,,Number of connections dra clickhouse.drained_connections.sync.active,gauge,,connection,,Number of active connections drained synchronously.,0,clickhouse,,, clickhouse.error.dns.count,count,,error,, Number of errors in DNS resolution,0,clickhouse,,, clickhouse.error.dns.total,gauge,,error,,Total count of errors in DNS resolution,0,clickhouse,,, +clickhouse.errors.raised,count,,error,,"Number of errors raised since last server restart. Tagged by ``error_name``, ``error_code``, and ``remote`` (whether the error originated on a remote shard).",0,clickhouse,,,"error_name,error_code,remote" +clickhouse.events.AIORead.count,count,,,,Number of reads with Linux or FreeBSD AIO interface (count),0,clickhouse,,, +clickhouse.events.AIORead.total,gauge,,,,Number of reads with Linux or FreeBSD AIO interface (total),0,clickhouse,,, +clickhouse.events.AIOReadBytes.count,count,,,,Number of bytes read with Linux or FreeBSD AIO interface (count),0,clickhouse,,, +clickhouse.events.AIOReadBytes.total,gauge,,,,Number of bytes read with Linux or FreeBSD AIO interface (total),0,clickhouse,,, +clickhouse.events.AIOWrite.count,count,,,,Number of writes with Linux or FreeBSD AIO interface (count),0,clickhouse,,, +clickhouse.events.AIOWrite.total,gauge,,,,Number of writes with Linux or FreeBSD AIO interface (total),0,clickhouse,,, +clickhouse.events.AIOWriteBytes.count,count,,,,Number of bytes written with Linux or FreeBSD AIO interface (count),0,clickhouse,,, +clickhouse.events.AIOWriteBytes.total,gauge,,,,Number of bytes written with Linux or FreeBSD AIO interface (total),0,clickhouse,,, +clickhouse.events.AddressesDiscovered.count,count,,,,Total count of new addresses in DNS resolve results for HTTP connections (count),0,clickhouse,,, +clickhouse.events.AddressesDiscovered.total,gauge,,,,Total count of new addresses in DNS resolve results for HTTP connections (total),0,clickhouse,,, +clickhouse.events.AddressesExpired.count,count,,,,Total count of expired addresses which is no longer presented in DNS resolve results for HTTP connections (count),0,clickhouse,,, +clickhouse.events.AddressesExpired.total,gauge,,,,Total count of expired addresses which is no longer presented in DNS resolve results for HTTP connections (total),0,clickhouse,,, +clickhouse.events.AddressesMarkedAsFailed.count,count,,,,Total count of addresses which have been marked as faulty due to connection errors for HTTP connections (count),0,clickhouse,,, +clickhouse.events.AddressesMarkedAsFailed.total,gauge,,,,Total count of addresses which have been marked as faulty due to connection errors for HTTP connections (total),0,clickhouse,,, +clickhouse.events.AggregatingSortedMilliseconds,gauge,,millisecond,,Total time spent while aggregating sorted columns,0,clickhouse,,, +clickhouse.events.AggregationHashTablesInitializedAsTwoLevel.count,count,,,,How many hash tables were inited as two-level for aggregation. (count),0,clickhouse,,, +clickhouse.events.AggregationHashTablesInitializedAsTwoLevel.total,gauge,,,,How many hash tables were inited as two-level for aggregation. (total),0,clickhouse,,, +clickhouse.events.AggregationOptimizedEqualRangesOfKeys.count,count,,,,For how many blocks optimization of equal ranges of keys was applied (count),0,clickhouse,,, +clickhouse.events.AggregationOptimizedEqualRangesOfKeys.total,gauge,,,,For how many blocks optimization of equal ranges of keys was applied (total),0,clickhouse,,, +clickhouse.events.AggregationPreallocatedElementsInHashTables.count,count,,,,How many elements were preallocated in hash tables for aggregation. (count),0,clickhouse,,, +clickhouse.events.AggregationPreallocatedElementsInHashTables.total,gauge,,,,How many elements were preallocated in hash tables for aggregation. (total),0,clickhouse,,, +clickhouse.events.AnalyzePatchRangesMicroseconds.count,count,,,,Total time spent analyzing index of patch parts (count),0,clickhouse,,, +clickhouse.events.AnalyzePatchRangesMicroseconds.total,gauge,,,,Total time spent analyzing index of patch parts (total),0,clickhouse,,, +clickhouse.events.ApplyPatchesMicroseconds.count,count,,,,Total time spent applying patch parts to blocks (count),0,clickhouse,,, +clickhouse.events.ApplyPatchesMicroseconds.total,gauge,,,,Total time spent applying patch parts to blocks (total),0,clickhouse,,, +clickhouse.events.ArenaAllocBytes.count,count,,,,Number of bytes allocated for memory Arena (used for GROUP BY and similar operations) (count),0,clickhouse,,, +clickhouse.events.ArenaAllocBytes.total,gauge,,,,Number of bytes allocated for memory Arena (used for GROUP BY and similar operations) (total),0,clickhouse,,, +clickhouse.events.ArenaAllocChunks.count,count,,,,Number of chunks allocated for memory Arena (used for GROUP BY and similar operations) (count),0,clickhouse,,, +clickhouse.events.ArenaAllocChunks.total,gauge,,,,Number of chunks allocated for memory Arena (used for GROUP BY and similar operations) (total),0,clickhouse,,, +clickhouse.events.AsyncInsertBytes.count,count,,,,Data size in bytes of asynchronous INSERT queries. (count),0,clickhouse,,, +clickhouse.events.AsyncInsertBytes.total,gauge,,,,Data size in bytes of asynchronous INSERT queries. (total),0,clickhouse,,, +clickhouse.events.AsyncInsertCacheHits.count,count,,,,Number of times a duplicate hash id has been found in asynchronous INSERT hash id cache. (count),0,clickhouse,,, +clickhouse.events.AsyncInsertCacheHits.total,gauge,,,,Number of times a duplicate hash id has been found in asynchronous INSERT hash id cache. (total),0,clickhouse,,, +clickhouse.events.AsyncInsertQuery.count,count,,,,"Same as InsertQuery, but only for asynchronous INSERT queries. (count)",0,clickhouse,,, +clickhouse.events.AsyncInsertQuery.total,gauge,,,,"Same as InsertQuery, but only for asynchronous INSERT queries. (total)",0,clickhouse,,, +clickhouse.events.AsyncInsertRows.count,count,,,,Number of rows inserted by asynchronous INSERT queries. (count),0,clickhouse,,, +clickhouse.events.AsyncInsertRows.total,gauge,,,,Number of rows inserted by asynchronous INSERT queries. (total),0,clickhouse,,, +clickhouse.events.AsyncLoaderWaitMicroseconds,gauge,,microsecond,,Total time a query was waiting for async loader jobs.,0,clickhouse,,, +clickhouse.events.AsyncLoggingConsoleDroppedMessages.count,count,,,,How many messages have been dropped from the console log due to the async log queue being full (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingConsoleDroppedMessages.total,gauge,,,,How many messages have been dropped from the console log due to the async log queue being full (total),0,clickhouse,,, +clickhouse.events.AsyncLoggingConsoleTotalMessages.count,count,,,,How many messages (accepted or dropped) have been sent to the async queue for the console log (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingConsoleTotalMessages.total,gauge,,,,How many messages (accepted or dropped) have been sent to the async queue for the console log (total),0,clickhouse,,, +clickhouse.events.AsyncLoggingErrorFileLogDroppedMessages.count,count,,,,How many messages have been dropped from error file log due to the async log queue being full (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingErrorFileLogDroppedMessages.total,gauge,,,,How many messages have been dropped from error file log due to the async log queue being full (total),0,clickhouse,,, +clickhouse.events.AsyncLoggingErrorFileLogTotalMessages.count,count,,,,How many messages (accepted or dropped) have been sent to the async queue for the error file log (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingErrorFileLogTotalMessages.total,gauge,,,,How many messages (accepted or dropped) have been sent to the async queue for the error file log (total),0,clickhouse,,, +clickhouse.events.AsyncLoggingFileLogDroppedMessages.count,count,,,,How many messages have been dropped from the file log due to the async log queue being full (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingFileLogDroppedMessages.total,gauge,,,,How many messages have been dropped from the file log due to the async log queue being full (total),0,clickhouse,,, +clickhouse.events.AsyncLoggingFileLogTotalMessages.count,count,,,,How many messages (accepted or dropped) have been sent to the async queue for the file log (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingFileLogTotalMessages.total,gauge,,,,How many messages (accepted or dropped) have been sent to the async queue for the file log (total),0,clickhouse,,, +clickhouse.events.AsyncLoggingSyslogDroppedMessages.count,count,,,,How many messages have been dropped from the syslog due to the async log queue being full (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingSyslogDroppedMessages.total,gauge,,,,How many messages have been dropped from the syslog due to the async log queue being full (total),0,clickhouse,,, +clickhouse.events.AsyncLoggingSyslogTotalMessages.count,count,,,,How many messages (accepted or dropped) have been sent to the async queue for the syslog (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingSyslogTotalMessages.total,gauge,,,,How many messages (accepted or dropped) have been sent to the async queue for the syslog (total),0,clickhouse,,, +clickhouse.events.AsyncLoggingTextLogDroppedMessages.count,count,,,,How many messages have been dropped from text_log due to the async log queue being full (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingTextLogDroppedMessages.total,gauge,,,,How many messages have been dropped from text_log due to the async log queue being full (total),0,clickhouse,,, +clickhouse.events.AsyncLoggingTextLogTotalMessages.count,count,,,,How many messages (accepted or dropped) have been sent to the async queue for the text_log (count),0,clickhouse,,, +clickhouse.events.AsyncLoggingTextLogTotalMessages.total,gauge,,,,How many messages (accepted or dropped) have been sent to the async queue for the text_log (total),0,clickhouse,,, +clickhouse.events.AsynchronousReadWaitMicroseconds,gauge,,microsecond,,Time spent in waiting for asynchronous reads in asynchronous local read.,0,clickhouse,,, +clickhouse.events.AsynchronousReaderIgnoredBytes.count,count,,,,Number of bytes ignored during asynchronous reading (count),0,clickhouse,,, +clickhouse.events.AsynchronousReaderIgnoredBytes.total,gauge,,,,Number of bytes ignored during asynchronous reading (total),0,clickhouse,,, +clickhouse.events.AsynchronousRemoteReadWaitMicroseconds,gauge,,microsecond,,Time spent in waiting for asynchronous remote reads.,0,clickhouse,,, +clickhouse.events.AzureCommitBlockList.count,count,,,,Number of Azure blob storage API CommitBlockList calls (count),0,clickhouse,,, +clickhouse.events.AzureCommitBlockList.total,gauge,,,,Number of Azure blob storage API CommitBlockList calls (total),0,clickhouse,,, +clickhouse.events.AzureCopyObject.count,count,,,,Number of Azure blob storage API CopyObject calls (count),0,clickhouse,,, +clickhouse.events.AzureCopyObject.total,gauge,,,,Number of Azure blob storage API CopyObject calls (total),0,clickhouse,,, +clickhouse.events.AzureCreateContainer.count,count,,,,Number of Azure blob storage API CreateContainer calls. (count),0,clickhouse,,, +clickhouse.events.AzureCreateContainer.total,gauge,,,,Number of Azure blob storage API CreateContainer calls. (total),0,clickhouse,,, +clickhouse.events.AzureDeleteObjects.count,count,,,,Number of Azure blob storage API DeleteObject(s) calls. (count),0,clickhouse,,, +clickhouse.events.AzureDeleteObjects.total,gauge,,,,Number of Azure blob storage API DeleteObject(s) calls. (total),0,clickhouse,,, +clickhouse.events.AzureGetObject.count,count,,,,Number of Azure API GetObject calls. (count),0,clickhouse,,, +clickhouse.events.AzureGetObject.total,gauge,,,,Number of Azure API GetObject calls. (total),0,clickhouse,,, +clickhouse.events.AzureGetProperties.count,count,,,,Number of Azure blob storage API GetProperties calls. (count),0,clickhouse,,, +clickhouse.events.AzureGetProperties.total,gauge,,,,Number of Azure blob storage API GetProperties calls. (total),0,clickhouse,,, +clickhouse.events.AzureGetRequestThrottlerCount.count,count,,,,Number of Azure GET requests passed through throttler. (count),0,clickhouse,,, +clickhouse.events.AzureGetRequestThrottlerCount.total,gauge,,,,Number of Azure GET requests passed through throttler. (total),0,clickhouse,,, +clickhouse.events.AzureGetRequestThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform Azure GET request throttling.,0,clickhouse,,, +clickhouse.events.AzureListObjects.count,count,,,,Number of Azure blob storage API ListObjects calls. (count),0,clickhouse,,, +clickhouse.events.AzureListObjects.total,gauge,,,,Number of Azure blob storage API ListObjects calls. (total),0,clickhouse,,, +clickhouse.events.AzurePutRequestThrottlerCount.count,count,,,,Number of Azure PUT requests passed through throttler. (count),0,clickhouse,,, +clickhouse.events.AzurePutRequestThrottlerCount.total,gauge,,,,Number of Azure PUT requests passed through throttler. (total),0,clickhouse,,, +clickhouse.events.AzurePutRequestThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform Azure PUT request throttling.,0,clickhouse,,, +clickhouse.events.AzureReadMicroseconds,gauge,,microsecond,,Total time spent waiting for Azure read requests.,0,clickhouse,,, +clickhouse.events.AzureReadRequestsCount.count,count,,,,Number of Azure read requests. (count),0,clickhouse,,, +clickhouse.events.AzureReadRequestsCount.total,gauge,,,,Number of Azure read requests. (total),0,clickhouse,,, +clickhouse.events.AzureReadRequestsErrors.count,count,,,,Number of Azure read request errors. (count),0,clickhouse,,, +clickhouse.events.AzureReadRequestsErrors.total,gauge,,,,Number of Azure read request errors. (total),0,clickhouse,,, +clickhouse.events.AzureReadRequestsRedirects.count,count,,,,Number of Azure read request redirects. (count),0,clickhouse,,, +clickhouse.events.AzureReadRequestsRedirects.total,gauge,,,,Number of Azure read request redirects. (total),0,clickhouse,,, +clickhouse.events.AzureReadRequestsThrottling.count,count,,,,Number of Azure read requests throttled. (count),0,clickhouse,,, +clickhouse.events.AzureReadRequestsThrottling.total,gauge,,,,Number of Azure read requests throttled. (total),0,clickhouse,,, +clickhouse.events.AzureStageBlock.count,count,,,,Number of Azure blob storage API StageBlock calls (count),0,clickhouse,,, +clickhouse.events.AzureStageBlock.total,gauge,,,,Number of Azure blob storage API StageBlock calls (total),0,clickhouse,,, +clickhouse.events.AzureUpload.count,count,,,,Number of Azure blob storage API Upload calls (count),0,clickhouse,,, +clickhouse.events.AzureUpload.total,gauge,,,,Number of Azure blob storage API Upload calls (total),0,clickhouse,,, +clickhouse.events.AzureWriteMicroseconds,gauge,,microsecond,,Total time spent waiting for Azure read requests.,0,clickhouse,,, +clickhouse.events.AzureWriteRequestsCount.count,count,,,,Number of Azure write requests. (count),0,clickhouse,,, +clickhouse.events.AzureWriteRequestsCount.total,gauge,,,,Number of Azure write requests. (total),0,clickhouse,,, +clickhouse.events.AzureWriteRequestsErrors.count,count,,,,Number of Azure write request errors. (count),0,clickhouse,,, +clickhouse.events.AzureWriteRequestsErrors.total,gauge,,,,Number of Azure write request errors. (total),0,clickhouse,,, +clickhouse.events.AzureWriteRequestsRedirects.count,count,,,,Number of Azure write request redirects. (count),0,clickhouse,,, +clickhouse.events.AzureWriteRequestsRedirects.total,gauge,,,,Number of Azure write request redirects. (total),0,clickhouse,,, +clickhouse.events.AzureWriteRequestsThrottling.count,count,,,,Number of Azure write requests throttled. (count),0,clickhouse,,, +clickhouse.events.AzureWriteRequestsThrottling.total,gauge,,,,Number of Azure write requests throttled. (total),0,clickhouse,,, +clickhouse.events.BackgroundLoadingMarksTasks.count,count,,,,Number of background tasks for loading marks (count),0,clickhouse,,, +clickhouse.events.BackgroundLoadingMarksTasks.total,gauge,,,,Number of background tasks for loading marks (total),0,clickhouse,,, +clickhouse.events.BackupEntriesCollectorForTablesDataMicroseconds,gauge,,microsecond,,Time spent making backup entries for tables data,0,clickhouse,,, +clickhouse.events.BackupEntriesCollectorMicroseconds,gauge,,microsecond,,Time spent making backup entries,0,clickhouse,,, +clickhouse.events.BackupEntriesCollectorRunPostTasksMicroseconds,gauge,,microsecond,,Time spent running post tasks after making backup entries,0,clickhouse,,, +clickhouse.events.BackupLockFileReads.count,count,,,,How many times the '.lock' file was read while making backup (count),0,clickhouse,,, +clickhouse.events.BackupLockFileReads.total,gauge,,,,How many times the '.lock' file was read while making backup (total),0,clickhouse,,, +clickhouse.events.BackupPreparingFileInfosMicroseconds,gauge,,microsecond,,Time spent preparing file infos for backup entries,0,clickhouse,,, +clickhouse.events.BackupReadLocalBytesToCalculateChecksums.count,count,,,,Total size of files read locally to calculate checksums for backup entries (count),0,clickhouse,,, +clickhouse.events.BackupReadLocalBytesToCalculateChecksums.total,gauge,,,,Total size of files read locally to calculate checksums for backup entries (total),0,clickhouse,,, +clickhouse.events.BackupReadLocalFilesToCalculateChecksums.count,count,,,,Number of files read locally to calculate checksums for backup entries (count),0,clickhouse,,, +clickhouse.events.BackupReadLocalFilesToCalculateChecksums.total,gauge,,,,Number of files read locally to calculate checksums for backup entries (total),0,clickhouse,,, +clickhouse.events.BackupReadMetadataMicroseconds,gauge,,microsecond,,Time spent reading backup metadata from .backup file,0,clickhouse,,, +clickhouse.events.BackupReadRemoteBytesToCalculateChecksums.count,count,,,,Total size of files read from remote disks to calculate checksums for backup entries (count),0,clickhouse,,, +clickhouse.events.BackupReadRemoteBytesToCalculateChecksums.total,gauge,,,,Total size of files read from remote disks to calculate checksums for backup entries (total),0,clickhouse,,, +clickhouse.events.BackupReadRemoteFilesToCalculateChecksums.count,count,,,,Number of files read from remote disks to calculate checksums for backup entries (count),0,clickhouse,,, +clickhouse.events.BackupReadRemoteFilesToCalculateChecksums.total,gauge,,,,Number of files read from remote disks to calculate checksums for backup entries (total),0,clickhouse,,, +clickhouse.events.BackupThrottlerBytes.count,count,,,,Bytes passed through 'max_backup_bandwidth_for_server' throttler. (count),0,clickhouse,,, +clickhouse.events.BackupThrottlerBytes.total,gauge,,,,Bytes passed through 'max_backup_bandwidth_for_server' throttler. (total),0,clickhouse,,, +clickhouse.events.BackupThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_backup_bandwidth_for_server' throttling.,0,clickhouse,,, +clickhouse.events.BackupWriteMetadataMicroseconds,gauge,,microsecond,,Time spent writing backup metadata to .backup file,0,clickhouse,,, +clickhouse.events.BackupsOpenedForRead.count,count,,,,Number of backups opened for reading (count),0,clickhouse,,, +clickhouse.events.BackupsOpenedForRead.total,gauge,,,,Number of backups opened for reading (total),0,clickhouse,,, +clickhouse.events.BackupsOpenedForUnlock.count,count,,,,Number of backups opened for unlocking (count),0,clickhouse,,, +clickhouse.events.BackupsOpenedForUnlock.total,gauge,,,,Number of backups opened for unlocking (total),0,clickhouse,,, +clickhouse.events.BackupsOpenedForWrite.count,count,,,,Number of backups opened for writing (count),0,clickhouse,,, +clickhouse.events.BackupsOpenedForWrite.total,gauge,,,,Number of backups opened for writing (total),0,clickhouse,,, +clickhouse.events.BuildPatchesJoinMicroseconds.count,count,,,,Total time spent building indexes and hash tables for applying patch parts with Join mode (count),0,clickhouse,,, +clickhouse.events.BuildPatchesJoinMicroseconds.total,gauge,,,,Total time spent building indexes and hash tables for applying patch parts with Join mode (total),0,clickhouse,,, +clickhouse.events.BuildPatchesMergeMicroseconds.count,count,,,,Total time spent building indexes for applying patch parts with Merge mode (count),0,clickhouse,,, +clickhouse.events.BuildPatchesMergeMicroseconds.total,gauge,,,,Total time spent building indexes for applying patch parts with Merge mode (total),0,clickhouse,,, +clickhouse.events.CacheWarmerBytesDownloaded.count,count,,,,Amount of data fetched into filesystem cache by dedicated background threads. (count),0,clickhouse,,, +clickhouse.events.CacheWarmerBytesDownloaded.total,gauge,,,,Amount of data fetched into filesystem cache by dedicated background threads. (total),0,clickhouse,,, +clickhouse.events.CacheWarmerDataPartsDownloaded.count,count,,,,Number of data parts that were fully fetched by CacheWarmer. (count),0,clickhouse,,, +clickhouse.events.CacheWarmerDataPartsDownloaded.total,gauge,,,,Number of data parts that were fully fetched by CacheWarmer. (total),0,clickhouse,,, +clickhouse.events.CachedReadBufferCacheWriteBytes.count,count,,,,"Bytes written from source (remote fs, etc) to filesystem cache (count)",0,clickhouse,,, +clickhouse.events.CachedReadBufferCacheWriteBytes.total,gauge,,,,"Bytes written from source (remote fs, etc) to filesystem cache (total)",0,clickhouse,,, +clickhouse.events.CachedReadBufferCacheWriteMicroseconds,gauge,,microsecond,,Time spent writing data into filesystem cache,0,clickhouse,,, +clickhouse.events.CachedReadBufferCreateBufferMicroseconds,gauge,,microsecond,,Prepare buffer time,0,clickhouse,,, +clickhouse.events.CachedReadBufferPredownloadedBytes.count,count,,,,"Bytes read from filesystem cache source. Cache segments are read from left to right as a whole, it might be that we need to predownload some part of the segment irrelevant for the current task just to get to the needed data (count)",0,clickhouse,,, +clickhouse.events.CachedReadBufferPredownloadedBytes.total,gauge,,,,"Bytes read from filesystem cache source. Cache segments are read from left to right as a whole, it might be that we need to predownload some part of the segment irrelevant for the current task just to get to the needed data (total)",0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromCacheBytes.count,count,,,,Bytes read from filesystem cache (count),0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromCacheBytes.total,gauge,,,,Bytes read from filesystem cache (total),0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromCacheHits.count,count,,,,Number of times the read from filesystem cache hit the cache. (count),0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromCacheHits.total,gauge,,,,Number of times the read from filesystem cache hit the cache. (total),0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromCacheMicroseconds,gauge,,microsecond,,Time reading from filesystem cache,0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromCacheMisses.count,count,,,,Number of times the read from filesystem cache miss the cache. (count),0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromCacheMisses.total,gauge,,,,Number of times the read from filesystem cache miss the cache. (total),0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromSourceBytes.count,count,,,,"Bytes read from filesystem cache source (from remote fs, etc) (count)",0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromSourceBytes.total,gauge,,,,"Bytes read from filesystem cache source (from remote fs, etc) (total)",0,clickhouse,,, +clickhouse.events.CachedReadBufferReadFromSourceMicroseconds,gauge,,microsecond,,"Time reading from filesystem cache source (from remote filesystem, etc)",0,clickhouse,,, +clickhouse.events.CachedReadBufferWaitReadBufferMicroseconds,gauge,,microsecond,,Time spend waiting for internal read buffer (includes cache waiting),0,clickhouse,,, +clickhouse.events.CachedWriteBufferCacheWriteBytes.count,count,,,,"Bytes written from source (remote fs, etc) to filesystem cache (count)",0,clickhouse,,, +clickhouse.events.CachedWriteBufferCacheWriteBytes.total,gauge,,,,"Bytes written from source (remote fs, etc) to filesystem cache (total)",0,clickhouse,,, +clickhouse.events.CachedWriteBufferCacheWriteMicroseconds,gauge,,microsecond,,Time spent writing data into filesystem cache,0,clickhouse,,, +clickhouse.events.CannotRemoveEphemeralNode.count,count,,,,"Number of times an error happened while trying to remove ephemeral node. This is not an issue, because our implementation of ZooKeeper library guarantee that the session will expire and the node will be removed. (count)",0,clickhouse,,, +clickhouse.events.CannotRemoveEphemeralNode.total,gauge,,,,"Number of times an error happened while trying to remove ephemeral node. This is not an issue, because our implementation of ZooKeeper library guarantee that the session will expire and the node will be removed. (total)",0,clickhouse,,, +clickhouse.events.CannotWriteToWriteBufferDiscard.count,count,,,,Number of stack traces dropped by query profiler or signal handler because pipe is full or cannot write to pipe. (count),0,clickhouse,,, +clickhouse.events.CannotWriteToWriteBufferDiscard.total,gauge,,,,Number of stack traces dropped by query profiler or signal handler because pipe is full or cannot write to pipe. (total),0,clickhouse,,, +clickhouse.events.CoalescingSortedMilliseconds,gauge,,millisecond,,Total time spent while coalescing sorted columns,0,clickhouse,,, +clickhouse.events.CollapsingSortedMilliseconds,gauge,,millisecond,,Total time spent while collapsing sorted columns,0,clickhouse,,, +clickhouse.events.CommonBackgroundExecutorTaskCancelMicroseconds,gauge,,microsecond,,Time spent in cancel() for Common executor tasks.,0,clickhouse,,, +clickhouse.events.CommonBackgroundExecutorTaskExecuteStepMicroseconds,gauge,,microsecond,,Time spent in executeStep() for Common executor tasks.,0,clickhouse,,, +clickhouse.events.CommonBackgroundExecutorTaskResetMicroseconds,gauge,,microsecond,,Time spent resetting task for Common executor.,0,clickhouse,,, +clickhouse.events.CommonBackgroundExecutorWaitMicroseconds,gauge,,microsecond,,Time spent waiting for completion in Common executor.,0,clickhouse,,, +clickhouse.events.CompileExpressionsBytes.count,count,,,,Number of bytes used for expressions compilation. (count),0,clickhouse,,, +clickhouse.events.CompileExpressionsBytes.total,gauge,,,,Number of bytes used for expressions compilation. (total),0,clickhouse,,, +clickhouse.events.CompileExpressionsMicroseconds,gauge,,microsecond,,Total time spent for compilation of expressions to LLVM code.,0,clickhouse,,, +clickhouse.events.CompileFunction.count,count,,,,Number of times a compilation of generated LLVM code (to create fused function for complex expressions) was initiated. (count),0,clickhouse,,, +clickhouse.events.CompileFunction.total,gauge,,,,Number of times a compilation of generated LLVM code (to create fused function for complex expressions) was initiated. (total),0,clickhouse,,, +clickhouse.events.CompiledFunctionExecute.count,count,,,,Number of times a compiled function was executed. (count),0,clickhouse,,, +clickhouse.events.CompiledFunctionExecute.total,gauge,,,,Number of times a compiled function was executed. (total),0,clickhouse,,, +clickhouse.events.CompressedReadBufferBlocks.count,count,,,,"Number of compressed blocks (the blocks of data that are compressed independent of each other) read from compressed sources (files, network). (count)",0,clickhouse,,, +clickhouse.events.CompressedReadBufferBlocks.total,gauge,,,,"Number of compressed blocks (the blocks of data that are compressed independent of each other) read from compressed sources (files, network). (total)",0,clickhouse,,, +clickhouse.events.CompressedReadBufferBytes.count,count,,,,"Number of uncompressed bytes (the number of bytes after decompression) read from compressed sources (files, network). (count)",0,clickhouse,,, +clickhouse.events.CompressedReadBufferBytes.total,gauge,,,,"Number of uncompressed bytes (the number of bytes after decompression) read from compressed sources (files, network). (total)",0,clickhouse,,, +clickhouse.events.CompressedReadBufferChecksumDoesntMatch.count,count,,,,Number of times the compressed block checksum did not match. (count),0,clickhouse,,, +clickhouse.events.CompressedReadBufferChecksumDoesntMatch.total,gauge,,,,Number of times the compressed block checksum did not match. (total),0,clickhouse,,, +clickhouse.events.CompressedReadBufferChecksumDoesntMatchMicroseconds,gauge,,microsecond,,Total time spent detecting bit-flips due to compressed block checksum mismatches.,0,clickhouse,,, +clickhouse.events.CompressedReadBufferChecksumDoesntMatchSingleBitMismatch.count,count,,,,Number of times a compressed block checksum mismatch was caused by a single-bit difference. (count),0,clickhouse,,, +clickhouse.events.CompressedReadBufferChecksumDoesntMatchSingleBitMismatch.total,gauge,,,,Number of times a compressed block checksum mismatch was caused by a single-bit difference. (total),0,clickhouse,,, +clickhouse.events.ConcurrencyControlDownscales.count,count,,,,Total number of CPU downscaling events (count),0,clickhouse,,, +clickhouse.events.ConcurrencyControlDownscales.total,gauge,,,,Total number of CPU downscaling events (total),0,clickhouse,,, +clickhouse.events.ConcurrencyControlPreemptedMicroseconds,gauge,,microsecond,,Total time a query was waiting due to preemption of CPU slots.,0,clickhouse,,, +clickhouse.events.ConcurrencyControlPreemptions.count,count,,,,Total number of CPU preemptions (count),0,clickhouse,,, +clickhouse.events.ConcurrencyControlPreemptions.total,gauge,,,,Total number of CPU preemptions (total),0,clickhouse,,, +clickhouse.events.ConcurrencyControlQueriesDelayed.count,count,,,,Total number of CPU slot allocations (queries) that were required to wait for slots to upscale (count),0,clickhouse,,, +clickhouse.events.ConcurrencyControlQueriesDelayed.total,gauge,,,,Total number of CPU slot allocations (queries) that were required to wait for slots to upscale (total),0,clickhouse,,, +clickhouse.events.ConcurrencyControlSlotsAcquired.count,count,,,,Total number of CPU slots acquired (count),0,clickhouse,,, +clickhouse.events.ConcurrencyControlSlotsAcquired.total,gauge,,,,Total number of CPU slots acquired (total),0,clickhouse,,, +clickhouse.events.ConcurrencyControlSlotsAcquiredNonCompeting.count,count,,,,Total number of noncompeting CPU slot acquired (count),0,clickhouse,,, +clickhouse.events.ConcurrencyControlSlotsAcquiredNonCompeting.total,gauge,,,,Total number of noncompeting CPU slot acquired (total),0,clickhouse,,, +clickhouse.events.ConcurrencyControlSlotsDelayed.count,count,,,,Number of CPU slot not granted initially and required to wait for a free CPU slot (count),0,clickhouse,,, +clickhouse.events.ConcurrencyControlSlotsDelayed.total,gauge,,,,Number of CPU slot not granted initially and required to wait for a free CPU slot (total),0,clickhouse,,, +clickhouse.events.ConcurrencyControlSlotsGranted.count,count,,,,Number of CPU slot granted according to guarantee of 1 thread per query and for queries with setting 'use_concurrency_control' = 0 (count),0,clickhouse,,, +clickhouse.events.ConcurrencyControlSlotsGranted.total,gauge,,,,Number of CPU slot granted according to guarantee of 1 thread per query and for queries with setting 'use_concurrency_control' = 0 (total),0,clickhouse,,, +clickhouse.events.ConcurrencyControlUpscales.count,count,,,,Total number of CPU upscaling events (count),0,clickhouse,,, +clickhouse.events.ConcurrencyControlUpscales.total,gauge,,,,Total number of CPU upscaling events (total),0,clickhouse,,, +clickhouse.events.ConcurrencyControlWaitMicroseconds,gauge,,microsecond,,Total time a query was waiting on resource requests for CPU slots.,0,clickhouse,,, +clickhouse.events.ConcurrentQuerySlotsAcquired.count,count,,,,Total number of query slots acquired (count),0,clickhouse,,, +clickhouse.events.ConcurrentQuerySlotsAcquired.total,gauge,,,,Total number of query slots acquired (total),0,clickhouse,,, +clickhouse.events.ConcurrentQueryWaitMicroseconds,gauge,,microsecond,,Total time a query was waiting for a query slots,0,clickhouse,,, +clickhouse.events.ConnectionPoolIsFullMicroseconds,gauge,,microsecond,,Total time spent waiting for a slot in connection pool.,0,clickhouse,,, +clickhouse.events.ContextLock.count,count,,,,Number of times the lock of Context was acquired or tried to acquire. This is global lock. (count),0,clickhouse,,, +clickhouse.events.ContextLock.total,gauge,,,,Number of times the lock of Context was acquired or tried to acquire. This is global lock. (total),0,clickhouse,,, +clickhouse.events.ContextLockWaitMicroseconds,gauge,,microsecond,,Context lock wait time in microseconds,0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeAssignmentRequest.count,count,,,,Total number of merge assignment requests (count),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeAssignmentRequest.total,gauge,,,,Total number of merge assignment requests (total),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeAssignmentRequestMicroseconds,gauge,,microsecond,,Total time spend in merge assignment client,0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeAssignmentResponse.count,count,,,,Total number of merge assignment requests (count),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeAssignmentResponse.total,gauge,,,,Total number of merge assignment requests (total),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeAssignmentResponseMicroseconds,gauge,,microsecond,,Total time spend in merge assignment handler,0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorFetchMetadataMicroseconds,gauge,,microsecond,,Total time spend on fetching fresh metadata inside merge coordinator,0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorFilterMicroseconds,gauge,,microsecond,,Total time spend on filtering prepared merges inside merge coordinator,0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount.count,count,,,,Total number of exclusive captures of coordinator state lock (count),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount.total,gauge,,,,Total number of exclusive captures of coordinator state lock (total),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateExclusivelyMicroseconds,gauge,,microsecond,,Total time spend on locking coordinator state mutex exclusively,0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateForShareCount.count,count,,,,Total number of for share captures of coordinator state lock (count),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateForShareCount.total,gauge,,,,Total number of for share captures of coordinator state lock (total),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateForShareMicroseconds,gauge,,microsecond,,Total time spend on locking coordinator state mutex for share,0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorSelectMergesMicroseconds,gauge,,microsecond,,Total time spend on finding merge using merge selectors inside merge coordinator,0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorUpdateCount.count,count,,,,Total number of merge coordinator updates (count),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorUpdateCount.total,gauge,,,,Total number of merge coordinator updates (total),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeCoordinatorUpdateMicroseconds,gauge,,microsecond,,Total time spend on updating merge coordinator state,0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeWorkerUpdateCount.count,count,,,,Total number merge worker updates (count),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeWorkerUpdateCount.total,gauge,,,,Total number merge worker updates (total),0,clickhouse,,, +clickhouse.events.CoordinatedMergesMergeWorkerUpdateMicroseconds,gauge,,microsecond,,Total time spend on updating local state of assigned merges on worker,0,clickhouse,,, +clickhouse.events.CreatedLogEntryForMerge.count,count,,,,Successfully created log entry to merge parts in ReplicatedMergeTree. (count),0,clickhouse,,, +clickhouse.events.CreatedLogEntryForMerge.total,gauge,,,,Successfully created log entry to merge parts in ReplicatedMergeTree. (total),0,clickhouse,,, +clickhouse.events.CreatedLogEntryForMutation.count,count,,,,Successfully created log entry to mutate parts in ReplicatedMergeTree. (count),0,clickhouse,,, +clickhouse.events.CreatedLogEntryForMutation.total,gauge,,,,Successfully created log entry to mutate parts in ReplicatedMergeTree. (total),0,clickhouse,,, +clickhouse.events.CreatedReadBufferDirectIO.count,count,,,,Number of times a read buffer with O_DIRECT was created for reading data (while choosing among other read methods). (count),0,clickhouse,,, +clickhouse.events.CreatedReadBufferDirectIO.total,gauge,,,,Number of times a read buffer with O_DIRECT was created for reading data (while choosing among other read methods). (total),0,clickhouse,,, +clickhouse.events.CreatedReadBufferDirectIOFailed.count,count,,,,"Number of times a read buffer with O_DIRECT was attempted to be created for reading data (while choosing among other read methods), but the OS did not allow it (due to lack of filesystem support or other reasons) and we fallen back to the ordinary reading method. (count)",0,clickhouse,,, +clickhouse.events.CreatedReadBufferDirectIOFailed.total,gauge,,,,"Number of times a read buffer with O_DIRECT was attempted to be created for reading data (while choosing among other read methods), but the OS did not allow it (due to lack of filesystem support or other reasons) and we fallen back to the ordinary reading method. (total)",0,clickhouse,,, +clickhouse.events.CreatedReadBufferMMap.count,count,,,,Number of times a read buffer using 'mmap' was created for reading data (while choosing among other read methods). (count),0,clickhouse,,, +clickhouse.events.CreatedReadBufferMMap.total,gauge,,,,Number of times a read buffer using 'mmap' was created for reading data (while choosing among other read methods). (total),0,clickhouse,,, +clickhouse.events.CreatedReadBufferMMapFailed.count,count,,,,"Number of times a read buffer with 'mmap' was attempted to be created for reading data (while choosing among other read methods), but the OS did not allow it (due to lack of filesystem support or other reasons) and we fallen back to the ordinary reading method. (count)",0,clickhouse,,, +clickhouse.events.CreatedReadBufferMMapFailed.total,gauge,,,,"Number of times a read buffer with 'mmap' was attempted to be created for reading data (while choosing among other read methods), but the OS did not allow it (due to lack of filesystem support or other reasons) and we fallen back to the ordinary reading method. (total)",0,clickhouse,,, +clickhouse.events.CreatedReadBufferOrdinary.count,count,,,,Number of times ordinary read buffer was created for reading data (while choosing among other read methods). (count),0,clickhouse,,, +clickhouse.events.CreatedReadBufferOrdinary.total,gauge,,,,Number of times ordinary read buffer was created for reading data (while choosing among other read methods). (total),0,clickhouse,,, +clickhouse.events.DNSError.count,count,,,,Total count of errors in DNS resolution (count),0,clickhouse,,, +clickhouse.events.DNSError.total,gauge,,,,Total count of errors in DNS resolution (total),0,clickhouse,,, +clickhouse.events.DataAfterMutationDiffersFromReplica.count,count,,,,"Number of times data after mutation is not byte-identical to the data on other replicas. In addition to the reasons described in 'DataAfterMergeDiffersFromReplica', it is also possible due to non-deterministic mutation. (count)",0,clickhouse,,, +clickhouse.events.DataAfterMutationDiffersFromReplica.total,gauge,,,,"Number of times data after mutation is not byte-identical to the data on other replicas. In addition to the reasons described in 'DataAfterMergeDiffersFromReplica', it is also possible due to non-deterministic mutation. (total)",0,clickhouse,,, +clickhouse.events.DefaultImplementationForNullsRows.count,count,,,,Number of rows processed by default implementation for nulls in function execution (count),0,clickhouse,,, +clickhouse.events.DefaultImplementationForNullsRows.total,gauge,,,,Number of rows processed by default implementation for nulls in function execution (total),0,clickhouse,,, +clickhouse.events.DefaultImplementationForNullsRowsWithNulls.count,count,,,,Number of rows which contain null values processed by default implementation for nulls in function execution (count),0,clickhouse,,, +clickhouse.events.DefaultImplementationForNullsRowsWithNulls.total,gauge,,,,Number of rows which contain null values processed by default implementation for nulls in function execution (total),0,clickhouse,,, +clickhouse.events.DelayedInserts.count,count,,,,Number of times the INSERT of a block to a MergeTree table was throttled due to high number of active data parts for partition. (count),0,clickhouse,,, +clickhouse.events.DelayedInserts.total,gauge,,,,Number of times the INSERT of a block to a MergeTree table was throttled due to high number of active data parts for partition. (total),0,clickhouse,,, +clickhouse.events.DelayedInsertsMilliseconds,gauge,,millisecond,,Total number of milliseconds spent while the INSERT of a block to a MergeTree table was throttled due to high number of active data parts for partition.,0,clickhouse,,, +clickhouse.events.DelayedMutations.count,count,,,,Number of times the mutation of a MergeTree table was throttled due to high number of unfinished mutations for table. (count),0,clickhouse,,, +clickhouse.events.DelayedMutations.total,gauge,,,,Number of times the mutation of a MergeTree table was throttled due to high number of unfinished mutations for table. (total),0,clickhouse,,, +clickhouse.events.DelayedMutationsMilliseconds,gauge,,millisecond,,Total number of milliseconds spent while the mutation of a MergeTree table was throttled due to high number of unfinished mutations for table.,0,clickhouse,,, +clickhouse.events.DeltaLakePartitionPrunedFiles.count,count,,,,Number of skipped files during DeltaLake partition pruning (count),0,clickhouse,,, +clickhouse.events.DeltaLakePartitionPrunedFiles.total,gauge,,,,Number of skipped files during DeltaLake partition pruning (total),0,clickhouse,,, +clickhouse.events.DictCacheKeysExpired.count,count,,,,Number of keys looked up in the dictionaries of 'cache' types and found in the cache but they were obsolete. (count),0,clickhouse,,, +clickhouse.events.DictCacheKeysExpired.total,gauge,,,,Number of keys looked up in the dictionaries of 'cache' types and found in the cache but they were obsolete. (total),0,clickhouse,,, +clickhouse.events.DictCacheKeysHit.count,count,,,,Number of keys looked up in the dictionaries of 'cache' types and found in the cache. (count),0,clickhouse,,, +clickhouse.events.DictCacheKeysHit.total,gauge,,,,Number of keys looked up in the dictionaries of 'cache' types and found in the cache. (total),0,clickhouse,,, +clickhouse.events.DictCacheKeysNotFound.count,count,,,,Number of keys looked up in the dictionaries of 'cache' types and not found. (count),0,clickhouse,,, +clickhouse.events.DictCacheKeysNotFound.total,gauge,,,,Number of keys looked up in the dictionaries of 'cache' types and not found. (total),0,clickhouse,,, +clickhouse.events.DictCacheKeysRequested.count,count,,,,Number of keys requested from the data source for the dictionaries of 'cache' types. (count),0,clickhouse,,, +clickhouse.events.DictCacheKeysRequested.total,gauge,,,,Number of keys requested from the data source for the dictionaries of 'cache' types. (total),0,clickhouse,,, +clickhouse.events.DictCacheKeysRequestedFound.count,count,,,,Number of keys requested from the data source for dictionaries of 'cache' types and found in the data source. (count),0,clickhouse,,, +clickhouse.events.DictCacheKeysRequestedFound.total,gauge,,,,Number of keys requested from the data source for dictionaries of 'cache' types and found in the data source. (total),0,clickhouse,,, +clickhouse.events.DictCacheKeysRequestedMiss.count,count,,,,Number of keys requested from the data source for dictionaries of 'cache' types but not found in the data source. (count),0,clickhouse,,, +clickhouse.events.DictCacheKeysRequestedMiss.total,gauge,,,,Number of keys requested from the data source for dictionaries of 'cache' types but not found in the data source. (total),0,clickhouse,,, +clickhouse.events.DictCacheLockReadNs,gauge,,nanosecond,,Number of nanoseconds spend in waiting for read lock to lookup the data for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.events.DictCacheLockWriteNs,gauge,,nanosecond,,Number of nanoseconds spend in waiting for write lock to update the data for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.events.DictCacheRequestTimeNs,gauge,,nanosecond,,Number of nanoseconds spend in querying the external data sources for the dictionaries of 'cache' types.,0,clickhouse,,, +clickhouse.events.DictCacheRequests.count,count,,,,Number of bulk requests to the external data sources for the dictionaries of 'cache' types. (count),0,clickhouse,,, +clickhouse.events.DictCacheRequests.total,gauge,,,,Number of bulk requests to the external data sources for the dictionaries of 'cache' types. (total),0,clickhouse,,, +clickhouse.events.DirectorySync.count,count,,,,Number of times the F_FULLFSYNC/fsync/fdatasync function was called for directories. (count),0,clickhouse,,, +clickhouse.events.DirectorySync.total,gauge,,,,Number of times the F_FULLFSYNC/fsync/fdatasync function was called for directories. (total),0,clickhouse,,, +clickhouse.events.DirectorySyncElapsedMicroseconds,gauge,,microsecond,,Total time spent waiting for F_FULLFSYNC/fsync/fdatasync syscall for directories.,0,clickhouse,,, +clickhouse.events.DiskAzureCommitBlockList.count,count,,,,Number of Disk Azure blob storage API CommitBlockList calls (count),0,clickhouse,,, +clickhouse.events.DiskAzureCommitBlockList.total,gauge,,,,Number of Disk Azure blob storage API CommitBlockList calls (total),0,clickhouse,,, +clickhouse.events.DiskAzureCopyObject.count,count,,,,Number of Disk Azure blob storage API CopyObject calls (count),0,clickhouse,,, +clickhouse.events.DiskAzureCopyObject.total,gauge,,,,Number of Disk Azure blob storage API CopyObject calls (total),0,clickhouse,,, +clickhouse.events.DiskAzureCreateContainer.count,count,,,,Number of Disk Azure blob storage API CreateContainer calls. (count),0,clickhouse,,, +clickhouse.events.DiskAzureCreateContainer.total,gauge,,,,Number of Disk Azure blob storage API CreateContainer calls. (total),0,clickhouse,,, +clickhouse.events.DiskAzureDeleteObjects.count,count,,,,Number of Azure blob storage API DeleteObject(s) calls. (count),0,clickhouse,,, +clickhouse.events.DiskAzureDeleteObjects.total,gauge,,,,Number of Azure blob storage API DeleteObject(s) calls. (total),0,clickhouse,,, +clickhouse.events.DiskAzureGetObject.count,count,,,,Number of Disk Azure API GetObject calls. (count),0,clickhouse,,, +clickhouse.events.DiskAzureGetObject.total,gauge,,,,Number of Disk Azure API GetObject calls. (total),0,clickhouse,,, +clickhouse.events.DiskAzureGetProperties.count,count,,,,Number of Disk Azure blob storage API GetProperties calls. (count),0,clickhouse,,, +clickhouse.events.DiskAzureGetProperties.total,gauge,,,,Number of Disk Azure blob storage API GetProperties calls. (total),0,clickhouse,,, +clickhouse.events.DiskAzureGetRequestThrottlerCount.count,count,,,,Number of Azure disk GET requests passed through throttler. (count),0,clickhouse,,, +clickhouse.events.DiskAzureGetRequestThrottlerCount.total,gauge,,,,Number of Azure disk GET requests passed through throttler. (total),0,clickhouse,,, +clickhouse.events.DiskAzureGetRequestThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform Azure disk GET request throttling.,0,clickhouse,,, +clickhouse.events.DiskAzureListObjects.count,count,,,,Number of Disk Azure blob storage API ListObjects calls. (count),0,clickhouse,,, +clickhouse.events.DiskAzureListObjects.total,gauge,,,,Number of Disk Azure blob storage API ListObjects calls. (total),0,clickhouse,,, +clickhouse.events.DiskAzurePutRequestThrottlerCount.count,count,,,,Number of Azure disk PUT requests passed through throttler. (count),0,clickhouse,,, +clickhouse.events.DiskAzurePutRequestThrottlerCount.total,gauge,,,,Number of Azure disk PUT requests passed through throttler. (total),0,clickhouse,,, +clickhouse.events.DiskAzurePutRequestThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform Azure disk PUT request throttling.,0,clickhouse,,, +clickhouse.events.DiskAzureReadMicroseconds,gauge,,microsecond,,Total time spent waiting for Azure disk read requests.,0,clickhouse,,, +clickhouse.events.DiskAzureReadRequestsCount.count,count,,,,Number of Azure disk read requests. (count),0,clickhouse,,, +clickhouse.events.DiskAzureReadRequestsCount.total,gauge,,,,Number of Azure disk read requests. (total),0,clickhouse,,, +clickhouse.events.DiskAzureReadRequestsErrors.count,count,,,,Number of Azure disk read request errors. (count),0,clickhouse,,, +clickhouse.events.DiskAzureReadRequestsErrors.total,gauge,,,,Number of Azure disk read request errors. (total),0,clickhouse,,, +clickhouse.events.DiskAzureReadRequestsRedirects.count,count,,,,Number of Azure disk read request redirects. (count),0,clickhouse,,, +clickhouse.events.DiskAzureReadRequestsRedirects.total,gauge,,,,Number of Azure disk read request redirects. (total),0,clickhouse,,, +clickhouse.events.DiskAzureReadRequestsThrottling.count,count,,,,Number of Azure disk read requests throttled. (count),0,clickhouse,,, +clickhouse.events.DiskAzureReadRequestsThrottling.total,gauge,,,,Number of Azure disk read requests throttled. (total),0,clickhouse,,, +clickhouse.events.DiskAzureStageBlock.count,count,,,,Number of Disk Azure blob storage API StageBlock calls (count),0,clickhouse,,, +clickhouse.events.DiskAzureStageBlock.total,gauge,,,,Number of Disk Azure blob storage API StageBlock calls (total),0,clickhouse,,, +clickhouse.events.DiskAzureUpload.count,count,,,,Number of Disk Azure blob storage API Upload calls (count),0,clickhouse,,, +clickhouse.events.DiskAzureUpload.total,gauge,,,,Number of Disk Azure blob storage API Upload calls (total),0,clickhouse,,, +clickhouse.events.DiskAzureWriteMicroseconds,gauge,,microsecond,,Total time spent waiting for Azure disk write requests.,0,clickhouse,,, +clickhouse.events.DiskAzureWriteRequestsCount.count,count,,,,Number of Azure disk write requests. (count),0,clickhouse,,, +clickhouse.events.DiskAzureWriteRequestsCount.total,gauge,,,,Number of Azure disk write requests. (total),0,clickhouse,,, +clickhouse.events.DiskAzureWriteRequestsErrors.count,count,,,,Number of Azure disk write request errors. (count),0,clickhouse,,, +clickhouse.events.DiskAzureWriteRequestsErrors.total,gauge,,,,Number of Azure disk write request errors. (total),0,clickhouse,,, +clickhouse.events.DiskAzureWriteRequestsRedirects.count,count,,,,Number of Azure disk write request redirects. (count),0,clickhouse,,, +clickhouse.events.DiskAzureWriteRequestsRedirects.total,gauge,,,,Number of Azure disk write request redirects. (total),0,clickhouse,,, +clickhouse.events.DiskAzureWriteRequestsThrottling.count,count,,,,Number of Azure disk write requests throttled. (count),0,clickhouse,,, +clickhouse.events.DiskAzureWriteRequestsThrottling.total,gauge,,,,Number of Azure disk write requests throttled. (total),0,clickhouse,,, +clickhouse.events.DiskConnectionsCreated.count,count,,,,Number of created connections for disk (count),0,clickhouse,,, +clickhouse.events.DiskConnectionsCreated.total,gauge,,,,Number of created connections for disk (total),0,clickhouse,,, +clickhouse.events.DiskConnectionsElapsedMicroseconds,gauge,,microsecond,,Total time spend on creating connections for disk,0,clickhouse,,, +clickhouse.events.DiskConnectionsErrors.count,count,,,,Number of cases when creation of a connection for disk is failed (count),0,clickhouse,,, +clickhouse.events.DiskConnectionsErrors.total,gauge,,,,Number of cases when creation of a connection for disk is failed (total),0,clickhouse,,, +clickhouse.events.DiskConnectionsExpired.count,count,,,,Number of expired connections for disk (count),0,clickhouse,,, +clickhouse.events.DiskConnectionsExpired.total,gauge,,,,Number of expired connections for disk (total),0,clickhouse,,, +clickhouse.events.DiskConnectionsPreserved.count,count,,,,Number of preserved connections for disk (count),0,clickhouse,,, +clickhouse.events.DiskConnectionsPreserved.total,gauge,,,,Number of preserved connections for disk (total),0,clickhouse,,, +clickhouse.events.DiskConnectionsReset.count,count,,,,Number of reset connections for disk (count),0,clickhouse,,, +clickhouse.events.DiskConnectionsReset.total,gauge,,,,Number of reset connections for disk (total),0,clickhouse,,, +clickhouse.events.DiskConnectionsReused.count,count,,,,Number of reused connections for disk (count),0,clickhouse,,, +clickhouse.events.DiskConnectionsReused.total,gauge,,,,Number of reused connections for disk (total),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableAzureDirectoryCreated.count,count,,,,Number of directories created by the 'plain_rewritable' metadata storage for AzureObjectStorage. (count),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableAzureDirectoryCreated.total,gauge,,,,Number of directories created by the 'plain_rewritable' metadata storage for AzureObjectStorage. (total),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableAzureDirectoryRemoved.count,count,,,,Number of directories removed by the 'plain_rewritable' metadata storage for AzureObjectStorage. (count),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableAzureDirectoryRemoved.total,gauge,,,,Number of directories removed by the 'plain_rewritable' metadata storage for AzureObjectStorage. (total),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableLegacyLayoutDiskCount.count,count,,,,Number of the 'plain_rewritable' disks with legacy layout. (count),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableLegacyLayoutDiskCount.total,gauge,,,,Number of the 'plain_rewritable' disks with legacy layout. (total),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableLocalDirectoryCreated.count,count,,,,Number of directories created by the 'plain_rewritable' metadata storage for LocalObjectStorage. (count),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableLocalDirectoryCreated.total,gauge,,,,Number of directories created by the 'plain_rewritable' metadata storage for LocalObjectStorage. (total),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableLocalDirectoryRemoved.count,count,,,,Number of directories removed by the 'plain_rewritable' metadata storage for LocalObjectStorage. (count),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableLocalDirectoryRemoved.total,gauge,,,,Number of directories removed by the 'plain_rewritable' metadata storage for LocalObjectStorage. (total),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableS3DirectoryCreated.count,count,,,,Number of directories created by the 'plain_rewritable' metadata storage for S3ObjectStorage. (count),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableS3DirectoryCreated.total,gauge,,,,Number of directories created by the 'plain_rewritable' metadata storage for S3ObjectStorage. (total),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableS3DirectoryRemoved.count,count,,,,Number of directories removed by the 'plain_rewritable' metadata storage for S3ObjectStorage. (count),0,clickhouse,,, +clickhouse.events.DiskPlainRewritableS3DirectoryRemoved.total,gauge,,,,Number of directories removed by the 'plain_rewritable' metadata storage for S3ObjectStorage. (total),0,clickhouse,,, +clickhouse.events.DiskReadElapsedMicroseconds,gauge,,microsecond,,Total time spent waiting for read syscall. This include reads from page cache.,0,clickhouse,,, +clickhouse.events.DiskS3AbortMultipartUpload.count,count,,,,Number of DiskS3 API AbortMultipartUpload calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3AbortMultipartUpload.total,gauge,,,,Number of DiskS3 API AbortMultipartUpload calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3CompleteMultipartUpload.count,count,,,,Number of DiskS3 API CompleteMultipartUpload calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3CompleteMultipartUpload.total,gauge,,,,Number of DiskS3 API CompleteMultipartUpload calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3CopyObject.count,count,,,,Number of DiskS3 API CopyObject calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3CopyObject.total,gauge,,,,Number of DiskS3 API CopyObject calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3CreateMultipartUpload.count,count,,,,Number of DiskS3 API CreateMultipartUpload calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3CreateMultipartUpload.total,gauge,,,,Number of DiskS3 API CreateMultipartUpload calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3DeleteObjects.count,count,,,,Number of DiskS3 API DeleteObject(s) calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3DeleteObjects.total,gauge,,,,Number of DiskS3 API DeleteObject(s) calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3GetObject.count,count,,,,Number of DiskS3 API GetObject calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3GetObject.total,gauge,,,,Number of DiskS3 API GetObject calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3GetObjectAttributes.count,count,,,,Number of DiskS3 API GetObjectAttributes calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3GetObjectAttributes.total,gauge,,,,Number of DiskS3 API GetObjectAttributes calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3GetRequestThrottlerCount.count,count,,,,Number of DiskS3 GET and SELECT requests passed through throttler. (count),0,clickhouse,,, +clickhouse.events.DiskS3GetRequestThrottlerCount.total,gauge,,,,Number of DiskS3 GET and SELECT requests passed through throttler. (total),0,clickhouse,,, +clickhouse.events.DiskS3GetRequestThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform DiskS3 GET and SELECT request throttling.,0,clickhouse,,, +clickhouse.events.DiskS3HeadObject.count,count,,,,Number of DiskS3 API HeadObject calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3HeadObject.total,gauge,,,,Number of DiskS3 API HeadObject calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3ListObjects.count,count,,,,Number of DiskS3 API ListObjects calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3ListObjects.total,gauge,,,,Number of DiskS3 API ListObjects calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3PutObject.count,count,,,,Number of DiskS3 API PutObject calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3PutObject.total,gauge,,,,Number of DiskS3 API PutObject calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3PutRequestThrottlerCount.count,count,,,,"Number of DiskS3 PUT, COPY, POST and LIST requests passed through throttler. (count)",0,clickhouse,,, +clickhouse.events.DiskS3PutRequestThrottlerCount.total,gauge,,,,"Number of DiskS3 PUT, COPY, POST and LIST requests passed through throttler. (total)",0,clickhouse,,, +clickhouse.events.DiskS3PutRequestThrottlerSleepMicroseconds,gauge,,microsecond,,"Total time a query was sleeping to conform DiskS3 PUT, COPY, POST and LIST request throttling.",0,clickhouse,,, +clickhouse.events.DiskS3ReadMicroseconds,gauge,,microsecond,,Time of GET and HEAD requests to DiskS3 storage.,0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestAttempts.count,count,,,,"Number of attempts for GET and HEAD requests to DiskS3 storage, including the initial try and any retries, but excluding retries performed internally by the S3 retry strategy (count)",0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestAttempts.total,gauge,,,,"Number of attempts for GET and HEAD requests to DiskS3 storage, including the initial try and any retries, but excluding retries performed internally by the S3 retry strategy (total)",0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestRetryableErrors.count,count,,,,"Number of retryable errors for GET and HEAD requests to DiskS3 storage, excluding retries performed internally by the S3 retry strategy (count)",0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestRetryableErrors.total,gauge,,,,"Number of retryable errors for GET and HEAD requests to DiskS3 storage, excluding retries performed internally by the S3 retry strategy (total)",0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestsCount.count,count,,,,Number of GET and HEAD requests to DiskS3 storage. (count),0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestsCount.total,gauge,,,,Number of GET and HEAD requests to DiskS3 storage. (total),0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestsErrors.count,count,,,,Number of non-throttling errors in GET and HEAD requests to DiskS3 storage. (count),0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestsErrors.total,gauge,,,,Number of non-throttling errors in GET and HEAD requests to DiskS3 storage. (total),0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestsRedirects.count,count,,,,Number of redirects in GET and HEAD requests to DiskS3 storage. (count),0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestsRedirects.total,gauge,,,,Number of redirects in GET and HEAD requests to DiskS3 storage. (total),0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestsThrottling.count,count,,,,Number of 429 and 503 errors in GET and HEAD requests to DiskS3 storage. (count),0,clickhouse,,, +clickhouse.events.DiskS3ReadRequestsThrottling.total,gauge,,,,Number of 429 and 503 errors in GET and HEAD requests to DiskS3 storage. (total),0,clickhouse,,, +clickhouse.events.DiskS3UploadPart.count,count,,,,Number of DiskS3 API UploadPart calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3UploadPart.total,gauge,,,,Number of DiskS3 API UploadPart calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3UploadPartCopy.count,count,,,,Number of DiskS3 API UploadPartCopy calls. (count),0,clickhouse,,, +clickhouse.events.DiskS3UploadPartCopy.total,gauge,,,,Number of DiskS3 API UploadPartCopy calls. (total),0,clickhouse,,, +clickhouse.events.DiskS3WriteMicroseconds,gauge,,microsecond,,"Time of POST, DELETE, PUT and PATCH requests to DiskS3 storage.",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestAttempts.count,count,,,,"Number of attempts for POST, DELETE, PUT and PATCH requests to DiskS3 storage, including the initial try and any retries, but excluding retries performed internally by the retry strategy (count)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestAttempts.total,gauge,,,,"Number of attempts for POST, DELETE, PUT and PATCH requests to DiskS3 storage, including the initial try and any retries, but excluding retries performed internally by the retry strategy (total)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestRetryableErrors.count,count,,,,"Number of retryable errors for POST, DELETE, PUT and PATCH requests to DiskS3 storage, excluding retries performed internally by the retry strategy (count)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestRetryableErrors.total,gauge,,,,"Number of retryable errors for POST, DELETE, PUT and PATCH requests to DiskS3 storage, excluding retries performed internally by the retry strategy (total)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestsCount.count,count,,,,"Number of POST, DELETE, PUT and PATCH requests to DiskS3 storage. (count)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestsCount.total,gauge,,,,"Number of POST, DELETE, PUT and PATCH requests to DiskS3 storage. (total)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestsErrors.count,count,,,,"Number of non-throttling errors in POST, DELETE, PUT and PATCH requests to DiskS3 storage. (count)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestsErrors.total,gauge,,,,"Number of non-throttling errors in POST, DELETE, PUT and PATCH requests to DiskS3 storage. (total)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestsRedirects.count,count,,,,"Number of redirects in POST, DELETE, PUT and PATCH requests to DiskS3 storage. (count)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestsRedirects.total,gauge,,,,"Number of redirects in POST, DELETE, PUT and PATCH requests to DiskS3 storage. (total)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestsThrottling.count,count,,,,"Number of 429 and 503 errors in POST, DELETE, PUT and PATCH requests to DiskS3 storage. (count)",0,clickhouse,,, +clickhouse.events.DiskS3WriteRequestsThrottling.total,gauge,,,,"Number of 429 and 503 errors in POST, DELETE, PUT and PATCH requests to DiskS3 storage. (total)",0,clickhouse,,, +clickhouse.events.DiskWriteElapsedMicroseconds,gauge,,microsecond,,Total time spent waiting for write syscall. This include writes to page cache.,0,clickhouse,,, +clickhouse.events.DistrCacheConnectAttempts.count,count,,,,Distributed Cache connection event. The number of connection attempts to distributed cache (count),0,clickhouse,,, +clickhouse.events.DistrCacheConnectAttempts.total,gauge,,,,Distributed Cache connection event. The number of connection attempts to distributed cache (total),0,clickhouse,,, +clickhouse.events.DistrCacheConnectMicroseconds,gauge,,microsecond,,Distributed Cache connection event. The time spent to connect to distributed cache,0,clickhouse,,, +clickhouse.events.DistrCacheDataPacketsBytes.count,count,,,,Distributed Cache client event. The number of bytes in Data packets which were not ignored (count),0,clickhouse,,, +clickhouse.events.DistrCacheDataPacketsBytes.total,gauge,,,,Distributed Cache client event. The number of bytes in Data packets which were not ignored (total),0,clickhouse,,, +clickhouse.events.DistrCacheFallbackReadMicroseconds,gauge,,microsecond,,Distributed Cache read buffer event. Time spend reading from fallback buffer instead of distributed cache,0,clickhouse,,, +clickhouse.events.DistrCacheGetClient,gauge,,,,Number of client access times,0,clickhouse,,, +clickhouse.events.DistrCacheGetClientMicroseconds,gauge,,microsecond,,Distributed Cache connection event. Time spent getting client for distributed cache,0,clickhouse,,, +clickhouse.events.DistrCacheGetResponseMicroseconds,gauge,,microsecond,,Distributed Cache client event. Time spend to wait for response from distributed cache,0,clickhouse,,, +clickhouse.events.DistrCacheHashRingRebuilds.count,count,,,,Distributed Cache registry event. Number of distributed cache hash ring rebuilds (count),0,clickhouse,,, +clickhouse.events.DistrCacheHashRingRebuilds.total,gauge,,,,Distributed Cache registry event. Number of distributed cache hash ring rebuilds (total),0,clickhouse,,, +clickhouse.events.DistrCacheHoldConnections,gauge,,,,The number of used connections to distributed cache,0,clickhouse,,, +clickhouse.events.DistrCacheIgnoredBytesWhileWaitingProfileEvents.count,count,,,,Distributed Cache read buffer event. Ignored bytes while waiting for profile events in distributed cache (count),0,clickhouse,,, +clickhouse.events.DistrCacheIgnoredBytesWhileWaitingProfileEvents.total,gauge,,,,Distributed Cache read buffer event. Ignored bytes while waiting for profile events in distributed cache (total),0,clickhouse,,, +clickhouse.events.DistrCacheLockRegistryMicroseconds,gauge,,microsecond,,Distributed Cache registry event. Time spent to take DistributedCacheRegistry lock,0,clickhouse,,, +clickhouse.events.DistrCacheMakeRequestErrors.count,count,,,,Distributed Cache client event. Number of distributed cache errors when making a request (count),0,clickhouse,,, +clickhouse.events.DistrCacheMakeRequestErrors.total,gauge,,,,Distributed Cache client event. Number of distributed cache errors when making a request (total),0,clickhouse,,, +clickhouse.events.DistrCacheNextImplMicroseconds,gauge,,microsecond,,Distributed Cache read buffer event. Time spend in ReadBufferFromDistributedCache::nextImpl,0,clickhouse,,, +clickhouse.events.DistrCacheOpenedConnections.count,count,,,,Distributed Cache connection event. The number of open connections to distributed cache (count),0,clickhouse,,, +clickhouse.events.DistrCacheOpenedConnections.total,gauge,,,,Distributed Cache connection event. The number of open connections to distributed cache (total),0,clickhouse,,, +clickhouse.events.DistrCacheOpenedConnectionsBypassingPool.count,count,,,,Distributed Cache connection event. The number of open connections to distributed cache bypassing pool (count),0,clickhouse,,, +clickhouse.events.DistrCacheOpenedConnectionsBypassingPool.total,gauge,,,,Distributed Cache connection event. The number of open connections to distributed cache bypassing pool (total),0,clickhouse,,, +clickhouse.events.DistrCachePackets.count,count,,,,Distributed Cache client event. Total number of packets received from distributed cache (count),0,clickhouse,,, +clickhouse.events.DistrCachePackets.total,gauge,,,,Distributed Cache client event. Total number of packets received from distributed cache (total),0,clickhouse,,, +clickhouse.events.DistrCachePacketsBytes.count,count,,,,Distributed Cache client event. The number of bytes in Data packets which were not ignored (count),0,clickhouse,,, +clickhouse.events.DistrCachePacketsBytes.total,gauge,,,,Distributed Cache client event. The number of bytes in Data packets which were not ignored (total),0,clickhouse,,, +clickhouse.events.DistrCachePrecomputeRangesMicroseconds,gauge,,microsecond,,Distributed Cache read buffer event. Time spent to precompute read ranges,0,clickhouse,,, +clickhouse.events.DistrCacheRangeChange.count,count,,,,Distributed Cache read buffer event. Number of times we changed read range because of seek/last_position change (count),0,clickhouse,,, +clickhouse.events.DistrCacheRangeChange.total,gauge,,,,Distributed Cache read buffer event. Number of times we changed read range because of seek/last_position change (total),0,clickhouse,,, +clickhouse.events.DistrCacheRangeResetBackward.count,count,,,,Distributed Cache read buffer event. Number of times we reset read range because of seek/last_position change (count),0,clickhouse,,, +clickhouse.events.DistrCacheRangeResetBackward.total,gauge,,,,Distributed Cache read buffer event. Number of times we reset read range because of seek/last_position change (total),0,clickhouse,,, +clickhouse.events.DistrCacheRangeResetForward.count,count,,,,Distributed Cache read buffer event. Number of times we reset read range because of seek/last_position change (count),0,clickhouse,,, +clickhouse.events.DistrCacheRangeResetForward.total,gauge,,,,Distributed Cache read buffer event. Number of times we reset read range because of seek/last_position change (total),0,clickhouse,,, +clickhouse.events.DistrCacheReadBytesFromCache.count,count,,,,Distributed Cache read buffer event. Bytes read from distributed cache (count),0,clickhouse,,, +clickhouse.events.DistrCacheReadBytesFromCache.total,gauge,,,,Distributed Cache read buffer event. Bytes read from distributed cache (total),0,clickhouse,,, +clickhouse.events.DistrCacheReadBytesFromFallbackBuffer.count,count,,,,Distributed Cache read buffer event. Bytes read from fallback buffer (count),0,clickhouse,,, +clickhouse.events.DistrCacheReadBytesFromFallbackBuffer.total,gauge,,,,Distributed Cache read buffer event. Bytes read from fallback buffer (total),0,clickhouse,,, +clickhouse.events.DistrCacheReadErrors.count,count,,,,Distributed Cache client event. Number of distributed cache errors during read (count),0,clickhouse,,, +clickhouse.events.DistrCacheReadErrors.total,gauge,,,,Distributed Cache client event. Number of distributed cache errors during read (total),0,clickhouse,,, +clickhouse.events.DistrCacheReadMicroseconds,gauge,,microsecond,,Distributed Cache read buffer event. Time spent reading from distributed cache,0,clickhouse,,, +clickhouse.events.DistrCacheReceiveResponseErrors.count,count,,,,Distributed Cache client event. Number of distributed cache errors when receiving response a request (count),0,clickhouse,,, +clickhouse.events.DistrCacheReceiveResponseErrors.total,gauge,,,,Distributed Cache client event. Number of distributed cache errors when receiving response a request (total),0,clickhouse,,, +clickhouse.events.DistrCacheReconnectsAfterTimeout.count,count,,,,Distributed Cache read buffer event. The number of reconnects after timeout (count),0,clickhouse,,, +clickhouse.events.DistrCacheReconnectsAfterTimeout.total,gauge,,,,Distributed Cache read buffer event. The number of reconnects after timeout (total),0,clickhouse,,, +clickhouse.events.DistrCacheRegistryUpdateMicroseconds,gauge,,microsecond,,Distributed Cache registry event. Time spent updating distributed cache registry,0,clickhouse,,, +clickhouse.events.DistrCacheRegistryUpdates.count,count,,,,Distributed Cache registry event. Number of distributed cache registry updates (count),0,clickhouse,,, +clickhouse.events.DistrCacheRegistryUpdates.total,gauge,,,,Distributed Cache registry event. Number of distributed cache registry updates (total),0,clickhouse,,, +clickhouse.events.DistrCacheReusedConnections.count,count,,,,Distributed Cache connection event. The number of reused connections to distributed cache (count),0,clickhouse,,, +clickhouse.events.DistrCacheReusedConnections.total,gauge,,,,Distributed Cache connection event. The number of reused connections to distributed cache (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerAckRequestPackets.count,count,,,,Distributed Cache server event. Number of AckRequest packets in DistributedCacheServer (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerAckRequestPackets.total,gauge,,,,Distributed Cache server event. Number of AckRequest packets in DistributedCacheServer (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerCachedReadBufferCacheHits.count,count,,,,Distributed Cache server event. The number of times distributed cache hit the cache while reading from filesystem cache (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerCachedReadBufferCacheHits.total,gauge,,,,Distributed Cache server event. The number of times distributed cache hit the cache while reading from filesystem cache (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerCachedReadBufferCacheMisses.count,count,,,,Distributed Cache server event. The number of times distributed cache missed the cache while reading from filesystem cache (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerCachedReadBufferCacheMisses.total,gauge,,,,Distributed Cache server event. The number of times distributed cache missed the cache while reading from filesystem cache (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerContinueRequestPackets.count,count,,,,Distributed Cache server event. Number of ContinueRequest packets in DistributedCacheServer (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerContinueRequestPackets.total,gauge,,,,Distributed Cache server event. Number of ContinueRequest packets in DistributedCacheServer (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerCredentialsRefresh.count,count,,,,Distributed Cache server event. The number of expired credentials were refreshed (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerCredentialsRefresh.total,gauge,,,,Distributed Cache server event. The number of expired credentials were refreshed (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerEndRequestPackets.count,count,,,,Distributed Cache server event. Number of EndRequest packets in DistributedCacheServer (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerEndRequestPackets.total,gauge,,,,Distributed Cache server event. Number of EndRequest packets in DistributedCacheServer (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerNewS3CachedClients.count,count,,,,Distributed Cache server event. The number of new cached s3 clients (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerNewS3CachedClients.total,gauge,,,,Distributed Cache server event. The number of new cached s3 clients (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerProcessRequestMicroseconds,gauge,,microsecond,,Distributed Cache server event. Time spent processing request on DistributedCache server side,0,clickhouse,,, +clickhouse.events.DistrCacheServerReceivedCredentialsRefreshPackets.count,count,,,,Distributed Cache server event. Number of RefreshCredentials client packets in DistributedCacheServer (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerReceivedCredentialsRefreshPackets.total,gauge,,,,Distributed Cache server event. Number of RefreshCredentials client packets in DistributedCacheServer (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerReusedS3CachedClients.count,count,,,,Distributed Cache server event. The number of reused cached s3 clients (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerReusedS3CachedClients.total,gauge,,,,Distributed Cache server event. The number of reused cached s3 clients (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerStartRequestPackets.count,count,,,,Distributed Cache server event. Number of StartRequest packets in DistributedCacheServer (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerStartRequestPackets.total,gauge,,,,Distributed Cache server event. Number of StartRequest packets in DistributedCacheServer (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerSwitches.count,count,,,,Distributed Cache read buffer event. Number of server switches between distributed cache servers in read/write-through cache (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerSwitches.total,gauge,,,,Distributed Cache read buffer event. Number of server switches between distributed cache servers in read/write-through cache (total),0,clickhouse,,, +clickhouse.events.DistrCacheServerUpdates.count,count,,,,Distributed Cache read buffer event. The number of server updates because server is not longer registered in keeper (count),0,clickhouse,,, +clickhouse.events.DistrCacheServerUpdates.total,gauge,,,,Distributed Cache read buffer event. The number of server updates because server is not longer registered in keeper (total),0,clickhouse,,, +clickhouse.events.DistrCacheStartRangeMicroseconds,gauge,,microsecond,,Distributed Cache read buffer event. Time spent to start a new read range with distributed cache,0,clickhouse,,, +clickhouse.events.DistrCacheUnusedDataPacketsBytes.count,count,,,,Distributed Cache client event. The number of bytes in Data packets which were ignored (count),0,clickhouse,,, +clickhouse.events.DistrCacheUnusedDataPacketsBytes.total,gauge,,,,Distributed Cache client event. The number of bytes in Data packets which were ignored (total),0,clickhouse,,, +clickhouse.events.DistrCacheUnusedPackets.count,count,,,,Distributed Cache client event. Number of skipped unused packets from distributed cache (count),0,clickhouse,,, +clickhouse.events.DistrCacheUnusedPackets.total,gauge,,,,Distributed Cache client event. Number of skipped unused packets from distributed cache (total),0,clickhouse,,, +clickhouse.events.DistrCacheUnusedPacketsBufferAllocations.count,count,,,,Distributed Cache client event. The number of extra buffer allocations in case we could not reuse existing buffer (count),0,clickhouse,,, +clickhouse.events.DistrCacheUnusedPacketsBufferAllocations.total,gauge,,,,Distributed Cache client event. The number of extra buffer allocations in case we could not reuse existing buffer (total),0,clickhouse,,, +clickhouse.events.DistrCacheUnusedPacketsBytes.count,count,,,,Distributed Cache client event. The number of bytes in Data packets which were ignored (count),0,clickhouse,,, +clickhouse.events.DistrCacheUnusedPacketsBytes.total,gauge,,,,Distributed Cache client event. The number of bytes in Data packets which were ignored (total),0,clickhouse,,, +clickhouse.events.DistributedAsyncInsertionFailures.count,count,,,,Number of failures for asynchronous insertion into a Distributed table (with 'distributed_foreground_insert' = 0) (count),0,clickhouse,,, +clickhouse.events.DistributedAsyncInsertionFailures.total,gauge,,,,Number of failures for asynchronous insertion into a Distributed table (with 'distributed_foreground_insert' = 0) (total),0,clickhouse,,, +clickhouse.events.DistributedConnectionFailAtAll.count,count,,,,Total count when distributed connection fails after all retries finished. (count),0,clickhouse,,, +clickhouse.events.DistributedConnectionFailAtAll.total,gauge,,,,Total count when distributed connection fails after all retries finished. (total),0,clickhouse,,, +clickhouse.events.DistributedConnectionFailTry.count,count,,,,Total count when distributed connection fails with retry. (count),0,clickhouse,,, +clickhouse.events.DistributedConnectionFailTry.total,gauge,,,,Total count when distributed connection fails with retry. (total),0,clickhouse,,, +clickhouse.events.DistributedConnectionMissingTable.count,count,,,,"Number of times we rejected a replica from a distributed query, because it did not contain a table needed for the query. (count)",0,clickhouse,,, +clickhouse.events.DistributedConnectionMissingTable.total,gauge,,,,"Number of times we rejected a replica from a distributed query, because it did not contain a table needed for the query. (total)",0,clickhouse,,, +clickhouse.events.DistributedConnectionReconnectCount.count,count,,,,Number of reconnects to other servers done during distributed query execution. It can happen when a stale connection has been acquired from connection pool (count),0,clickhouse,,, +clickhouse.events.DistributedConnectionReconnectCount.total,gauge,,,,Number of reconnects to other servers done during distributed query execution. It can happen when a stale connection has been acquired from connection pool (total),0,clickhouse,,, +clickhouse.events.DistributedConnectionSkipReadOnlyReplica.count,count,,,,Number of replicas skipped during INSERT into Distributed table due to replicas being read-only (count),0,clickhouse,,, +clickhouse.events.DistributedConnectionSkipReadOnlyReplica.total,gauge,,,,Number of replicas skipped during INSERT into Distributed table due to replicas being read-only (total),0,clickhouse,,, +clickhouse.events.DistributedConnectionStaleReplica.count,count,,,,"Number of times we rejected a replica from a distributed query, because some table needed for a query had replication lag higher than the configured threshold. (count)",0,clickhouse,,, +clickhouse.events.DistributedConnectionStaleReplica.total,gauge,,,,"Number of times we rejected a replica from a distributed query, because some table needed for a query had replication lag higher than the configured threshold. (total)",0,clickhouse,,, +clickhouse.events.DistributedConnectionTries.count,count,,,,Total count of distributed connection attempts. (count),0,clickhouse,,, +clickhouse.events.DistributedConnectionTries.total,gauge,,,,Total count of distributed connection attempts. (total),0,clickhouse,,, +clickhouse.events.DistributedConnectionUsable.count,count,,,,"Total count of successful distributed connections to a usable server (with required table, but maybe stale). (count)",0,clickhouse,,, +clickhouse.events.DistributedConnectionUsable.total,gauge,,,,"Total count of successful distributed connections to a usable server (with required table, but maybe stale). (total)",0,clickhouse,,, +clickhouse.events.DistributedDelayedInserts.count,count,,,,Number of times the INSERT of a block to a Distributed table was throttled due to high number of pending bytes. (count),0,clickhouse,,, +clickhouse.events.DistributedDelayedInserts.total,gauge,,,,Number of times the INSERT of a block to a Distributed table was throttled due to high number of pending bytes. (total),0,clickhouse,,, +clickhouse.events.DistributedDelayedInsertsMilliseconds,gauge,,millisecond,,Total number of milliseconds spent while the INSERT of a block to a Distributed table was throttled due to high number of pending bytes.,0,clickhouse,,, +clickhouse.events.DistributedRejectedInserts.count,count,,,,Number of times the INSERT of a block to a Distributed table was rejected with 'Too many bytes' exception due to high number of pending bytes. (count),0,clickhouse,,, +clickhouse.events.DistributedRejectedInserts.total,gauge,,,,Number of times the INSERT of a block to a Distributed table was rejected with 'Too many bytes' exception due to high number of pending bytes. (total),0,clickhouse,,, +clickhouse.events.DistributedSyncInsertionTimeoutExceeded.count,count,,,,A timeout has exceeded while waiting for shards during synchronous insertion into a Distributed table (with 'distributed_foreground_insert' = 1) (count),0,clickhouse,,, +clickhouse.events.DistributedSyncInsertionTimeoutExceeded.total,gauge,,,,A timeout has exceeded while waiting for shards during synchronous insertion into a Distributed table (with 'distributed_foreground_insert' = 1) (total),0,clickhouse,,, +clickhouse.events.DuplicatedInsertedBlocks.count,count,,,,Number of times the INSERTed block to a ReplicatedMergeTree table was deduplicated. (count),0,clickhouse,,, +clickhouse.events.DuplicatedInsertedBlocks.total,gauge,,,,Number of times the INSERTed block to a ReplicatedMergeTree table was deduplicated. (total),0,clickhouse,,, +clickhouse.events.EngineFileLikeReadFiles.count,count,,,,Number of files read in table engines working with files (like File/S3/URL/HDFS). (count),0,clickhouse,,, +clickhouse.events.EngineFileLikeReadFiles.total,gauge,,,,Number of files read in table engines working with files (like File/S3/URL/HDFS). (total),0,clickhouse,,, +clickhouse.events.ExecuteShellCommand.count,count,,,,Number of shell command executions. (count),0,clickhouse,,, +clickhouse.events.ExecuteShellCommand.total,gauge,,,,Number of shell command executions. (total),0,clickhouse,,, +clickhouse.events.ExternalAggregationCompressedBytes.count,count,,,,Number of bytes written to disk for aggregation in external memory. (count),0,clickhouse,,, +clickhouse.events.ExternalAggregationCompressedBytes.total,gauge,,,,Number of bytes written to disk for aggregation in external memory. (total),0,clickhouse,,, +clickhouse.events.ExternalAggregationMerge.count,count,,,,Number of times temporary files were merged for aggregation in external memory. (count),0,clickhouse,,, +clickhouse.events.ExternalAggregationMerge.total,gauge,,,,Number of times temporary files were merged for aggregation in external memory. (total),0,clickhouse,,, +clickhouse.events.ExternalAggregationUncompressedBytes.count,count,,,,"Amount of data (uncompressed, before compression) written to disk for aggregation in external memory. (count)",0,clickhouse,,, +clickhouse.events.ExternalAggregationUncompressedBytes.total,gauge,,,,"Amount of data (uncompressed, before compression) written to disk for aggregation in external memory. (total)",0,clickhouse,,, +clickhouse.events.ExternalAggregationWritePart.count,count,,,,Number of times a temporary file was written to disk for aggregation in external memory. (count),0,clickhouse,,, +clickhouse.events.ExternalAggregationWritePart.total,gauge,,,,Number of times a temporary file was written to disk for aggregation in external memory. (total),0,clickhouse,,, +clickhouse.events.ExternalDataSourceLocalCacheReadBytes.count,count,,,,Bytes read from local cache buffer in RemoteReadBufferCache (count),0,clickhouse,,, +clickhouse.events.ExternalDataSourceLocalCacheReadBytes.total,gauge,,,,Bytes read from local cache buffer in RemoteReadBufferCache (total),0,clickhouse,,, +clickhouse.events.ExternalJoinCompressedBytes.count,count,,,,Number of compressed bytes written for JOIN in external memory. (count),0,clickhouse,,, +clickhouse.events.ExternalJoinCompressedBytes.total,gauge,,,,Number of compressed bytes written for JOIN in external memory. (total),0,clickhouse,,, +clickhouse.events.ExternalJoinMerge.count,count,,,,Number of times temporary files were merged for JOIN in external memory. (count),0,clickhouse,,, +clickhouse.events.ExternalJoinMerge.total,gauge,,,,Number of times temporary files were merged for JOIN in external memory. (total),0,clickhouse,,, +clickhouse.events.ExternalJoinUncompressedBytes.count,count,,,,"Amount of data (uncompressed, before compression) written for JOIN in external memory. (count)",0,clickhouse,,, +clickhouse.events.ExternalJoinUncompressedBytes.total,gauge,,,,"Amount of data (uncompressed, before compression) written for JOIN in external memory. (total)",0,clickhouse,,, +clickhouse.events.ExternalJoinWritePart.count,count,,,,Number of times a temporary file was written to disk for JOIN in external memory. (count),0,clickhouse,,, +clickhouse.events.ExternalJoinWritePart.total,gauge,,,,Number of times a temporary file was written to disk for JOIN in external memory. (total),0,clickhouse,,, +clickhouse.events.ExternalProcessingCompressedBytesTotal.count,count,,,,Number of compressed bytes written by external processing (sorting/aggragating/joining) (count),0,clickhouse,,, +clickhouse.events.ExternalProcessingCompressedBytesTotal.total,gauge,,,,Number of compressed bytes written by external processing (sorting/aggragating/joining) (total),0,clickhouse,,, +clickhouse.events.ExternalProcessingFilesTotal.count,count,,,,Number of files used by external processing (sorting/aggragating/joining) (count),0,clickhouse,,, +clickhouse.events.ExternalProcessingFilesTotal.total,gauge,,,,Number of files used by external processing (sorting/aggragating/joining) (total),0,clickhouse,,, +clickhouse.events.ExternalProcessingUncompressedBytesTotal.count,count,,,,"Amount of data (uncompressed, before compression) written by external processing (sorting/aggragating/joining) (count)",0,clickhouse,,, +clickhouse.events.ExternalProcessingUncompressedBytesTotal.total,gauge,,,,"Amount of data (uncompressed, before compression) written by external processing (sorting/aggragating/joining) (total)",0,clickhouse,,, +clickhouse.events.ExternalSortCompressedBytes.count,count,,,,Number of compressed bytes written for sorting in external memory. (count),0,clickhouse,,, +clickhouse.events.ExternalSortCompressedBytes.total,gauge,,,,Number of compressed bytes written for sorting in external memory. (total),0,clickhouse,,, +clickhouse.events.ExternalSortMerge.count,count,,,,Number of times temporary files were merged for sorting in external memory. (count),0,clickhouse,,, +clickhouse.events.ExternalSortMerge.total,gauge,,,,Number of times temporary files were merged for sorting in external memory. (total),0,clickhouse,,, +clickhouse.events.ExternalSortUncompressedBytes.count,count,,,,"Amount of data (uncompressed, before compression) written for sorting in external memory. (count)",0,clickhouse,,, +clickhouse.events.ExternalSortUncompressedBytes.total,gauge,,,,"Amount of data (uncompressed, before compression) written for sorting in external memory. (total)",0,clickhouse,,, +clickhouse.events.ExternalSortWritePart.count,count,,,,Number of times a temporary file was written to disk for sorting in external memory. (count),0,clickhouse,,, +clickhouse.events.ExternalSortWritePart.total,gauge,,,,Number of times a temporary file was written to disk for sorting in external memory. (total),0,clickhouse,,, +clickhouse.events.FailedAsyncInsertQuery.count,count,,,,Number of failed ASYNC INSERT queries. (count),0,clickhouse,,, +clickhouse.events.FailedAsyncInsertQuery.total,gauge,,,,Number of failed ASYNC INSERT queries. (total),0,clickhouse,,, +clickhouse.events.FailedInsertQuery.count,count,,,,"Same as FailedQuery, but only for INSERT queries. (count)",0,clickhouse,,, +clickhouse.events.FailedInsertQuery.total,gauge,,,,"Same as FailedQuery, but only for INSERT queries. (total)",0,clickhouse,,, +clickhouse.events.FailedQuery.count,count,,,,Number of failed queries. (count),0,clickhouse,,, +clickhouse.events.FailedQuery.total,gauge,,,,Number of failed queries. (total),0,clickhouse,,, +clickhouse.events.FailedSelectQuery.count,count,,,,"Same as FailedQuery, but only for SELECT queries. (count)",0,clickhouse,,, +clickhouse.events.FailedSelectQuery.total,gauge,,,,"Same as FailedQuery, but only for SELECT queries. (total)",0,clickhouse,,, +clickhouse.events.FetchBackgroundExecutorTaskCancelMicroseconds,gauge,,microsecond,,Time spent in cancel() for Fetch executor tasks.,0,clickhouse,,, +clickhouse.events.FetchBackgroundExecutorTaskExecuteStepMicroseconds,gauge,,microsecond,,Time spent in executeStep() for Fetch executor tasks.,0,clickhouse,,, +clickhouse.events.FetchBackgroundExecutorTaskResetMicroseconds,gauge,,microsecond,,Time spent resetting task for Fetch executor.,0,clickhouse,,, +clickhouse.events.FetchBackgroundExecutorWaitMicroseconds,gauge,,microsecond,,Time spent waiting for completion in Fetch executor.,0,clickhouse,,, +clickhouse.events.FileOpen.count,count,,,,Number of files opened. (count),0,clickhouse,,, +clickhouse.events.FileOpen.total,gauge,,,,Number of files opened. (total),0,clickhouse,,, +clickhouse.events.FileSegmentCacheWriteMicroseconds,gauge,,microsecond,,Metric per file segment. Time spend writing data to cache,0,clickhouse,,, +clickhouse.events.FileSegmentCompleteMicroseconds,gauge,,microsecond,,Duration of FileSegment::complete() in filesystem cache,0,clickhouse,,, +clickhouse.events.FileSegmentFailToIncreasePriority.count,count,,,,Number of times the priority was not increased due to a high contention on the cache lock (count),0,clickhouse,,, +clickhouse.events.FileSegmentFailToIncreasePriority.total,gauge,,,,Number of times the priority was not increased due to a high contention on the cache lock (total),0,clickhouse,,, +clickhouse.events.FileSegmentHolderCompleteMicroseconds,gauge,,microsecond,,File segments holder complete() time,0,clickhouse,,, +clickhouse.events.FileSegmentLockMicroseconds,gauge,,microsecond,,Lock file segment time,0,clickhouse,,, +clickhouse.events.FileSegmentPredownloadMicroseconds,gauge,,microsecond,,Metric per file segment. Time spent pre-downloading data to cache (pre-downloading - finishing file segment download (after someone who failed to do that) up to the point current thread was requested to do),0,clickhouse,,, +clickhouse.events.FileSegmentReadMicroseconds,gauge,,microsecond,,Metric per file segment. Time spend reading from file,0,clickhouse,,, +clickhouse.events.FileSegmentRemoveMicroseconds,gauge,,microsecond,,File segment remove() time,0,clickhouse,,, +clickhouse.events.FileSegmentUseMicroseconds,gauge,,microsecond,,File segment use() time,0,clickhouse,,, +clickhouse.events.FileSegmentUsedBytes.count,count,,,,Metric per file segment. How many bytes were actually used from current file segment (count),0,clickhouse,,, +clickhouse.events.FileSegmentUsedBytes.total,gauge,,,,Metric per file segment. How many bytes were actually used from current file segment (total),0,clickhouse,,, +clickhouse.events.FileSegmentWaitMicroseconds,gauge,,microsecond,,Wait on DOWNLOADING state,0,clickhouse,,, +clickhouse.events.FileSegmentWaitReadBufferMicroseconds,gauge,,microsecond,,Metric per file segment. Time spend waiting for internal read buffer (includes cache waiting),0,clickhouse,,, +clickhouse.events.FileSegmentWriteMicroseconds,gauge,,microsecond,,File segment write() time,0,clickhouse,,, +clickhouse.events.FileSync.count,count,,,,Number of times the F_FULLFSYNC/fsync/fdatasync function was called for files. (count),0,clickhouse,,, +clickhouse.events.FileSync.total,gauge,,,,Number of times the F_FULLFSYNC/fsync/fdatasync function was called for files. (total),0,clickhouse,,, +clickhouse.events.FileSyncElapsedMicroseconds,gauge,,microsecond,,Total time spent waiting for F_FULLFSYNC/fsync/fdatasync syscall for files.,0,clickhouse,,, +clickhouse.events.FilesystemCacheBackgroundDownloadQueuePush.count,count,,,,Number of file segments sent for background download in filesystem cache (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheBackgroundDownloadQueuePush.total,gauge,,,,Number of file segments sent for background download in filesystem cache (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheBackgroundEvictedBytes.count,count,,,,Number of bytes evicted by background thread (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheBackgroundEvictedBytes.total,gauge,,,,Number of bytes evicted by background thread (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheBackgroundEvictedFileSegments.count,count,,,,Number of file segments evicted by background thread (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheBackgroundEvictedFileSegments.total,gauge,,,,Number of file segments evicted by background thread (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheCreatedKeyDirectories.count,count,,,,Number of created key directories (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheCreatedKeyDirectories.total,gauge,,,,Number of created key directories (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictMicroseconds,gauge,,microsecond,,Filesystem cache eviction time,0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictedBytes.count,count,,,,Number of bytes evicted from filesystem cache (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictedBytes.total,gauge,,,,Number of bytes evicted from filesystem cache (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictedFileSegments.count,count,,,,Number of file segments evicted from filesystem cache (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictedFileSegments.total,gauge,,,,Number of file segments evicted from filesystem cache (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease.count,count,,,,Number of file segments evicted from filesystem cache when increasing priority of file segments (Applies to SLRU cache policy) (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease.total,gauge,,,,Number of file segments evicted from filesystem cache when increasing priority of file segments (Applies to SLRU cache policy) (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictionReusedIterator.count,count,,,,Number of filesystem cache iterator reusing (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictionReusedIterator.total,gauge,,,,Number of filesystem cache iterator reusing (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictionSkippedEvictingFileSegments.count,count,,,,Number of file segments skipped for eviction because of being in evicting state (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictionSkippedEvictingFileSegments.total,gauge,,,,Number of file segments skipped for eviction because of being in evicting state (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictionSkippedFileSegments.count,count,,,,Number of file segments skipped for eviction because of being in unreleasable state (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictionSkippedFileSegments.total,gauge,,,,Number of file segments skipped for eviction because of being in unreleasable state (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictionTries.count,count,,,,Number of filesystem cache eviction attempts (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheEvictionTries.total,gauge,,,,Number of filesystem cache eviction attempts (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheFailToReserveSpaceBecauseOfCacheResize.count,count,,,,Number of times space reservation was skipped due to the cache is being resized (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheFailToReserveSpaceBecauseOfCacheResize.total,gauge,,,,Number of times space reservation was skipped due to the cache is being resized (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheFailToReserveSpaceBecauseOfLockContention.count,count,,,,Number of times space reservation was skipped due to a high contention on the cache lock (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheFailToReserveSpaceBecauseOfLockContention.total,gauge,,,,Number of times space reservation was skipped due to a high contention on the cache lock (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheFailedEvictionCandidates.count,count,,,,Number of file segments which unexpectedly failed to be evicted during dynamic filesystem cache eviction (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheFailedEvictionCandidates.total,gauge,,,,Number of file segments which unexpectedly failed to be evicted during dynamic filesystem cache eviction (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheFreeSpaceKeepingThreadRun.count,count,,,,Number of times background thread executed free space keeping job (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheFreeSpaceKeepingThreadRun.total,gauge,,,,Number of times background thread executed free space keeping job (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheFreeSpaceKeepingThreadWorkMilliseconds,gauge,,millisecond,,Time for which background thread executed free space keeping job,0,clickhouse,,, +clickhouse.events.FilesystemCacheGetMicroseconds,gauge,,microsecond,,Filesystem cache get() time,0,clickhouse,,, +clickhouse.events.FilesystemCacheGetOrSetMicroseconds,gauge,,microsecond,,Filesystem cache getOrSet() time,0,clickhouse,,, +clickhouse.events.FilesystemCacheHoldFileSegments.count,count,,,,"Filesystem cache file segments count, which were hold (count)",0,clickhouse,,, +clickhouse.events.FilesystemCacheHoldFileSegments.total,gauge,,,,"Filesystem cache file segments count, which were hold (total)",0,clickhouse,,, +clickhouse.events.FilesystemCacheLoadMetadataMicroseconds,gauge,,microsecond,,Time spent loading filesystem cache metadata,0,clickhouse,,, +clickhouse.events.FilesystemCacheLockCacheMicroseconds,gauge,,microsecond,,Lock filesystem cache time,0,clickhouse,,, +clickhouse.events.FilesystemCacheLockKeyMicroseconds,gauge,,microsecond,,Lock cache key time,0,clickhouse,,, +clickhouse.events.FilesystemCacheLockMetadataMicroseconds,gauge,,microsecond,,Lock filesystem cache metadata time,0,clickhouse,,, +clickhouse.events.FilesystemCacheReserveAttempts.count,count,,,,Filesystem cache space reservation attempt (count),0,clickhouse,,, +clickhouse.events.FilesystemCacheReserveAttempts.total,gauge,,,,Filesystem cache space reservation attempt (total),0,clickhouse,,, +clickhouse.events.FilesystemCacheReserveMicroseconds,gauge,,microsecond,,Filesystem cache space reservation time,0,clickhouse,,, +clickhouse.events.FilesystemCacheUnusedHoldFileSegments.count,count,,,,"Filesystem cache file segments count, which were hold, but not used (because of seek or LIMIT n, etc) (count)",0,clickhouse,,, +clickhouse.events.FilesystemCacheUnusedHoldFileSegments.total,gauge,,,,"Filesystem cache file segments count, which were hold, but not used (because of seek or LIMIT n, etc) (total)",0,clickhouse,,, +clickhouse.events.FilterTransformPassedBytes.count,count,,,,Number of bytes that passed the filter in the query (count),0,clickhouse,,, +clickhouse.events.FilterTransformPassedBytes.total,gauge,,,,Number of bytes that passed the filter in the query (total),0,clickhouse,,, +clickhouse.events.FilterTransformPassedRows.count,count,,,,Number of rows that passed the filter in the query (count),0,clickhouse,,, +clickhouse.events.FilterTransformPassedRows.total,gauge,,,,Number of rows that passed the filter in the query (total),0,clickhouse,,, +clickhouse.events.FilteringMarksWithPrimaryKeyMicroseconds,gauge,,microsecond,,Time spent filtering parts by PK.,0,clickhouse,,, +clickhouse.events.FilteringMarksWithSecondaryKeysMicroseconds,gauge,,microsecond,,Time spent filtering parts by skip indexes.,0,clickhouse,,, +clickhouse.events.FunctionExecute.count,count,,,,"Number of SQL ordinary function calls (SQL functions are called on per-block basis, so this number represents the number of blocks). (count)",0,clickhouse,,, +clickhouse.events.FunctionExecute.total,gauge,,,,"Number of SQL ordinary function calls (SQL functions are called on per-block basis, so this number represents the number of blocks). (total)",0,clickhouse,,, +clickhouse.events.GWPAsanAllocateFailed.count,count,,,,Number of failed allocations done by GWPAsan (i.e. filled pool) (count),0,clickhouse,,, +clickhouse.events.GWPAsanAllocateFailed.total,gauge,,,,Number of failed allocations done by GWPAsan (i.e. filled pool) (total),0,clickhouse,,, +clickhouse.events.GWPAsanAllocateSuccess.count,count,,,,Number of successful allocations done by GWPAsan (count),0,clickhouse,,, +clickhouse.events.GWPAsanAllocateSuccess.total,gauge,,,,Number of successful allocations done by GWPAsan (total),0,clickhouse,,, +clickhouse.events.GWPAsanFree.count,count,,,,Number of free operations done by GWPAsan (count),0,clickhouse,,, +clickhouse.events.GWPAsanFree.total,gauge,,,,Number of free operations done by GWPAsan (total),0,clickhouse,,, +clickhouse.events.GatheredColumns.count,count,,,,Number of columns gathered during the vertical stage of merges. (count),0,clickhouse,,, +clickhouse.events.GatheredColumns.total,gauge,,,,Number of columns gathered during the vertical stage of merges. (total),0,clickhouse,,, +clickhouse.events.GatheringColumnMilliseconds,gauge,,millisecond,,Total time spent while gathering columns for vertical merge,0,clickhouse,,, +clickhouse.events.GlobalThreadPoolExpansions.count,count,,,,Counts the total number of times new threads have been added to the global thread pool. This metric indicates the frequency of expansions in the global thread pool to accommodate increased processing demands. (count),0,clickhouse,,, +clickhouse.events.GlobalThreadPoolExpansions.total,gauge,,,,Counts the total number of times new threads have been added to the global thread pool. This metric indicates the frequency of expansions in the global thread pool to accommodate increased processing demands. (total),0,clickhouse,,, +clickhouse.events.GlobalThreadPoolJobWaitTimeMicroseconds,gauge,,microsecond,,"Measures the elapsed time from when a job is scheduled in the thread pool to when it is picked up for execution by a worker thread. This metric helps identify delays in job processing, indicating the responsiveness of the thread pool to new tasks.",0,clickhouse,,, +clickhouse.events.GlobalThreadPoolJobs.count,count,,,,Counts the number of jobs that have been pushed to the global thread pool. (count),0,clickhouse,,, +clickhouse.events.GlobalThreadPoolJobs.total,gauge,,,,Counts the number of jobs that have been pushed to the global thread pool. (total),0,clickhouse,,, +clickhouse.events.GlobalThreadPoolLockWaitMicroseconds,gauge,,microsecond,,Total time threads have spent waiting for locks in the global thread pool.,0,clickhouse,,, +clickhouse.events.GlobalThreadPoolShrinks.count,count,,,,"Counts the total number of times the global thread pool has shrunk by removing threads. This occurs when the number of idle threads exceeds max_thread_pool_free_size, indicating adjustments in the global thread pool size in response to decreased thread utilization. (count)",0,clickhouse,,, +clickhouse.events.GlobalThreadPoolShrinks.total,gauge,,,,"Counts the total number of times the global thread pool has shrunk by removing threads. This occurs when the number of idle threads exceeds max_thread_pool_free_size, indicating adjustments in the global thread pool size in response to decreased thread utilization. (total)",0,clickhouse,,, +clickhouse.events.GlobalThreadPoolThreadCreationMicroseconds,gauge,,microsecond,,Total time spent waiting for new threads to start.,0,clickhouse,,, +clickhouse.events.HTTPConnectionsCreated.count,count,,,,Number of created client HTTP connections (count),0,clickhouse,,, +clickhouse.events.HTTPConnectionsCreated.total,gauge,,,,Number of created client HTTP connections (total),0,clickhouse,,, +clickhouse.events.HTTPConnectionsElapsedMicroseconds,gauge,,microsecond,,Total time spend on creating client HTTP connections,0,clickhouse,,, +clickhouse.events.HTTPConnectionsErrors.count,count,,,,Number of cases when creation of a client HTTP connection failed (count),0,clickhouse,,, +clickhouse.events.HTTPConnectionsErrors.total,gauge,,,,Number of cases when creation of a client HTTP connection failed (total),0,clickhouse,,, +clickhouse.events.HTTPConnectionsExpired.count,count,,,,Number of expired client HTTP connections (count),0,clickhouse,,, +clickhouse.events.HTTPConnectionsExpired.total,gauge,,,,Number of expired client HTTP connections (total),0,clickhouse,,, +clickhouse.events.HTTPConnectionsPreserved.count,count,,,,Number of preserved client HTTP connections (count),0,clickhouse,,, +clickhouse.events.HTTPConnectionsPreserved.total,gauge,,,,Number of preserved client HTTP connections (total),0,clickhouse,,, +clickhouse.events.HTTPConnectionsReset.count,count,,,,Number of reset client HTTP connections (count),0,clickhouse,,, +clickhouse.events.HTTPConnectionsReset.total,gauge,,,,Number of reset client HTTP connections (total),0,clickhouse,,, +clickhouse.events.HTTPConnectionsReused.count,count,,,,Number of reused client HTTP connections (count),0,clickhouse,,, +clickhouse.events.HTTPConnectionsReused.total,gauge,,,,Number of reused client HTTP connections (total),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsClosed.count,count,,,,Number of closed server HTTP connections. Keep alive has not been negotiated (count),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsClosed.total,gauge,,,,Number of closed server HTTP connections. Keep alive has not been negotiated (total),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsCreated.count,count,,,,Number of created server HTTP connections (count),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsCreated.total,gauge,,,,Number of created server HTTP connections (total),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsExpired.count,count,,,,Number of expired server HTTP connections. (count),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsExpired.total,gauge,,,,Number of expired server HTTP connections. (total),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsPreserved.count,count,,,,Number of preserved server HTTP connections. Connection kept alive successfully (count),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsPreserved.total,gauge,,,,Number of preserved server HTTP connections. Connection kept alive successfully (total),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsReset.count,count,,,,Number of reset server HTTP connections. Server closes connection (count),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsReset.total,gauge,,,,Number of reset server HTTP connections. Server closes connection (total),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsReused.count,count,,,,Number of reused server HTTP connections (count),0,clickhouse,,, +clickhouse.events.HTTPServerConnectionsReused.total,gauge,,,,Number of reused server HTTP connections (total),0,clickhouse,,, +clickhouse.events.HardPageFaults.count,count,,,,"The number of hard page faults in query execution threads. High values indicate either that you forgot to turn off swap on your server, or eviction of memory pages of the ClickHouse binary during very high memory pressure, or successful usage of the 'mmap' read method for the tables data. (count)",0,clickhouse,,, +clickhouse.events.HardPageFaults.total,gauge,,,,"The number of hard page faults in query execution threads. High values indicate either that you forgot to turn off swap on your server, or eviction of memory pages of the ClickHouse binary during very high memory pressure, or successful usage of the 'mmap' read method for the tables data. (total)",0,clickhouse,,, +clickhouse.events.HashJoinPreallocatedElementsInHashTables.count,count,,,,How many elements were preallocated in hash tables for hash join. (count),0,clickhouse,,, +clickhouse.events.HashJoinPreallocatedElementsInHashTables.total,gauge,,,,How many elements were preallocated in hash tables for hash join. (total),0,clickhouse,,, +clickhouse.events.HedgedRequestsChangeReplica.count,count,,,,Total count when timeout for changing replica expired in hedged requests. (count),0,clickhouse,,, +clickhouse.events.HedgedRequestsChangeReplica.total,gauge,,,,Total count when timeout for changing replica expired in hedged requests. (total),0,clickhouse,,, +clickhouse.events.IOBufferAllocBytes.count,count,,,,Number of bytes allocated for IO buffers (for ReadBuffer/WriteBuffer). (count),0,clickhouse,,, +clickhouse.events.IOBufferAllocBytes.total,gauge,,,,Number of bytes allocated for IO buffers (for ReadBuffer/WriteBuffer). (total),0,clickhouse,,, +clickhouse.events.IOBufferAllocs.count,count,,,,Number of allocations of IO buffers (for ReadBuffer/WriteBuffer). (count),0,clickhouse,,, +clickhouse.events.IOBufferAllocs.total,gauge,,,,Number of allocations of IO buffers (for ReadBuffer/WriteBuffer). (total),0,clickhouse,,, +clickhouse.events.IOUringCQEsCompleted.count,count,,,,Total number of successfully completed io_uring CQEs (count),0,clickhouse,,, +clickhouse.events.IOUringCQEsCompleted.total,gauge,,,,Total number of successfully completed io_uring CQEs (total),0,clickhouse,,, +clickhouse.events.IOUringCQEsFailed.count,count,,,,Total number of completed io_uring CQEs with failures (count),0,clickhouse,,, +clickhouse.events.IOUringCQEsFailed.total,gauge,,,,Total number of completed io_uring CQEs with failures (total),0,clickhouse,,, +clickhouse.events.IOUringSQEsResubmitsAsync.count,count,,,,Total number of asynchronous io_uring SQE resubmits performed (count),0,clickhouse,,, +clickhouse.events.IOUringSQEsResubmitsAsync.total,gauge,,,,Total number of asynchronous io_uring SQE resubmits performed (total),0,clickhouse,,, +clickhouse.events.IOUringSQEsResubmitsSync.count,count,,,,Total number of synchronous io_uring SQE resubmits performed (count),0,clickhouse,,, +clickhouse.events.IOUringSQEsResubmitsSync.total,gauge,,,,Total number of synchronous io_uring SQE resubmits performed (total),0,clickhouse,,, +clickhouse.events.IOUringSQEsSubmitted.count,count,,,,Total number of io_uring SQEs submitted (count),0,clickhouse,,, +clickhouse.events.IOUringSQEsSubmitted.total,gauge,,,,Total number of io_uring SQEs submitted (total),0,clickhouse,,, +clickhouse.events.IcebergIteratorInitializationMicroseconds,gauge,,microsecond,,Total time spent on synchronous initialization of iceberg data iterators.,0,clickhouse,,, +clickhouse.events.IcebergMetadataFilesCacheHits.count,count,,,,Number of times iceberg metadata files have been found in the cache. (count),0,clickhouse,,, +clickhouse.events.IcebergMetadataFilesCacheHits.total,gauge,,,,Number of times iceberg metadata files have been found in the cache. (total),0,clickhouse,,, +clickhouse.events.IcebergMetadataFilesCacheMisses.count,count,,,,Number of times iceberg metadata files have not been found in the iceberg metadata cache and had to be read from (remote) disk. (count),0,clickhouse,,, +clickhouse.events.IcebergMetadataFilesCacheMisses.total,gauge,,,,Number of times iceberg metadata files have not been found in the iceberg metadata cache and had to be read from (remote) disk. (total),0,clickhouse,,, +clickhouse.events.IcebergMetadataFilesCacheWeightLost.count,count,,,,Approximate number of bytes evicted from the iceberg metadata cache. (count),0,clickhouse,,, +clickhouse.events.IcebergMetadataFilesCacheWeightLost.total,gauge,,,,Approximate number of bytes evicted from the iceberg metadata cache. (total),0,clickhouse,,, +clickhouse.events.IcebergMetadataReadWaitTimeMicroseconds,gauge,,microsecond,,"Total time data readers spend waiting for iceberg metadata files to be read and parsed, summed across all reader threads.",0,clickhouse,,, +clickhouse.events.IcebergMetadataReturnedObjectInfos.count,count,,,,Total number of returned object infos from iceberg iterator. (count),0,clickhouse,,, +clickhouse.events.IcebergMetadataReturnedObjectInfos.total,gauge,,,,Total number of returned object infos from iceberg iterator. (total),0,clickhouse,,, +clickhouse.events.IcebergMetadataUpdateMicroseconds,gauge,,microsecond,,Total time spent on synchronous initialization of iceberg data iterators.,0,clickhouse,,, +clickhouse.events.IcebergMinMaxIndexPrunedFiles.count,count,,,,Number of skipped files by using MinMax index in Iceberg (count),0,clickhouse,,, +clickhouse.events.IcebergMinMaxIndexPrunedFiles.total,gauge,,,,Number of skipped files by using MinMax index in Iceberg (total),0,clickhouse,,, +clickhouse.events.IcebergPartitionPrunedFiles.count,count,,,,Number of skipped files during Iceberg partition pruning (count),0,clickhouse,,, +clickhouse.events.IcebergPartitionPrunedFiles.total,gauge,,,,Number of skipped files during Iceberg partition pruning (total),0,clickhouse,,, +clickhouse.events.IcebergPartitionPrunnedFiles.count,count,,,,Number of skipped files during Iceberg partition pruning (count),0,clickhouse,,, +clickhouse.events.IcebergPartitionPrunnedFiles.total,gauge,,,,Number of skipped files during Iceberg partition pruning (total),0,clickhouse,,, +clickhouse.events.IcebergTrivialCountOptimizationApplied.count,count,,,,Trivial count optimization applied while reading from Iceberg (count),0,clickhouse,,, +clickhouse.events.IcebergTrivialCountOptimizationApplied.total,gauge,,,,Trivial count optimization applied while reading from Iceberg (total),0,clickhouse,,, +clickhouse.events.IcebergVersionHintUsed.count,count,,,,Number of times version-hint.text has been used. (count),0,clickhouse,,, +clickhouse.events.IcebergVersionHintUsed.total,gauge,,,,Number of times version-hint.text has been used. (total),0,clickhouse,,, +clickhouse.events.IgnoredColdParts.count,count,,,,See setting ignore_cold_parts_seconds. Number of times read queries ignored very new parts that weren't pulled into cache by CacheWarmer yet. (count),0,clickhouse,,, +clickhouse.events.IgnoredColdParts.total,gauge,,,,See setting ignore_cold_parts_seconds. Number of times read queries ignored very new parts that weren't pulled into cache by CacheWarmer yet. (total),0,clickhouse,,, +clickhouse.events.IndexBinarySearchAlgorithm.count,count,,,,Number of times the binary search algorithm is used over the index marks (count),0,clickhouse,,, +clickhouse.events.IndexBinarySearchAlgorithm.total,gauge,,,,Number of times the binary search algorithm is used over the index marks (total),0,clickhouse,,, +clickhouse.events.IndexGenericExclusionSearchAlgorithm.count,count,,,,Number of times the generic exclusion search algorithm is used over the index marks (count),0,clickhouse,,, +clickhouse.events.IndexGenericExclusionSearchAlgorithm.total,gauge,,,,Number of times the generic exclusion search algorithm is used over the index marks (total),0,clickhouse,,, +clickhouse.events.InitialQuery.count,count,,,,"Same as Query, but only counts initial queries (see is_initial_query). (count)",0,clickhouse,,, +clickhouse.events.InitialQuery.total,gauge,,,,"Same as Query, but only counts initial queries (see is_initial_query). (total)",0,clickhouse,,, +clickhouse.events.InsertQueriesWithSubqueries.count,count,,,,Count INSERT queries with all subqueries (count),0,clickhouse,,, +clickhouse.events.InsertQueriesWithSubqueries.total,gauge,,,,Count INSERT queries with all subqueries (total),0,clickhouse,,, +clickhouse.events.InsertQuery.count,count,,,,"Same as Query, but only for INSERT queries. (count)",0,clickhouse,,, +clickhouse.events.InsertQuery.total,gauge,,,,"Same as Query, but only for INSERT queries. (total)",0,clickhouse,,, +clickhouse.events.InsertQueryTimeMicroseconds,gauge,,microsecond,,Total time of INSERT queries.,0,clickhouse,,, +clickhouse.events.InsertedBytes.count,count,,,,Number of bytes (uncompressed; for columns as they stored in memory) INSERTed to all tables. (count),0,clickhouse,,, +clickhouse.events.InsertedBytes.total,gauge,,,,Number of bytes (uncompressed; for columns as they stored in memory) INSERTed to all tables. (total),0,clickhouse,,, +clickhouse.events.InsertedCompactParts.count,count,,,,Number of parts inserted in Compact format. (count),0,clickhouse,,, +clickhouse.events.InsertedCompactParts.total,gauge,,,,Number of parts inserted in Compact format. (total),0,clickhouse,,, +clickhouse.events.InsertedRows.count,count,,,,Number of rows INSERTed to all tables. (count),0,clickhouse,,, +clickhouse.events.InsertedRows.total,gauge,,,,Number of rows INSERTed to all tables. (total),0,clickhouse,,, +clickhouse.events.InsertedWideParts.count,count,,,,Number of parts inserted in Wide format. (count),0,clickhouse,,, +clickhouse.events.InsertedWideParts.total,gauge,,,,Number of parts inserted in Wide format. (total),0,clickhouse,,, +clickhouse.events.InterfaceHTTPReceiveBytes.count,count,,,,Number of bytes received through HTTP interfaces (count),0,clickhouse,,, +clickhouse.events.InterfaceHTTPReceiveBytes.total,gauge,,,,Number of bytes received through HTTP interfaces (total),0,clickhouse,,, +clickhouse.events.InterfaceHTTPSendBytes.count,count,,,,Number of bytes sent through HTTP interfaces (count),0,clickhouse,,, +clickhouse.events.InterfaceHTTPSendBytes.total,gauge,,,,Number of bytes sent through HTTP interfaces (total),0,clickhouse,,, +clickhouse.events.InterfaceInterserverReceiveBytes.count,count,,,,Number of bytes received through interserver interfaces (count),0,clickhouse,,, +clickhouse.events.InterfaceInterserverReceiveBytes.total,gauge,,,,Number of bytes received through interserver interfaces (total),0,clickhouse,,, +clickhouse.events.InterfaceInterserverSendBytes.count,count,,,,Number of bytes sent through interserver interfaces (count),0,clickhouse,,, +clickhouse.events.InterfaceInterserverSendBytes.total,gauge,,,,Number of bytes sent through interserver interfaces (total),0,clickhouse,,, +clickhouse.events.InterfaceMySQLReceiveBytes.count,count,,,,Number of bytes received through MySQL interfaces (count),0,clickhouse,,, +clickhouse.events.InterfaceMySQLReceiveBytes.total,gauge,,,,Number of bytes received through MySQL interfaces (total),0,clickhouse,,, +clickhouse.events.InterfaceMySQLSendBytes.count,count,,,,Number of bytes sent through MySQL interfaces (count),0,clickhouse,,, +clickhouse.events.InterfaceMySQLSendBytes.total,gauge,,,,Number of bytes sent through MySQL interfaces (total),0,clickhouse,,, +clickhouse.events.InterfaceNativeReceiveBytes.count,count,,,,Number of bytes received through native interfaces (count),0,clickhouse,,, +clickhouse.events.InterfaceNativeReceiveBytes.total,gauge,,,,Number of bytes received through native interfaces (total),0,clickhouse,,, +clickhouse.events.InterfaceNativeSendBytes.count,count,,,,Number of bytes sent through native interfaces (count),0,clickhouse,,, +clickhouse.events.InterfaceNativeSendBytes.total,gauge,,,,Number of bytes sent through native interfaces (total),0,clickhouse,,, +clickhouse.events.InterfacePostgreSQLReceiveBytes.count,count,,,,Number of bytes received through PostgreSQL interfaces (count),0,clickhouse,,, +clickhouse.events.InterfacePostgreSQLReceiveBytes.total,gauge,,,,Number of bytes received through PostgreSQL interfaces (total),0,clickhouse,,, +clickhouse.events.InterfacePostgreSQLSendBytes.count,count,,,,Number of bytes sent through PostgreSQL interfaces (count),0,clickhouse,,, +clickhouse.events.InterfacePostgreSQLSendBytes.total,gauge,,,,Number of bytes sent through PostgreSQL interfaces (total),0,clickhouse,,, +clickhouse.events.InterfacePrometheusReceiveBytes.count,count,,,,Number of bytes received through Prometheus interfaces (count),0,clickhouse,,, +clickhouse.events.InterfacePrometheusReceiveBytes.total,gauge,,,,Number of bytes received through Prometheus interfaces (total),0,clickhouse,,, +clickhouse.events.InterfacePrometheusSendBytes.count,count,,,,Number of bytes sent through Prometheus interfaces (count),0,clickhouse,,, +clickhouse.events.InterfacePrometheusSendBytes.total,gauge,,,,Number of bytes sent through Prometheus interfaces (total),0,clickhouse,,, +clickhouse.events.JoinBuildTableRowCount.count,count,,,,Total number of rows in the build table for a JOIN operation. (count),0,clickhouse,,, +clickhouse.events.JoinBuildTableRowCount.total,gauge,,,,Total number of rows in the build table for a JOIN operation. (total),0,clickhouse,,, +clickhouse.events.JoinProbeTableRowCount.count,count,,,,Total number of rows in the probe table for a JOIN operation. (count),0,clickhouse,,, +clickhouse.events.JoinProbeTableRowCount.total,gauge,,,,Total number of rows in the probe table for a JOIN operation. (total),0,clickhouse,,, +clickhouse.events.JoinResultRowCount.count,count,,,,Total number of rows in the result of a JOIN operation. (count),0,clickhouse,,, +clickhouse.events.JoinResultRowCount.total,gauge,,,,Total number of rows in the result of a JOIN operation. (total),0,clickhouse,,, +clickhouse.events.KafkaBackgroundReads.count,count,,,,Number of background reads populating materialized views from Kafka since server start (count),0,clickhouse,,, +clickhouse.events.KafkaBackgroundReads.total,gauge,,,,Number of background reads populating materialized views from Kafka since server start (total),0,clickhouse,,, +clickhouse.events.KafkaCommitFailures.count,count,,,,Number of failed commits of consumed offsets to Kafka (usually is a sign of some data duplication) (count),0,clickhouse,,, +clickhouse.events.KafkaCommitFailures.total,gauge,,,,Number of failed commits of consumed offsets to Kafka (usually is a sign of some data duplication) (total),0,clickhouse,,, +clickhouse.events.KafkaCommits.count,count,,,,Number of successful commits of consumed offsets to Kafka (normally should be the same as KafkaBackgroundReads) (count),0,clickhouse,,, +clickhouse.events.KafkaCommits.total,gauge,,,,Number of successful commits of consumed offsets to Kafka (normally should be the same as KafkaBackgroundReads) (total),0,clickhouse,,, +clickhouse.events.KafkaConsumerErrors.count,count,,,,Number of errors reported by librdkafka during polls (count),0,clickhouse,,, +clickhouse.events.KafkaConsumerErrors.total,gauge,,,,Number of errors reported by librdkafka during polls (total),0,clickhouse,,, +clickhouse.events.KafkaDirectReads.count,count,,,,Number of direct selects from Kafka tables since server start (count),0,clickhouse,,, +clickhouse.events.KafkaDirectReads.total,gauge,,,,Number of direct selects from Kafka tables since server start (total),0,clickhouse,,, +clickhouse.events.KafkaMessagesFailed.count,count,,,,Number of Kafka messages ClickHouse failed to parse (count),0,clickhouse,,, +clickhouse.events.KafkaMessagesFailed.total,gauge,,,,Number of Kafka messages ClickHouse failed to parse (total),0,clickhouse,,, +clickhouse.events.KafkaMessagesPolled.count,count,,,,Number of Kafka messages polled from librdkafka to ClickHouse (count),0,clickhouse,,, +clickhouse.events.KafkaMessagesPolled.total,gauge,,,,Number of Kafka messages polled from librdkafka to ClickHouse (total),0,clickhouse,,, +clickhouse.events.KafkaMessagesProduced.count,count,,,,Number of messages produced to Kafka (count),0,clickhouse,,, +clickhouse.events.KafkaMessagesProduced.total,gauge,,,,Number of messages produced to Kafka (total),0,clickhouse,,, +clickhouse.events.KafkaMessagesRead.count,count,,,,Number of Kafka messages already processed by ClickHouse (count),0,clickhouse,,, +clickhouse.events.KafkaMessagesRead.total,gauge,,,,Number of Kafka messages already processed by ClickHouse (total),0,clickhouse,,, +clickhouse.events.KafkaProducerErrors.count,count,,,,Number of errors during producing the messages to Kafka (count),0,clickhouse,,, +clickhouse.events.KafkaProducerErrors.total,gauge,,,,Number of errors during producing the messages to Kafka (total),0,clickhouse,,, +clickhouse.events.KafkaProducerFlushes.count,count,,,,Number of explicit flushes to Kafka producer (count),0,clickhouse,,, +clickhouse.events.KafkaProducerFlushes.total,gauge,,,,Number of explicit flushes to Kafka producer (total),0,clickhouse,,, +clickhouse.events.KafkaRebalanceAssignments.count,count,,,,Number of partition assignments (the final stage of consumer group rebalance) (count),0,clickhouse,,, +clickhouse.events.KafkaRebalanceAssignments.total,gauge,,,,Number of partition assignments (the final stage of consumer group rebalance) (total),0,clickhouse,,, +clickhouse.events.KafkaRebalanceErrors.count,count,,,,Number of failed consumer group rebalances (count),0,clickhouse,,, +clickhouse.events.KafkaRebalanceErrors.total,gauge,,,,Number of failed consumer group rebalances (total),0,clickhouse,,, +clickhouse.events.KafkaRebalanceRevocations.count,count,,,,Number of partition revocations (the first stage of consumer group rebalance) (count),0,clickhouse,,, +clickhouse.events.KafkaRebalanceRevocations.total,gauge,,,,Number of partition revocations (the first stage of consumer group rebalance) (total),0,clickhouse,,, +clickhouse.events.KafkaRowsRead.count,count,,,,Number of rows parsed from Kafka messages (count),0,clickhouse,,, +clickhouse.events.KafkaRowsRead.total,gauge,,,,Number of rows parsed from Kafka messages (total),0,clickhouse,,, +clickhouse.events.KafkaRowsRejected.count,count,,,,Number of parsed rows which were later rejected (due to rebalances / errors or similar reasons). Those rows will be consumed again after the rebalance. (count),0,clickhouse,,, +clickhouse.events.KafkaRowsRejected.total,gauge,,,,Number of parsed rows which were later rejected (due to rebalances / errors or similar reasons). Those rows will be consumed again after the rebalance. (total),0,clickhouse,,, +clickhouse.events.KafkaRowsWritten.count,count,,,,Number of rows inserted into Kafka tables (count),0,clickhouse,,, +clickhouse.events.KafkaRowsWritten.total,gauge,,,,Number of rows inserted into Kafka tables (total),0,clickhouse,,, +clickhouse.events.KafkaWrites.count,count,,,,Number of writes (inserts) to Kafka tables (count),0,clickhouse,,, +clickhouse.events.KafkaWrites.total,gauge,,,,Number of writes (inserts) to Kafka tables (total),0,clickhouse,,, +clickhouse.events.KeeperBatchMaxCount.count,count,,,,Number of times the size of batch was limited by the amount (count),0,clickhouse,,, +clickhouse.events.KeeperBatchMaxCount.total,gauge,,,,Number of times the size of batch was limited by the amount (total),0,clickhouse,,, +clickhouse.events.KeeperBatchMaxTotalSize.count,count,,,,Number of times the size of batch was limited by the total bytes size (count),0,clickhouse,,, +clickhouse.events.KeeperBatchMaxTotalSize.total,gauge,,,,Number of times the size of batch was limited by the total bytes size (total),0,clickhouse,,, +clickhouse.events.KeeperCheckRequest.count,count,,,,Number of check requests (count),0,clickhouse,,, +clickhouse.events.KeeperCheckRequest.total,gauge,,,,Number of check requests (total),0,clickhouse,,, +clickhouse.events.KeeperCommitWaitElapsedMicroseconds,gauge,,microsecond,,Time spent waiting for certain log to be committed,0,clickhouse,,, +clickhouse.events.KeeperCommits.count,count,,,,Number of successful commits (count),0,clickhouse,,, +clickhouse.events.KeeperCommits.total,gauge,,,,Number of successful commits (total),0,clickhouse,,, +clickhouse.events.KeeperCommitsFailed.count,count,,,,Number of failed commits (count),0,clickhouse,,, +clickhouse.events.KeeperCommitsFailed.total,gauge,,,,Number of failed commits (total),0,clickhouse,,, +clickhouse.events.KeeperCreateRequest.count,count,,,,Number of create requests (count),0,clickhouse,,, +clickhouse.events.KeeperCreateRequest.total,gauge,,,,Number of create requests (total),0,clickhouse,,, +clickhouse.events.KeeperExistsRequest.count,count,,,,Number of exists requests (count),0,clickhouse,,, +clickhouse.events.KeeperExistsRequest.total,gauge,,,,Number of exists requests (total),0,clickhouse,,, +clickhouse.events.KeeperGetRequest.count,count,,,,Number of get requests (count),0,clickhouse,,, +clickhouse.events.KeeperGetRequest.total,gauge,,,,Number of get requests (total),0,clickhouse,,, +clickhouse.events.KeeperLatency,gauge,,millisecond,,Keeper latency,0,clickhouse,,, +clickhouse.events.KeeperListRequest.count,count,,,,Number of list requests (count),0,clickhouse,,, +clickhouse.events.KeeperListRequest.total,gauge,,,,Number of list requests (total),0,clickhouse,,, +clickhouse.events.KeeperLogsEntryReadFromCommitCache.count,count,,,,Number of log entries in Keeper being read from commit logs cache (count),0,clickhouse,,, +clickhouse.events.KeeperLogsEntryReadFromCommitCache.total,gauge,,,,Number of log entries in Keeper being read from commit logs cache (total),0,clickhouse,,, +clickhouse.events.KeeperLogsEntryReadFromFile.count,count,,,,Number of log entries in Keeper being read directly from the changelog file (count),0,clickhouse,,, +clickhouse.events.KeeperLogsEntryReadFromFile.total,gauge,,,,Number of log entries in Keeper being read directly from the changelog file (total),0,clickhouse,,, +clickhouse.events.KeeperLogsEntryReadFromLatestCache.count,count,,,,Number of log entries in Keeper being read from latest logs cache (count),0,clickhouse,,, +clickhouse.events.KeeperLogsEntryReadFromLatestCache.total,gauge,,,,Number of log entries in Keeper being read from latest logs cache (total),0,clickhouse,,, +clickhouse.events.KeeperLogsPrefetchedEntries.count,count,,,,Number of log entries in Keeper being prefetched from the changelog file (count),0,clickhouse,,, +clickhouse.events.KeeperLogsPrefetchedEntries.total,gauge,,,,Number of log entries in Keeper being prefetched from the changelog file (total),0,clickhouse,,, +clickhouse.events.KeeperMultiReadRequest.count,count,,,,Number of multi read requests (count),0,clickhouse,,, +clickhouse.events.KeeperMultiReadRequest.total,gauge,,,,Number of multi read requests (total),0,clickhouse,,, +clickhouse.events.KeeperMultiRequest.count,count,,,,Number of multi requests (count),0,clickhouse,,, +clickhouse.events.KeeperMultiRequest.total,gauge,,,,Number of multi requests (total),0,clickhouse,,, +clickhouse.events.KeeperPacketsReceived.count,count,,,,Packets received by keeper server (count),0,clickhouse,,, +clickhouse.events.KeeperPacketsReceived.total,gauge,,,,Packets received by keeper server (total),0,clickhouse,,, +clickhouse.events.KeeperPacketsSent.count,count,,,,Packets sent by keeper server (count),0,clickhouse,,, +clickhouse.events.KeeperPacketsSent.total,gauge,,,,Packets sent by keeper server (total),0,clickhouse,,, +clickhouse.events.KeeperPreprocessElapsedMicroseconds,gauge,,microsecond,,Keeper preprocessing latency for a single reuquest,0,clickhouse,,, +clickhouse.events.KeeperProcessElapsedMicroseconds,gauge,,microsecond,,Keeper commit latency for a single request,0,clickhouse,,, +clickhouse.events.KeeperReadSnapshot.count,count,,,,Number of snapshot read(serialization) (count),0,clickhouse,,, +clickhouse.events.KeeperReadSnapshot.total,gauge,,,,Number of snapshot read(serialization) (total),0,clickhouse,,, +clickhouse.events.KeeperReconfigRequest.count,count,,,,Number of reconfig requests (count),0,clickhouse,,, +clickhouse.events.KeeperReconfigRequest.total,gauge,,,,Number of reconfig requests (total),0,clickhouse,,, +clickhouse.events.KeeperRemoveRequest.count,count,,,,Number of remove requests (count),0,clickhouse,,, +clickhouse.events.KeeperRemoveRequest.total,gauge,,,,Number of remove requests (total),0,clickhouse,,, +clickhouse.events.KeeperRequestRejectedDueToSoftMemoryLimitCount.count,count,,,,Number requests that have been rejected due to soft memory limit exceeded (count),0,clickhouse,,, +clickhouse.events.KeeperRequestRejectedDueToSoftMemoryLimitCount.total,gauge,,,,Number requests that have been rejected due to soft memory limit exceeded (total),0,clickhouse,,, +clickhouse.events.KeeperRequestTotal.count,count,,,,Total requests number on keeper server (count),0,clickhouse,,, +clickhouse.events.KeeperRequestTotal.total,gauge,,,,Total requests number on keeper server (total),0,clickhouse,,, +clickhouse.events.KeeperSaveSnapshot.count,count,,,,Number of snapshot save (count),0,clickhouse,,, +clickhouse.events.KeeperSaveSnapshot.total,gauge,,,,Number of snapshot save (total),0,clickhouse,,, +clickhouse.events.KeeperSetRequest.count,count,,,,Number of set requests (count),0,clickhouse,,, +clickhouse.events.KeeperSetRequest.total,gauge,,,,Number of set requests (total),0,clickhouse,,, +clickhouse.events.KeeperSnapshotApplys.count,count,,,,Number of snapshot applying (count),0,clickhouse,,, +clickhouse.events.KeeperSnapshotApplys.total,gauge,,,,Number of snapshot applying (total),0,clickhouse,,, +clickhouse.events.KeeperSnapshotApplysFailed.count,count,,,,Number of failed snapshot applying (count),0,clickhouse,,, +clickhouse.events.KeeperSnapshotApplysFailed.total,gauge,,,,Number of failed snapshot applying (total),0,clickhouse,,, +clickhouse.events.KeeperSnapshotCreations.count,count,,,,Number of snapshots creations (count),0,clickhouse,,, +clickhouse.events.KeeperSnapshotCreations.total,gauge,,,,Number of snapshots creations (total),0,clickhouse,,, +clickhouse.events.KeeperSnapshotCreationsFailed.count,count,,,,Number of failed snapshot creations (count),0,clickhouse,,, +clickhouse.events.KeeperSnapshotCreationsFailed.total,gauge,,,,Number of failed snapshot creations (total),0,clickhouse,,, +clickhouse.events.KeeperStorageLockWaitMicroseconds,gauge,,microsecond,,Time spent waiting for acquiring Keeper storage lock,0,clickhouse,,, +clickhouse.events.KeeperTotalElapsedMicroseconds,gauge,,microsecond,,Keeper total latency for a single request,0,clickhouse,,, +clickhouse.events.LoadedDataParts.count,count,,,,Number of data parts loaded by MergeTree tables during initialization. (count),0,clickhouse,,, +clickhouse.events.LoadedDataParts.total,gauge,,,,Number of data parts loaded by MergeTree tables during initialization. (total),0,clickhouse,,, +clickhouse.events.LoadedDataPartsMicroseconds,gauge,,microsecond,,Microseconds spent by MergeTree tables for loading data parts during initialization.,0,clickhouse,,, +clickhouse.events.LoadedMarksCount.count,count,,,,Number of marks loaded (total across columns). (count),0,clickhouse,,, +clickhouse.events.LoadedMarksCount.total,gauge,,,,Number of marks loaded (total across columns). (total),0,clickhouse,,, +clickhouse.events.LoadedMarksFiles.count,count,,,,Number of mark files loaded. (count),0,clickhouse,,, +clickhouse.events.LoadedMarksFiles.total,gauge,,,,Number of mark files loaded. (total),0,clickhouse,,, +clickhouse.events.LoadedMarksMemoryBytes.count,count,,,,Size of in-memory representations of loaded marks. (count),0,clickhouse,,, +clickhouse.events.LoadedMarksMemoryBytes.total,gauge,,,,Size of in-memory representations of loaded marks. (total),0,clickhouse,,, +clickhouse.events.LoadedPrimaryIndexBytes.count,count,,,,Number of rows of primary key loaded. (count),0,clickhouse,,, +clickhouse.events.LoadedPrimaryIndexBytes.total,gauge,,,,Number of rows of primary key loaded. (total),0,clickhouse,,, +clickhouse.events.LoadedPrimaryIndexFiles.count,count,,,,Number of primary index files loaded. (count),0,clickhouse,,, +clickhouse.events.LoadedPrimaryIndexFiles.total,gauge,,,,Number of primary index files loaded. (total),0,clickhouse,,, +clickhouse.events.LoadedPrimaryIndexRows.count,count,,,,Number of rows of primary key loaded. (count),0,clickhouse,,, +clickhouse.events.LoadedPrimaryIndexRows.total,gauge,,,,Number of rows of primary key loaded. (total),0,clickhouse,,, +clickhouse.events.LoadingMarksTasksCanceled.count,count,,,,Number of times background tasks for loading marks were canceled (count),0,clickhouse,,, +clickhouse.events.LoadingMarksTasksCanceled.total,gauge,,,,Number of times background tasks for loading marks were canceled (total),0,clickhouse,,, +clickhouse.events.LocalReadThrottlerBytes.count,count,,,,Bytes passed through 'max_local_read_bandwidth_for_server'/'max_local_read_bandwidth' throttler. (count),0,clickhouse,,, +clickhouse.events.LocalReadThrottlerBytes.total,gauge,,,,Bytes passed through 'max_local_read_bandwidth_for_server'/'max_local_read_bandwidth' throttler. (total),0,clickhouse,,, +clickhouse.events.LocalReadThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_local_read_bandwidth_for_server'/'max_local_read_bandwidth' throttling.,0,clickhouse,,, +clickhouse.events.LocalThreadPoolBusyMicroseconds,gauge,,microsecond,,Total time threads have spent executing the actual work.,0,clickhouse,,, +clickhouse.events.LocalThreadPoolExpansions.count,count,,,,Counts the total number of times threads have been borrowed from the global thread pool to expand local thread pools. (count),0,clickhouse,,, +clickhouse.events.LocalThreadPoolExpansions.total,gauge,,,,Counts the total number of times threads have been borrowed from the global thread pool to expand local thread pools. (total),0,clickhouse,,, +clickhouse.events.LocalThreadPoolJobWaitTimeMicroseconds,gauge,,microsecond,,"Measures the elapsed time from when a job is scheduled in the thread pool to when it is picked up for execution by a worker thread. This metric helps identify delays in job processing, indicating the responsiveness of the thread pool to new tasks.",0,clickhouse,,, +clickhouse.events.LocalThreadPoolJobs,gauge,,microsecond,,Counts the number of jobs that have been pushed to the local thread pools.,0,clickhouse,,, +clickhouse.events.LocalThreadPoolLockWaitMicroseconds,gauge,,microsecond,,Total time threads have spent waiting for locks in the local thread pools.,0,clickhouse,,, +clickhouse.events.LocalThreadPoolShrinks.count,count,,,,Counts the total number of times threads have been returned to the global thread pool from local thread pools. (count),0,clickhouse,,, +clickhouse.events.LocalThreadPoolShrinks.total,gauge,,,,Counts the total number of times threads have been returned to the global thread pool from local thread pools. (total),0,clickhouse,,, +clickhouse.events.LocalThreadPoolThreadCreationMicroseconds,gauge,,microsecond,,Total time local thread pools have spent waiting to borrow a thread from the global pool.,0,clickhouse,,, +clickhouse.events.LocalWriteThrottlerBytes.count,count,,,,Bytes passed through 'max_local_write_bandwidth_for_server'/'max_local_write_bandwidth' throttler. (count),0,clickhouse,,, +clickhouse.events.LocalWriteThrottlerBytes.total,gauge,,,,Bytes passed through 'max_local_write_bandwidth_for_server'/'max_local_write_bandwidth' throttler. (total),0,clickhouse,,, +clickhouse.events.LocalWriteThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_local_write_bandwidth_for_server'/'max_local_write_bandwidth' throttling.,0,clickhouse,,, +clickhouse.events.LogDebug.count,count,,,,Number of log messages with level Debug (count),0,clickhouse,,, +clickhouse.events.LogDebug.total,gauge,,,,Number of log messages with level Debug (total),0,clickhouse,,, +clickhouse.events.LogError.count,count,,,,Number of log messages with level Error (count),0,clickhouse,,, +clickhouse.events.LogError.total,gauge,,,,Number of log messages with level Error (total),0,clickhouse,,, +clickhouse.events.LogFatal.count,count,,,,Number of log messages with level Fatal (count),0,clickhouse,,, +clickhouse.events.LogFatal.total,gauge,,,,Number of log messages with level Fatal (total),0,clickhouse,,, +clickhouse.events.LogInfo.count,count,,,,Number of log messages with level Info (count),0,clickhouse,,, +clickhouse.events.LogInfo.total,gauge,,,,Number of log messages with level Info (total),0,clickhouse,,, +clickhouse.events.LogTest.count,count,,,,Number of log messages with level Test (count),0,clickhouse,,, +clickhouse.events.LogTest.total,gauge,,,,Number of log messages with level Test (total),0,clickhouse,,, +clickhouse.events.LogTrace.count,count,,,,Number of log messages with level Trace (count),0,clickhouse,,, +clickhouse.events.LogTrace.total,gauge,,,,Number of log messages with level Trace (total),0,clickhouse,,, +clickhouse.events.LogWarning.count,count,,,,Number of log messages with level Warning (count),0,clickhouse,,, +clickhouse.events.LogWarning.total,gauge,,,,Number of log messages with level Warning (total),0,clickhouse,,, +clickhouse.events.LoggerElapsedNanoseconds,gauge,,nanosecond,,Cumulative time spend in logging,0,clickhouse,,, +clickhouse.events.MMappedFileCacheHits.count,count,,,,"Number of times a file has been found in the MMap cache (for the 'mmap' read_method), so we didn't have to mmap it again. (count)",0,clickhouse,,, +clickhouse.events.MMappedFileCacheHits.total,gauge,,,,"Number of times a file has been found in the MMap cache (for the 'mmap' read_method), so we didn't have to mmap it again. (total)",0,clickhouse,,, +clickhouse.events.MMappedFileCacheMisses.count,count,,,,"Number of times a file has not been found in the MMap cache (for the 'mmap' read_method), so we had to mmap it again. (count)",0,clickhouse,,, +clickhouse.events.MMappedFileCacheMisses.total,gauge,,,,"Number of times a file has not been found in the MMap cache (for the 'mmap' read_method), so we had to mmap it again. (total)",0,clickhouse,,, +clickhouse.events.MainConfigLoads.count,count,,,,Number of times the main configuration was reloaded. (count),0,clickhouse,,, +clickhouse.events.MainConfigLoads.total,gauge,,,,Number of times the main configuration was reloaded. (total),0,clickhouse,,, +clickhouse.events.MarkCacheEvictedBytes.count,count,,,,Number of bytes evicted from the mark cache. (count),0,clickhouse,,, +clickhouse.events.MarkCacheEvictedBytes.total,gauge,,,,Number of bytes evicted from the mark cache. (total),0,clickhouse,,, +clickhouse.events.MarkCacheEvictedFiles.count,count,,,,Number of mark files evicted from the mark cache. (count),0,clickhouse,,, +clickhouse.events.MarkCacheEvictedFiles.total,gauge,,,,Number of mark files evicted from the mark cache. (total),0,clickhouse,,, +clickhouse.events.MarkCacheEvictedMarks.count,count,,,,Number of marks evicted from the mark cache. (count),0,clickhouse,,, +clickhouse.events.MarkCacheEvictedMarks.total,gauge,,,,Number of marks evicted from the mark cache. (total),0,clickhouse,,, +clickhouse.events.MarkCacheHits.count,count,,,,"Number of times an entry has been found in the mark cache, so we didn't have to load a mark file. (count)",0,clickhouse,,, +clickhouse.events.MarkCacheHits.total,gauge,,,,"Number of times an entry has been found in the mark cache, so we didn't have to load a mark file. (total)",0,clickhouse,,, +clickhouse.events.MarkCacheMisses.count,count,,,,"Number of times an entry has not been found in the mark cache, so we had to load a mark file in memory, which is a costly operation, adding to query latency. (count)",0,clickhouse,,, +clickhouse.events.MarkCacheMisses.total,gauge,,,,"Number of times an entry has not been found in the mark cache, so we had to load a mark file in memory, which is a costly operation, adding to query latency. (total)",0,clickhouse,,, +clickhouse.events.MemoryAllocatorPurge.count,count,,,,Total number of times memory allocator purge was requested (count),0,clickhouse,,, +clickhouse.events.MemoryAllocatorPurge.total,gauge,,,,Total number of times memory allocator purge was requested (total),0,clickhouse,,, +clickhouse.events.MemoryAllocatorPurgeTimeMicroseconds,gauge,,microsecond,,Total time spent for memory allocator purge,0,clickhouse,,, +clickhouse.events.MemoryOvercommitWaitTimeMicroseconds,gauge,,microsecond,,Total time spent in waiting for memory to be freed in OvercommitTracker.,0,clickhouse,,, +clickhouse.events.MemoryWorkerRun.count,count,,,,Number of runs done by MemoryWorker in background (count),0,clickhouse,,, +clickhouse.events.MemoryWorkerRun.total,gauge,,,,Number of runs done by MemoryWorker in background (total),0,clickhouse,,, +clickhouse.events.MemoryWorkerRunElapsedMicroseconds,gauge,,microsecond,,Total time spent by MemoryWorker for background work,0,clickhouse,,, +clickhouse.events.Merge.count,count,,,,Number of launched background merges. (count),0,clickhouse,,, +clickhouse.events.Merge.total,gauge,,,,Number of launched background merges. (total),0,clickhouse,,, +clickhouse.events.MergeExecuteMilliseconds,gauge,,millisecond,,Total busy time spent for execution of background merges,0,clickhouse,,, +clickhouse.events.MergeHorizontalStageExecuteMilliseconds,gauge,,millisecond,,Total busy time spent for execution of horizontal stage of background merges,0,clickhouse,,, +clickhouse.events.MergeHorizontalStageTotalMilliseconds,gauge,,millisecond,,Total time spent for horizontal stage of background merges,0,clickhouse,,, +clickhouse.events.MergeMutateBackgroundExecutorTaskCancelMicroseconds,gauge,,microsecond,,Time spent in cancel() for MergeMutate executor tasks.,0,clickhouse,,, +clickhouse.events.MergeMutateBackgroundExecutorTaskExecuteStepMicroseconds,gauge,,microsecond,,Time spent in executeStep() for MergeMutate executor tasks.,0,clickhouse,,, +clickhouse.events.MergeMutateBackgroundExecutorTaskResetMicroseconds,gauge,,microsecond,,Time spent resetting task for MergeMutate executor.,0,clickhouse,,, +clickhouse.events.MergeMutateBackgroundExecutorWaitMicroseconds,gauge,,microsecond,,Time spent waiting for completion in MergeMutate executor.,0,clickhouse,,, +clickhouse.events.MergePrewarmStageExecuteMilliseconds,gauge,,millisecond,,Total busy time spent for execution of prewarm stage of background merges,0,clickhouse,,, +clickhouse.events.MergePrewarmStageTotalMilliseconds,gauge,,millisecond,,Total time spent for prewarm stage of background merges,0,clickhouse,,, +clickhouse.events.MergeProjectionStageExecuteMilliseconds,gauge,,millisecond,,Total busy time spent for execution of projection stage of background merges,0,clickhouse,,, +clickhouse.events.MergeProjectionStageTotalMilliseconds,gauge,,millisecond,,Total time spent for projection stage of background merges,0,clickhouse,,, +clickhouse.events.MergeSourceParts.count,count,,,,Number of source parts scheduled for merges. (count),0,clickhouse,,, +clickhouse.events.MergeSourceParts.total,gauge,,,,Number of source parts scheduled for merges. (total),0,clickhouse,,, +clickhouse.events.MergeTotalMilliseconds,gauge,,millisecond,,Total time spent for background merges,0,clickhouse,,, +clickhouse.events.MergeTreeAllRangesAnnouncementsSent.count,count,,,,The number of announcements sent from the remote server to the initiator server about the set of data parts (for MergeTree tables). Measured on the remote server side. (count),0,clickhouse,,, +clickhouse.events.MergeTreeAllRangesAnnouncementsSent.total,gauge,,,,The number of announcements sent from the remote server to the initiator server about the set of data parts (for MergeTree tables). Measured on the remote server side. (total),0,clickhouse,,, +clickhouse.events.MergeTreeAllRangesAnnouncementsSentElapsedMicroseconds,gauge,,microsecond,,Time spent in sending the announcement from the remote server to the initiator server about the set of data parts (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterBlocks.count,count,,,,Number of blocks INSERTed to MergeTree tables projection. Each block forms a data part of level zero. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterBlocks.total,gauge,,,,Number of blocks INSERTed to MergeTree tables projection. Each block forms a data part of level zero. (total),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterBlocksAlreadySorted.count,count,,,,Number of blocks INSERTed to MergeTree tables projection that appeared to be already sorted. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterBlocksAlreadySorted.total,gauge,,,,Number of blocks INSERTed to MergeTree tables projection that appeared to be already sorted. (total),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterCompressedBytes.count,count,,,,Bytes written to filesystem for data INSERTed to MergeTree tables projection. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterCompressedBytes.total,gauge,,,,Bytes written to filesystem for data INSERTed to MergeTree tables projection. (total),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterMergingBlocksMicroseconds,gauge,,microsecond,,Time spent merging blocks,0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterRows.count,count,,,,Number of rows INSERTed to MergeTree tables projection. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterRows.total,gauge,,,,Number of rows INSERTed to MergeTree tables projection. (total),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterSortingBlocksMicroseconds,gauge,,microsecond,,Time spent sorting blocks (for projection it might be a key different from table's sorting key),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterUncompressedBytes.count,count,,,,Uncompressed bytes (for columns as they stored in memory) INSERTed to MergeTree tables projection. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataProjectionWriterUncompressedBytes.total,gauge,,,,Uncompressed bytes (for columns as they stored in memory) INSERTed to MergeTree tables projection. (total),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterBlocks.count,count,,,,Number of blocks INSERTed to MergeTree tables. Each block forms a data part of level zero. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterBlocks.total,gauge,,,,Number of blocks INSERTed to MergeTree tables. Each block forms a data part of level zero. (total),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterBlocksAlreadySorted.count,count,,,,Number of blocks INSERTed to MergeTree tables that appeared to be already sorted. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterBlocksAlreadySorted.total,gauge,,,,Number of blocks INSERTed to MergeTree tables that appeared to be already sorted. (total),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterCompressedBytes.count,count,,,,Bytes written to filesystem for data INSERTed to MergeTree tables. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterCompressedBytes.total,gauge,,,,Bytes written to filesystem for data INSERTed to MergeTree tables. (total),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterMergingBlocksMicroseconds,gauge,,microsecond,,Time spent merging input blocks (for special MergeTree engines),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterProjectionsCalculationMicroseconds,gauge,,microsecond,,Time spent calculating projections,0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterRows.count,count,,,,Number of rows INSERTed to MergeTree tables. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterRows.total,gauge,,,,Number of rows INSERTed to MergeTree tables. (total),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterSkipIndicesCalculationMicroseconds,gauge,,microsecond,,Time spent calculating skip indices,0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterSortingBlocksMicroseconds,gauge,,microsecond,,Time spent sorting blocks,0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterStatisticsCalculationMicroseconds,gauge,,microsecond,,Time spent calculating statistics,0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterUncompressedBytes.count,count,,,,Uncompressed bytes (for columns as they stored in memory) INSERTed to MergeTree tables. (count),0,clickhouse,,, +clickhouse.events.MergeTreeDataWriterUncompressedBytes.total,gauge,,,,Uncompressed bytes (for columns as they stored in memory) INSERTed to MergeTree tables. (total),0,clickhouse,,, +clickhouse.events.MergeTreePrefetchedReadPoolInit,gauge,,microsecond,,Time spent preparing tasks in MergeTreePrefetchedReadPool,0,clickhouse,,, +clickhouse.events.MergeTreeReadTaskRequestsReceived.count,count,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for MergeTree tables). Measured on the initiator server side. (count),0,clickhouse,,, +clickhouse.events.MergeTreeReadTaskRequestsReceived.total,gauge,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for MergeTree tables). Measured on the initiator server side. (total),0,clickhouse,,, +clickhouse.events.MergeTreeReadTaskRequestsSent.count,count,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for MergeTree tables). Measured on the remote server side. (count),0,clickhouse,,, +clickhouse.events.MergeTreeReadTaskRequestsSent.total,gauge,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for MergeTree tables). Measured on the remote server side. (total),0,clickhouse,,, +clickhouse.events.MergeTreeReadTaskRequestsSentElapsedMicroseconds,gauge,,microsecond,,Time spent in callbacks requested from the remote server back to the initiator server to choose the read task (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, +clickhouse.events.MergeVerticalStageExecuteMilliseconds,gauge,,millisecond,,Total busy time spent for execution of vertical stage of background merges,0,clickhouse,,, +clickhouse.events.MergeVerticalStageTotalMilliseconds,gauge,,millisecond,,Total time spent for vertical stage of background merges,0,clickhouse,,, +clickhouse.events.MergedColumns.count,count,,,,Number of columns merged during the horizontal stage of merges. (count),0,clickhouse,,, +clickhouse.events.MergedColumns.total,gauge,,,,Number of columns merged during the horizontal stage of merges. (total),0,clickhouse,,, +clickhouse.events.MergedIntoCompactParts.count,count,,,,Number of parts merged into Compact format. (count),0,clickhouse,,, +clickhouse.events.MergedIntoCompactParts.total,gauge,,,,Number of parts merged into Compact format. (total),0,clickhouse,,, +clickhouse.events.MergedIntoWideParts.count,count,,,,Number of parts merged into Wide format. (count),0,clickhouse,,, +clickhouse.events.MergedIntoWideParts.total,gauge,,,,Number of parts merged into Wide format. (total),0,clickhouse,,, +clickhouse.events.MergedRows.count,count,,,,Rows read for background merges. This is the number of rows before merge. (count),0,clickhouse,,, +clickhouse.events.MergedRows.total,gauge,,,,Rows read for background merges. This is the number of rows before merge. (total),0,clickhouse,,, +clickhouse.events.MergedUncompressedBytes.count,count,,,,Uncompressed bytes (for columns as they stored in memory) that was read for background merges. This is the number before merge. (count),0,clickhouse,,, +clickhouse.events.MergedUncompressedBytes.total,gauge,,,,Uncompressed bytes (for columns as they stored in memory) that was read for background merges. This is the number before merge. (total),0,clickhouse,,, +clickhouse.events.MergerMutatorPartsInRangesForMergeCount.count,count,,,,Amount of candidate parts for merge (count),0,clickhouse,,, +clickhouse.events.MergerMutatorPartsInRangesForMergeCount.total,gauge,,,,Amount of candidate parts for merge (total),0,clickhouse,,, +clickhouse.events.MergerMutatorPrepareRangesForMergeElapsedMicroseconds,gauge,,microsecond,,Time spent to prepare parts ranges which can be merged according to merge predicate.,0,clickhouse,,, +clickhouse.events.MergerMutatorRangesForMergeCount.count,count,,,,Amount of candidate ranges for merge (count),0,clickhouse,,, +clickhouse.events.MergerMutatorRangesForMergeCount.total,gauge,,,,Amount of candidate ranges for merge (total),0,clickhouse,,, +clickhouse.events.MergerMutatorSelectPartsForMergeElapsedMicroseconds,gauge,,microsecond,,Time spent to select parts from ranges which can be merged.,0,clickhouse,,, +clickhouse.events.MergerMutatorSelectRangePartsCount.count,count,,,,Amount of parts in selected range for merge (count),0,clickhouse,,, +clickhouse.events.MergerMutatorSelectRangePartsCount.total,gauge,,,,Amount of parts in selected range for merge (total),0,clickhouse,,, +clickhouse.events.MergerMutatorsGetPartsForMergeElapsedMicroseconds,gauge,,microsecond,,Time spent to take data parts snapshot to build ranges from them.,0,clickhouse,,, +clickhouse.events.MergesThrottlerBytes.count,count,,,,Bytes passed through 'max_merges_bandwidth_for_server' throttler. (count),0,clickhouse,,, +clickhouse.events.MergesThrottlerBytes.total,gauge,,,,Bytes passed through 'max_merges_bandwidth_for_server' throttler. (total),0,clickhouse,,, +clickhouse.events.MergesThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_merges_bandwidth_for_server' throttling.,0,clickhouse,,, +clickhouse.events.MergingSortedMilliseconds,gauge,,millisecond,,Total time spent while merging sorted columns,0,clickhouse,,, +clickhouse.events.MetadataFromKeeperBackgroundCleanupErrors.count,count,,,,Number of times an error was encountered in background cleanup task (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperBackgroundCleanupErrors.total,gauge,,,,Number of times an error was encountered in background cleanup task (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperBackgroundCleanupObjects.count,count,,,,Number of times a old deleted object clean up was performed by background task (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperBackgroundCleanupObjects.total,gauge,,,,Number of times a old deleted object clean up was performed by background task (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperBackgroundCleanupTransactions.count,count,,,,Number of times old transaction idempotency token was cleaned up by background task (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperBackgroundCleanupTransactions.total,gauge,,,,Number of times old transaction idempotency token was cleaned up by background task (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperCacheHit.count,count,,,,Number of times an object storage metadata request was answered from cache without making request to Keeper (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperCacheHit.total,gauge,,,,Number of times an object storage metadata request was answered from cache without making request to Keeper (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperCacheMiss.count,count,,,,Number of times an object storage metadata request had to be answered from Keeper (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperCacheMiss.total,gauge,,,,Number of times an object storage metadata request had to be answered from Keeper (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperCacheUpdateMicroseconds,gauge,,microsecond,,Total time spent in updating the cache including waiting for responses from Keeper,0,clickhouse,,, +clickhouse.events.MetadataFromKeeperCleanupTransactionCommit.count,count,,,,Number of times metadata transaction commit for deleted objects cleanup was attempted (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperCleanupTransactionCommit.total,gauge,,,,Number of times metadata transaction commit for deleted objects cleanup was attempted (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperCleanupTransactionCommitRetry.count,count,,,,Number of times metadata transaction commit for deleted objects cleanup was retried (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperCleanupTransactionCommitRetry.total,gauge,,,,Number of times metadata transaction commit for deleted objects cleanup was retried (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperIndividualOperations.count,count,,,,Number of paths read or written by single or multi requests to Keeper (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperIndividualOperations.total,gauge,,,,Number of paths read or written by single or multi requests to Keeper (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperIndividualOperationsMicroseconds,gauge,,microsecond,,Time spend during single or multi requests to Keeper,0,clickhouse,,, +clickhouse.events.MetadataFromKeeperOperations.count,count,,,,Number of times a request was made to Keeper (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperOperations.total,gauge,,,,Number of times a request was made to Keeper (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperReconnects.count,count,,,,Number of times a reconnect to Keeper was done (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperReconnects.total,gauge,,,,Number of times a reconnect to Keeper was done (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperTransactionCommit.count,count,,,,Number of times metadata transaction commit was attempted (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperTransactionCommit.total,gauge,,,,Number of times metadata transaction commit was attempted (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperTransactionCommitRetry.count,count,,,,Number of times metadata transaction commit was retried (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperTransactionCommitRetry.total,gauge,,,,Number of times metadata transaction commit was retried (total),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperUpdateCacheOneLevel.count,count,,,,Number of times a cache update for one level of directory tree was done (count),0,clickhouse,,, +clickhouse.events.MetadataFromKeeperUpdateCacheOneLevel.total,gauge,,,,Number of times a cache update for one level of directory tree was done (total),0,clickhouse,,, +clickhouse.events.MoveBackgroundExecutorTaskCancelMicroseconds,gauge,,microsecond,,Time spent in cancel() for Move executor tasks.,0,clickhouse,,, +clickhouse.events.MoveBackgroundExecutorTaskExecuteStepMicroseconds,gauge,,microsecond,,Time spent in executeStep() for Move executor tasks.,0,clickhouse,,, +clickhouse.events.MoveBackgroundExecutorTaskResetMicroseconds,gauge,,microsecond,,Time spent resetting task for Move executor.,0,clickhouse,,, +clickhouse.events.MoveBackgroundExecutorWaitMicroseconds,gauge,,microsecond,,Time spent waiting for completion in Move executor.,0,clickhouse,,, +clickhouse.events.MutateTaskProjectionsCalculationMicroseconds,gauge,,microsecond,,Time spent calculating projections in mutations,0,clickhouse,,, +clickhouse.events.MutatedRows.count,count,,,,Rows read for mutations. This is the number of rows before mutation (count),0,clickhouse,,, +clickhouse.events.MutatedRows.total,gauge,,,,Rows read for mutations. This is the number of rows before mutation (total),0,clickhouse,,, +clickhouse.events.MutatedUncompressedBytes.count,count,,,,Uncompressed bytes (for columns as they stored in memory) that was read for mutations. This is the number before mutation. (count),0,clickhouse,,, +clickhouse.events.MutatedUncompressedBytes.total,gauge,,,,Uncompressed bytes (for columns as they stored in memory) that was read for mutations. This is the number before mutation. (total),0,clickhouse,,, +clickhouse.events.MutationAffectedRowsUpperBound.count,count,,,,The upper bound of number of rows that were affected by mutation (e.g. number of rows that satisfy the predicate of UPDATE or DELETE mutation). The actual number may be slightly less (count),0,clickhouse,,, +clickhouse.events.MutationAffectedRowsUpperBound.total,gauge,,,,The upper bound of number of rows that were affected by mutation (e.g. number of rows that satisfy the predicate of UPDATE or DELETE mutation). The actual number may be slightly less (total),0,clickhouse,,, +clickhouse.events.MutationAllPartColumns.count,count,,,,Number of times when task to mutate all columns in part was created (count),0,clickhouse,,, +clickhouse.events.MutationAllPartColumns.total,gauge,,,,Number of times when task to mutate all columns in part was created (total),0,clickhouse,,, +clickhouse.events.MutationCreatedEmptyParts.count,count,,,,Number of total parts which were replaced to empty parts instead of running mutation (count),0,clickhouse,,, +clickhouse.events.MutationCreatedEmptyParts.total,gauge,,,,Number of total parts which were replaced to empty parts instead of running mutation (total),0,clickhouse,,, +clickhouse.events.MutationExecuteMilliseconds,gauge,,millisecond,,Total busy time spent for execution of mutations.,0,clickhouse,,, +clickhouse.events.MutationSomePartColumns.count,count,,,,Number of times when task to mutate some columns in part was created (count),0,clickhouse,,, +clickhouse.events.MutationSomePartColumns.total,gauge,,,,Number of times when task to mutate some columns in part was created (total),0,clickhouse,,, +clickhouse.events.MutationTotalMilliseconds,gauge,,millisecond,,Total time spent for mutations.,0,clickhouse,,, +clickhouse.events.MutationTotalParts.count,count,,,,Number of total parts for which mutations tried to be applied (count),0,clickhouse,,, +clickhouse.events.MutationTotalParts.total,gauge,,,,Number of total parts for which mutations tried to be applied (total),0,clickhouse,,, +clickhouse.events.MutationUntouchedParts.count,count,,,,Number of total parts for which mutations tried to be applied but which was completely skipped according to predicate (count),0,clickhouse,,, +clickhouse.events.MutationUntouchedParts.total,gauge,,,,Number of total parts for which mutations tried to be applied but which was completely skipped according to predicate (total),0,clickhouse,,, +clickhouse.events.MutationsAppliedOnFlyInAllParts,gauge,,,,The sum of number of applied mutations on-fly for part among all read parts,0,clickhouse,,, +clickhouse.events.MutationsAppliedOnFlyInAllReadTasks.count,count,,,,Total number of applied mutations on-fly among all read tasks (count),0,clickhouse,,, +clickhouse.events.MutationsAppliedOnFlyInAllReadTasks.total,gauge,,,,Total number of applied mutations on-fly among all read tasks (total),0,clickhouse,,, +clickhouse.events.MutationsThrottlerBytes.count,count,,,,Bytes passed through 'max_mutations_bandwidth_for_server' throttler. (count),0,clickhouse,,, +clickhouse.events.MutationsThrottlerBytes.total,gauge,,,,Bytes passed through 'max_mutations_bandwidth_for_server' throttler. (total),0,clickhouse,,, +clickhouse.events.MutationsThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_mutations_bandwidth_for_server' throttling.,0,clickhouse,,, +clickhouse.events.NetworkReceiveBytes.count,count,,,,"Total number of bytes received from network. Only ClickHouse-related network interaction is included, not by 3rd party libraries. (count)",0,clickhouse,,, +clickhouse.events.NetworkReceiveBytes.total,gauge,,,,"Total number of bytes received from network. Only ClickHouse-related network interaction is included, not by 3rd party libraries. (total)",0,clickhouse,,, +clickhouse.events.NetworkReceiveElapsedMicroseconds,gauge,,microsecond,,"Total time spent waiting for data to receive or receiving data from network. Only ClickHouse-related network interaction is included, not by 3rd party libraries.",0,clickhouse,,, +clickhouse.events.NetworkSendBytes.count,count,,,,"Total number of bytes send to network. Only ClickHouse-related network interaction is included, not by 3rd party libraries. (count)",0,clickhouse,,, +clickhouse.events.NetworkSendBytes.total,gauge,,,,"Total number of bytes send to network. Only ClickHouse-related network interaction is included, not by 3rd party libraries. (total)",0,clickhouse,,, +clickhouse.events.NetworkSendElapsedMicroseconds,gauge,,microsecond,,"Total time spent waiting for data to send to network or sending data to network. Only ClickHouse-related network interaction is included, not by 3rd party libraries.",0,clickhouse,,, +clickhouse.events.NotCreatedLogEntryForMerge.count,count,,,,Log entry to merge parts in ReplicatedMergeTree is not created due to concurrent log update by another replica. (count),0,clickhouse,,, +clickhouse.events.NotCreatedLogEntryForMerge.total,gauge,,,,Log entry to merge parts in ReplicatedMergeTree is not created due to concurrent log update by another replica. (total),0,clickhouse,,, +clickhouse.events.NotCreatedLogEntryForMutation.count,count,,,,Log entry to mutate parts in ReplicatedMergeTree is not created due to concurrent log update by another replica. (count),0,clickhouse,,, +clickhouse.events.NotCreatedLogEntryForMutation.total,gauge,,,,Log entry to mutate parts in ReplicatedMergeTree is not created due to concurrent log update by another replica. (total),0,clickhouse,,, +clickhouse.events.OSCPUVirtualTimeMicroseconds,gauge,,microsecond,,CPU time spent seen by OS. Does not include involuntary waits due to virtualization.,0,clickhouse,,, +clickhouse.events.OSCPUWaitMicroseconds,gauge,,microsecond,,"Total time a thread was ready for execution but waiting to be scheduled by OS, from the OS point of view.",0,clickhouse,,, +clickhouse.events.OSIOWaitMicroseconds,gauge,,microsecond,,"Total time a thread spent waiting for a result of IO operation, from the OS point of view. This is real IO that doesn't include page cache.",0,clickhouse,,, +clickhouse.events.OSReadBytes.count,count,,,,"Number of bytes read from disks or block devices. Doesn't include bytes read from page cache. May include excessive data due to block size, readahead, etc. (count)",0,clickhouse,,, +clickhouse.events.OSReadBytes.total,gauge,,,,"Number of bytes read from disks or block devices. Doesn't include bytes read from page cache. May include excessive data due to block size, readahead, etc. (total)",0,clickhouse,,, +clickhouse.events.OSReadChars.count,count,,,,"Number of bytes read from filesystem, including page cache. (count)",0,clickhouse,,, +clickhouse.events.OSReadChars.total,gauge,,,,"Number of bytes read from filesystem, including page cache. (total)",0,clickhouse,,, +clickhouse.events.OSWriteBytes.count,count,,,,Number of bytes written to disks or block devices. Doesn't include bytes that are in page cache dirty pages. May not include data that was written by OS asynchronously. (count),0,clickhouse,,, +clickhouse.events.OSWriteBytes.total,gauge,,,,Number of bytes written to disks or block devices. Doesn't include bytes that are in page cache dirty pages. May not include data that was written by OS asynchronously. (total),0,clickhouse,,, +clickhouse.events.OSWriteChars.count,count,,,,"Number of bytes written to filesystem, including page cache. (count)",0,clickhouse,,, +clickhouse.events.OSWriteChars.total,gauge,,,,"Number of bytes written to filesystem, including page cache. (total)",0,clickhouse,,, +clickhouse.events.ObjectStorageQueueCancelledFiles.count,count,,,,Number cancelled files in StorageS3(Azure)Queue (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueCancelledFiles.total,gauge,,,,Number cancelled files in StorageS3(Azure)Queue (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueCleanupMaxSetSizeOrTTLMicroseconds,gauge,,microsecond,,Time spent to set file as failed,0,clickhouse,,, +clickhouse.events.ObjectStorageQueueCommitRequests.count,count,,,,Number of keeper requests to commit files as either failed or processed (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueCommitRequests.total,gauge,,,,Number of keeper requests to commit files as either failed or processed (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueExceptionsDuringInsert.count,count,,,,Number of exceptions during insert in S3(Azure)Queue (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueExceptionsDuringInsert.total,gauge,,,,Number of exceptions during insert in S3(Azure)Queue (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueExceptionsDuringRead.count,count,,,,Number of exceptions during read in S3(Azure)Queue (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueExceptionsDuringRead.total,gauge,,,,Number of exceptions during read in S3(Azure)Queue (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueFailedFiles.count,count,,,,Number of files which failed to be processed (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueFailedFiles.total,gauge,,,,Number of files which failed to be processed (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueFailedToBatchSetProcessing.count,count,,,,Number of times batched set processing request failed (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueFailedToBatchSetProcessing.total,gauge,,,,Number of times batched set processing request failed (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueFilteredFiles.count,count,,,,Number of filtered files in StorageS3(Azure)Queue (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueFilteredFiles.total,gauge,,,,Number of filtered files in StorageS3(Azure)Queue (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueInsertIterations.count,count,,,,Number of insert iterations (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueInsertIterations.total,gauge,,,,Number of insert iterations (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueListedFiles.count,count,,,,Number of listed files in StorageS3(Azure)Queue (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueListedFiles.total,gauge,,,,Number of listed files in StorageS3(Azure)Queue (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueLockLocalFileStatusesMicroseconds,gauge,,microsecond,,Time spent to lock local file statuses,0,clickhouse,,, +clickhouse.events.ObjectStorageQueueProcessedFiles.count,count,,,,Number of files which were processed (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueProcessedFiles.total,gauge,,,,Number of files which were processed (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueProcessedRows.count,count,,,,Number of processed rows in StorageS3(Azure)Queue (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueProcessedRows.total,gauge,,,,Number of processed rows in StorageS3(Azure)Queue (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueuePullMicroseconds,gauge,,microsecond,,Time spent to read file data,0,clickhouse,,, +clickhouse.events.ObjectStorageQueueReadBytes.count,count,,,,Number of read bytes (not equal to the number of actually inserted bytes) (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueReadBytes.total,gauge,,,,Number of read bytes (not equal to the number of actually inserted bytes) (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueReadFiles.count,count,,,,Number of read files (not equal to the number of actually inserted files) (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueReadFiles.total,gauge,,,,Number of read files (not equal to the number of actually inserted files) (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueReadRows.count,count,,,,Number of read rows (not equal to the number of actually inserted rows) (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueReadRows.total,gauge,,,,Number of read rows (not equal to the number of actually inserted rows) (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueRemovedObjects.count,count,,,,Number of objects removed as part of after_processing = delete (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueRemovedObjects.total,gauge,,,,Number of objects removed as part of after_processing = delete (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueSuccessfulCommits.count,count,,,,Number of successful keeper commits (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueSuccessfulCommits.total,gauge,,,,Number of successful keeper commits (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueTrySetProcessingFailed.count,count,,,,The number of times we unsuccessfully set file as processing (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueTrySetProcessingFailed.total,gauge,,,,The number of times we unsuccessfully set file as processing (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueTrySetProcessingRequests.count,count,,,,The number of times we tried to make set processing request (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueTrySetProcessingRequests.total,gauge,,,,The number of times we tried to make set processing request (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueTrySetProcessingSucceeded.count,count,,,,The number of times we successfully set file as processing (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueTrySetProcessingSucceeded.total,gauge,,,,The number of times we successfully set file as processing (total),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueUnsuccessfulCommits.count,count,,,,Number of unsuccessful keeper commits (count),0,clickhouse,,, +clickhouse.events.ObjectStorageQueueUnsuccessfulCommits.total,gauge,,,,Number of unsuccessful keeper commits (total),0,clickhouse,,, +clickhouse.events.ObsoleteReplicatedParts.count,count,,,,"Number of times a data part was covered by another data part that has been fetched from a replica (so, we have marked a covered data part as obsolete and no longer needed). (count)",0,clickhouse,,, +clickhouse.events.ObsoleteReplicatedParts.total,gauge,,,,"Number of times a data part was covered by another data part that has been fetched from a replica (so, we have marked a covered data part as obsolete and no longer needed). (total)",0,clickhouse,,, +clickhouse.events.OpenedFileCacheHits.count,count,,,,"Number of times a file has been found in the opened file cache, so we didn't have to open it again. (count)",0,clickhouse,,, +clickhouse.events.OpenedFileCacheHits.total,gauge,,,,"Number of times a file has been found in the opened file cache, so we didn't have to open it again. (total)",0,clickhouse,,, +clickhouse.events.OpenedFileCacheMicroseconds,gauge,,microsecond,,Amount of time spent executing OpenedFileCache methods.,0,clickhouse,,, +clickhouse.events.OpenedFileCacheMisses.count,count,,,,"Number of times a file has been found in the opened file cache, so we had to open it again. (count)",0,clickhouse,,, +clickhouse.events.OpenedFileCacheMisses.total,gauge,,,,"Number of times a file has been found in the opened file cache, so we had to open it again. (total)",0,clickhouse,,, +clickhouse.events.OtherQueryTimeMicroseconds,gauge,,microsecond,,Total time of queries that are not SELECT or INSERT.,0,clickhouse,,, +clickhouse.events.OverflowAny.count,count,,,,Number of times approximate GROUP BY was in effect: when aggregation was performed only on top of first 'max_rows_to_group_by' unique keys and other keys were ignored due to 'group_by_overflow_mode' = 'any'. (count),0,clickhouse,,, +clickhouse.events.OverflowAny.total,gauge,,,,Number of times approximate GROUP BY was in effect: when aggregation was performed only on top of first 'max_rows_to_group_by' unique keys and other keys were ignored due to 'group_by_overflow_mode' = 'any'. (total),0,clickhouse,,, +clickhouse.events.OverflowBreak.count,count,,,,"Number of times, data processing was cancelled by query complexity limitation with setting '*_overflow_mode' = 'break' and the result is incomplete. (count)",0,clickhouse,,, +clickhouse.events.OverflowBreak.total,gauge,,,,"Number of times, data processing was cancelled by query complexity limitation with setting '*_overflow_mode' = 'break' and the result is incomplete. (total)",0,clickhouse,,, +clickhouse.events.OverflowThrow.count,count,,,,"Number of times, data processing was cancelled by query complexity limitation with setting '*_overflow_mode' = 'throw' and exception was thrown. (count)",0,clickhouse,,, +clickhouse.events.OverflowThrow.total,gauge,,,,"Number of times, data processing was cancelled by query complexity limitation with setting '*_overflow_mode' = 'throw' and exception was thrown. (total)",0,clickhouse,,, +clickhouse.events.PageCacheBytesUnpinnedRoundedToHugePages,gauge,,,,"See PageCacheBytesUnpinnedRoundedToPages, but rounded to huge pages. Use the ratio between the two as a measure of memory waste from using huge pages.",0,clickhouse,,, +clickhouse.events.PageCacheBytesUnpinnedRoundedToPages,gauge,,,,Total size of populated pages in chunks that became evictable in PageCache. Rounded up to whole pages.,0,clickhouse,,, +clickhouse.events.PageCacheChunkDataHits,gauge,,,,"Number of times a chunk has been found in the userspace page cache, not in use, with all pages intact.",0,clickhouse,,, +clickhouse.events.PageCacheChunkDataMisses,gauge,,,,"Number of times a chunk has been found in the userspace page cache, not in use, but all its pages were evicted by the OS.",0,clickhouse,,, +clickhouse.events.PageCacheChunkDataPartialHits,gauge,,,,"Number of times a chunk has been found in the userspace page cache, not in use, but some of its pages were evicted by the OS.",0,clickhouse,,, +clickhouse.events.PageCacheChunkMisses,gauge,,,,Number of times a chunk has not been found in the userspace page cache.,0,clickhouse,,, +clickhouse.events.PageCacheChunkShared,gauge,,,,"Number of times a chunk has been found in the userspace page cache, already in use by another thread.",0,clickhouse,,, +clickhouse.events.PageCacheHits.count,count,,,,Number of times a block of data has been found in the userspace page cache. (count),0,clickhouse,,, +clickhouse.events.PageCacheHits.total,gauge,,,,Number of times a block of data has been found in the userspace page cache. (total),0,clickhouse,,, +clickhouse.events.PageCacheMisses.count,count,,,,Number of times a block of data has not been found in the userspace page cache. (count),0,clickhouse,,, +clickhouse.events.PageCacheMisses.total,gauge,,,,Number of times a block of data has not been found in the userspace page cache. (total),0,clickhouse,,, +clickhouse.events.PageCacheOvercommitResize.count,count,,,,Number of times the userspace page cache was auto-resized to free memory during a memory allocation. (count),0,clickhouse,,, +clickhouse.events.PageCacheOvercommitResize.total,gauge,,,,Number of times the userspace page cache was auto-resized to free memory during a memory allocation. (total),0,clickhouse,,, +clickhouse.events.PageCacheReadBytes.count,count,,,,Number of bytes read from userspace page cache. (count),0,clickhouse,,, +clickhouse.events.PageCacheReadBytes.total,gauge,,,,Number of bytes read from userspace page cache. (total),0,clickhouse,,, +clickhouse.events.PageCacheResized.count,count,,,,"Number of times the userspace page cache was auto-resized (typically happens a few times per second, controlled by memory_worker_period_ms). (count)",0,clickhouse,,, +clickhouse.events.PageCacheResized.total,gauge,,,,"Number of times the userspace page cache was auto-resized (typically happens a few times per second, controlled by memory_worker_period_ms). (total)",0,clickhouse,,, +clickhouse.events.PageCacheWeightLost.count,count,,,,Number of bytes evicted from the userspace page cache (count),0,clickhouse,,, +clickhouse.events.PageCacheWeightLost.total,gauge,,,,Number of bytes evicted from the userspace page cache (total),0,clickhouse,,, +clickhouse.events.ParallelReplicasAnnouncementMicroseconds,gauge,,microsecond,,Time spent to send an announcement,0,clickhouse,,, +clickhouse.events.ParallelReplicasAvailableCount.count,count,,,,Number of replicas available to execute a query with task-based parallel replicas (count),0,clickhouse,,, +clickhouse.events.ParallelReplicasAvailableCount.total,gauge,,,,Number of replicas available to execute a query with task-based parallel replicas (total),0,clickhouse,,, +clickhouse.events.ParallelReplicasCollectingOwnedSegmentsMicroseconds,gauge,,microsecond,,Time spent collecting segments meant by hash,0,clickhouse,,, +clickhouse.events.ParallelReplicasDeniedRequests.count,count,,,,Number of completely denied requests to the initiator (count),0,clickhouse,,, +clickhouse.events.ParallelReplicasDeniedRequests.total,gauge,,,,Number of completely denied requests to the initiator (total),0,clickhouse,,, +clickhouse.events.ParallelReplicasHandleAnnouncementMicroseconds,gauge,,microsecond,,Time spent processing replicas announcements,0,clickhouse,,, +clickhouse.events.ParallelReplicasHandleRequestMicroseconds,gauge,,microsecond,,Time spent processing requests for marks from replicas,0,clickhouse,,, +clickhouse.events.ParallelReplicasNumRequests.count,count,,,,Number of requests to the initiator. (count),0,clickhouse,,, +clickhouse.events.ParallelReplicasNumRequests.total,gauge,,,,Number of requests to the initiator. (total),0,clickhouse,,, +clickhouse.events.ParallelReplicasProcessingPartsMicroseconds,gauge,,microsecond,,Time spent processing data parts,0,clickhouse,,, +clickhouse.events.ParallelReplicasQueryCount.count,count,,,,Number of (sub)queries executed using parallel replicas during a query execution (count),0,clickhouse,,, +clickhouse.events.ParallelReplicasQueryCount.total,gauge,,,,Number of (sub)queries executed using parallel replicas during a query execution (total),0,clickhouse,,, +clickhouse.events.ParallelReplicasReadAssignedForStealingMarks.count,count,,,,Sum across all replicas of how many of scheduled marks were assigned for stealing by consistent hash (count),0,clickhouse,,, +clickhouse.events.ParallelReplicasReadAssignedForStealingMarks.total,gauge,,,,Sum across all replicas of how many of scheduled marks were assigned for stealing by consistent hash (total),0,clickhouse,,, +clickhouse.events.ParallelReplicasReadAssignedMarks.count,count,,,,Sum across all replicas of how many of scheduled marks were assigned by consistent hash (count),0,clickhouse,,, +clickhouse.events.ParallelReplicasReadAssignedMarks.total,gauge,,,,Sum across all replicas of how many of scheduled marks were assigned by consistent hash (total),0,clickhouse,,, +clickhouse.events.ParallelReplicasReadMarks.count,count,,,,How many marks were read by the given replica (count),0,clickhouse,,, +clickhouse.events.ParallelReplicasReadMarks.total,gauge,,,,How many marks were read by the given replica (total),0,clickhouse,,, +clickhouse.events.ParallelReplicasReadRequestMicroseconds,gauge,,microsecond,,Time spent for read requests,0,clickhouse,,, +clickhouse.events.ParallelReplicasReadUnassignedMarks.count,count,,,,Sum across all replicas of how many unassigned marks were scheduled (count),0,clickhouse,,, +clickhouse.events.ParallelReplicasReadUnassignedMarks.total,gauge,,,,Sum across all replicas of how many unassigned marks were scheduled (total),0,clickhouse,,, +clickhouse.events.ParallelReplicasStealingByHashMicroseconds,gauge,,microsecond,,Time spent collecting segments meant for stealing by hash,0,clickhouse,,, +clickhouse.events.ParallelReplicasStealingLeftoversMicroseconds,gauge,,microsecond,,Time spent collecting orphaned segments,0,clickhouse,,, +clickhouse.events.ParallelReplicasUnavailableCount.count,count,,,,"Number of replicas which was chosen, but found to be unavailable during query execution with task-based parallel replicas (count)",0,clickhouse,,, +clickhouse.events.ParallelReplicasUnavailableCount.total,gauge,,,,"Number of replicas which was chosen, but found to be unavailable during query execution with task-based parallel replicas (total)",0,clickhouse,,, +clickhouse.events.ParallelReplicasUsedCount.count,count,,,,Number of replicas used to execute a query with task-based parallel replicas (count),0,clickhouse,,, +clickhouse.events.ParallelReplicasUsedCount.total,gauge,,,,Number of replicas used to execute a query with task-based parallel replicas (total),0,clickhouse,,, +clickhouse.events.ParquetDecodingTaskBatches.count,count,,,,Task groups sent to a thread pool by parquet reader (count),0,clickhouse,,, +clickhouse.events.ParquetDecodingTaskBatches.total,gauge,,,,Task groups sent to a thread pool by parquet reader (total),0,clickhouse,,, +clickhouse.events.ParquetDecodingTasks.count,count,,,,Tasks issued by parquet reader (count),0,clickhouse,,, +clickhouse.events.ParquetDecodingTasks.total,gauge,,,,Tasks issued by parquet reader (total),0,clickhouse,,, +clickhouse.events.ParquetFetchWaitTimeMicroseconds,gauge,,microsecond,,Time of waiting fetching parquet data,0,clickhouse,,, +clickhouse.events.ParquetPrunedRowGroups.count,count,,,,The total number of row groups pruned from parquet data (count),0,clickhouse,,, +clickhouse.events.ParquetPrunedRowGroups.total,gauge,,,,The total number of row groups pruned from parquet data (total),0,clickhouse,,, +clickhouse.events.ParquetReadRowGroups.count,count,,,,The total number of row groups read from parquet data (count),0,clickhouse,,, +clickhouse.events.ParquetReadRowGroups.total,gauge,,,,The total number of row groups read from parquet data (total),0,clickhouse,,, +clickhouse.events.PartsLockHoldMicroseconds,gauge,,microsecond,,Total time spent holding data parts lock in MergeTree tables,0,clickhouse,,, +clickhouse.events.PartsLockWaitMicroseconds,gauge,,microsecond,,Total time spent waiting for data parts lock in MergeTree tables,0,clickhouse,,, +clickhouse.events.PartsWithAppliedMutationsOnFly,gauge,,,,Total number of parts for which there was any mutation applied on fly,0,clickhouse,,, +clickhouse.events.PatchesAcquireLockMicroseconds.count,count,,,,Total number of microseconds spent to acquire lock for executing lightweight updates (count),0,clickhouse,,, +clickhouse.events.PatchesAcquireLockMicroseconds.total,gauge,,,,Total number of microseconds spent to acquire lock for executing lightweight updates (total),0,clickhouse,,, +clickhouse.events.PatchesAcquireLockTries.count,count,,,,Total number of tries to acquire lock for executing lightweight updates (count),0,clickhouse,,, +clickhouse.events.PatchesAcquireLockTries.total,gauge,,,,Total number of tries to acquire lock for executing lightweight updates (total),0,clickhouse,,, +clickhouse.events.PatchesAppliedInAllReadTasks.count,count,,,,Total number of applied patch parts among all read tasks (count),0,clickhouse,,, +clickhouse.events.PatchesAppliedInAllReadTasks.total,gauge,,,,Total number of applied patch parts among all read tasks (total),0,clickhouse,,, +clickhouse.events.PatchesJoinAppliedInAllReadTasks.count,count,,,,Total number of applied patch parts with Join mode among all read tasks (count),0,clickhouse,,, +clickhouse.events.PatchesJoinAppliedInAllReadTasks.total,gauge,,,,Total number of applied patch parts with Join mode among all read tasks (total),0,clickhouse,,, +clickhouse.events.PatchesMergeAppliedInAllReadTasks.count,count,,,,Total number of applied patch parts with Merge mode among all read tasks (count),0,clickhouse,,, +clickhouse.events.PatchesMergeAppliedInAllReadTasks.total,gauge,,,,Total number of applied patch parts with Merge mode among all read tasks (total),0,clickhouse,,, +clickhouse.events.PatchesReadUncompressedBytes.count,count,,,,Total number of uncompressed bytes read from patch parts (count),0,clickhouse,,, +clickhouse.events.PatchesReadUncompressedBytes.total,gauge,,,,Total number of uncompressed bytes read from patch parts (total),0,clickhouse,,, +clickhouse.events.PerfAlignmentFaults.count,count,,,,Number of alignment faults. These happen when unaligned memory accesses happen; the kernel can handle these but it reduces performance. This happens only on some architectures (never on x86). (count),0,clickhouse,,, +clickhouse.events.PerfAlignmentFaults.total,gauge,,,,Number of alignment faults. These happen when unaligned memory accesses happen; the kernel can handle these but it reduces performance. This happens only on some architectures (never on x86). (total),0,clickhouse,,, +clickhouse.events.PerfBranchInstructions.count,count,,,,"Retired branch instructions. Prior to Linux 2.6.35, this used the wrong event on AMD processors. (count)",0,clickhouse,,, +clickhouse.events.PerfBranchInstructions.total,gauge,,,,"Retired branch instructions. Prior to Linux 2.6.35, this used the wrong event on AMD processors. (total)",0,clickhouse,,, +clickhouse.events.PerfBranchMisses.count,count,,,,Mispredicted branch instructions. (count),0,clickhouse,,, +clickhouse.events.PerfBranchMisses.total,gauge,,,,Mispredicted branch instructions. (total),0,clickhouse,,, +clickhouse.events.PerfBusCycles.count,count,,,,"Bus cycles, which can be different from total cycles. (count)",0,clickhouse,,, +clickhouse.events.PerfBusCycles.total,gauge,,,,"Bus cycles, which can be different from total cycles. (total)",0,clickhouse,,, +clickhouse.events.PerfCPUClock.count,count,,,,"The CPU clock, a high-resolution per-CPU timer (count)",0,clickhouse,,, +clickhouse.events.PerfCPUClock.total,gauge,,,,"The CPU clock, a high-resolution per-CPU timer (total)",0,clickhouse,,, +clickhouse.events.PerfCPUCycles.count,count,,,,Total cycles. Be wary of what happens during CPU frequency scaling. (count),0,clickhouse,,, +clickhouse.events.PerfCPUCycles.total,gauge,,,,Total cycles. Be wary of what happens during CPU frequency scaling. (total),0,clickhouse,,, +clickhouse.events.PerfCPUMigrations.count,count,,,,Number of times the process has migrated to a new CPU (count),0,clickhouse,,, +clickhouse.events.PerfCPUMigrations.total,gauge,,,,Number of times the process has migrated to a new CPU (total),0,clickhouse,,, +clickhouse.events.PerfCacheMisses.count,count,,,,Cache misses. Usually this indicates Last Level Cache misses; this is intended to be used in conjunction with the PERFCOUNTHWCACHEREFERENCES event to calculate cache miss rates. (count),0,clickhouse,,, +clickhouse.events.PerfCacheMisses.total,gauge,,,,Cache misses. Usually this indicates Last Level Cache misses; this is intended to be used in conjunction with the PERFCOUNTHWCACHEREFERENCES event to calculate cache miss rates. (total),0,clickhouse,,, +clickhouse.events.PerfCacheReferences.count,count,,,,"Cache accesses. Usually, this indicates Last Level Cache accesses, but this may vary depending on your CPU. This may include prefetches and coherency messages; again this depends on the design of your CPU. (count)",0,clickhouse,,, +clickhouse.events.PerfCacheReferences.total,gauge,,,,"Cache accesses. Usually, this indicates Last Level Cache accesses, but this may vary depending on your CPU. This may include prefetches and coherency messages; again this depends on the design of your CPU. (total)",0,clickhouse,,, +clickhouse.events.PerfContextSwitches.count,count,,,,Number of context switches (count),0,clickhouse,,, +clickhouse.events.PerfContextSwitches.total,gauge,,,,Number of context switches (total),0,clickhouse,,, +clickhouse.events.PerfDataTLBMisses.count,count,,,,Data TLB misses (count),0,clickhouse,,, +clickhouse.events.PerfDataTLBMisses.total,gauge,,,,Data TLB misses (total),0,clickhouse,,, +clickhouse.events.PerfDataTLBReferences.count,count,,,,Data TLB references (count),0,clickhouse,,, +clickhouse.events.PerfDataTLBReferences.total,gauge,,,,Data TLB references (total),0,clickhouse,,, +clickhouse.events.PerfEmulationFaults.count,count,,,,Number of emulation faults. The kernel sometimes traps on unimplemented instructions and emulates them for user space. This can negatively impact performance. (count),0,clickhouse,,, +clickhouse.events.PerfEmulationFaults.total,gauge,,,,Number of emulation faults. The kernel sometimes traps on unimplemented instructions and emulates them for user space. This can negatively impact performance. (total),0,clickhouse,,, +clickhouse.events.PerfInstructionTLBMisses.count,count,,,,Instruction TLB misses (count),0,clickhouse,,, +clickhouse.events.PerfInstructionTLBMisses.total,gauge,,,,Instruction TLB misses (total),0,clickhouse,,, +clickhouse.events.PerfInstructionTLBReferences.count,count,,,,Instruction TLB references (count),0,clickhouse,,, +clickhouse.events.PerfInstructionTLBReferences.total,gauge,,,,Instruction TLB references (total),0,clickhouse,,, +clickhouse.events.PerfInstructions.count,count,,,,"Retired instructions. Be careful, these can be affected by various issues, most notably hardware interrupt counts. (count)",0,clickhouse,,, +clickhouse.events.PerfInstructions.total,gauge,,,,"Retired instructions. Be careful, these can be affected by various issues, most notably hardware interrupt counts. (total)",0,clickhouse,,, +clickhouse.events.PerfLocalMemoryMisses.count,count,,,,Local NUMA node memory read misses (count),0,clickhouse,,, +clickhouse.events.PerfLocalMemoryMisses.total,gauge,,,,Local NUMA node memory read misses (total),0,clickhouse,,, +clickhouse.events.PerfLocalMemoryReferences.count,count,,,,Local NUMA node memory reads (count),0,clickhouse,,, +clickhouse.events.PerfLocalMemoryReferences.total,gauge,,,,Local NUMA node memory reads (total),0,clickhouse,,, +clickhouse.events.PerfMinEnabledRunningTime.count,count,,,,Running time for event with minimum enabled time. Used to track the amount of event multiplexing (count),0,clickhouse,,, +clickhouse.events.PerfMinEnabledRunningTime.total,gauge,,,,Running time for event with minimum enabled time. Used to track the amount of event multiplexing (total),0,clickhouse,,, +clickhouse.events.PerfMinEnabledTime.count,count,,,,"For all events, minimum time that an event was enabled. Used to track event multiplexing influence (count)",0,clickhouse,,, +clickhouse.events.PerfMinEnabledTime.total,gauge,,,,"For all events, minimum time that an event was enabled. Used to track event multiplexing influence (total)",0,clickhouse,,, +clickhouse.events.PerfRefCPUCycles.count,count,,,,Total cycles; not affected by CPU frequency scaling. (count),0,clickhouse,,, +clickhouse.events.PerfRefCPUCycles.total,gauge,,,,Total cycles; not affected by CPU frequency scaling. (total),0,clickhouse,,, +clickhouse.events.PerfStalledCyclesBackend.count,count,,,,Stalled cycles during retirement. (count),0,clickhouse,,, +clickhouse.events.PerfStalledCyclesBackend.total,gauge,,,,Stalled cycles during retirement. (total),0,clickhouse,,, +clickhouse.events.PerfStalledCyclesFrontend.count,count,,,,Stalled cycles during issue. (count),0,clickhouse,,, +clickhouse.events.PerfStalledCyclesFrontend.total,gauge,,,,Stalled cycles during issue. (total),0,clickhouse,,, +clickhouse.events.PerfTaskClock.count,count,,,,A clock count specific to the task that is running (count),0,clickhouse,,, +clickhouse.events.PerfTaskClock.total,gauge,,,,A clock count specific to the task that is running (total),0,clickhouse,,, +clickhouse.events.PolygonsAddedToPool.count,count,,,,A polygon has been added to the cache (pool) for the 'pointInPolygon' function. (count),0,clickhouse,,, +clickhouse.events.PolygonsAddedToPool.total,gauge,,,,A polygon has been added to the cache (pool) for the 'pointInPolygon' function. (total),0,clickhouse,,, +clickhouse.events.PolygonsInPoolAllocatedBytes.count,count,,,,The number of bytes for polygons added to the cache (pool) for the 'pointInPolygon' function. (count),0,clickhouse,,, +clickhouse.events.PolygonsInPoolAllocatedBytes.total,gauge,,,,The number of bytes for polygons added to the cache (pool) for the 'pointInPolygon' function. (total),0,clickhouse,,, +clickhouse.events.PreferredWarmedUnmergedParts.count,count,,,,See setting prefer_warmed_unmerged_parts_seconds. Number of times read queries used outdated pre-merge parts that are in cache instead of merged part that wasn't pulled into cache by CacheWarmer yet. (count),0,clickhouse,,, +clickhouse.events.PreferredWarmedUnmergedParts.total,gauge,,,,See setting prefer_warmed_unmerged_parts_seconds. Number of times read queries used outdated pre-merge parts that are in cache instead of merged part that wasn't pulled into cache by CacheWarmer yet. (total),0,clickhouse,,, +clickhouse.events.PrimaryIndexCacheHits.count,count,,,,"Number of times an entry has been found in the primary index cache, so we didn't have to load a index file. (count)",0,clickhouse,,, +clickhouse.events.PrimaryIndexCacheHits.total,gauge,,,,"Number of times an entry has been found in the primary index cache, so we didn't have to load a index file. (total)",0,clickhouse,,, +clickhouse.events.PrimaryIndexCacheMisses.count,count,,,,"Number of times an entry has not been found in the primary index cache, so we had to load a index file in memory, which is a costly operation, adding to query latency. (count)",0,clickhouse,,, +clickhouse.events.PrimaryIndexCacheMisses.total,gauge,,,,"Number of times an entry has not been found in the primary index cache, so we had to load a index file in memory, which is a costly operation, adding to query latency. (total)",0,clickhouse,,, +clickhouse.events.QueriesWithSubqueries.count,count,,,,Count queries with all subqueries (count),0,clickhouse,,, +clickhouse.events.QueriesWithSubqueries.total,gauge,,,,Count queries with all subqueries (total),0,clickhouse,,, +clickhouse.events.Query.count,count,,,,"Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. (count)",0,clickhouse,,, +clickhouse.events.Query.total,gauge,,,,"Number of queries to be interpreted and potentially executed. Does not include queries that failed to parse or were rejected due to AST size limits, quota limits or limits on the number of simultaneously running queries. May include internal queries initiated by ClickHouse itself. Does not count subqueries. (total)",0,clickhouse,,, +clickhouse.events.QueryBackupThrottlerBytes.count,count,,,,Bytes passed through 'max_backup_bandwidth' throttler. (count),0,clickhouse,,, +clickhouse.events.QueryBackupThrottlerBytes.total,gauge,,,,Bytes passed through 'max_backup_bandwidth' throttler. (total),0,clickhouse,,, +clickhouse.events.QueryBackupThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_backup_bandwidth' throttling.,0,clickhouse,,, +clickhouse.events.QueryCacheHits.count,count,,,,Number of times a query result has been found in the query cache (and query computation was avoided). Only updated for SELECT queries with SETTING use_query_cache = 1. (count),0,clickhouse,,, +clickhouse.events.QueryCacheHits.total,gauge,,,,Number of times a query result has been found in the query cache (and query computation was avoided). Only updated for SELECT queries with SETTING use_query_cache = 1. (total),0,clickhouse,,, +clickhouse.events.QueryCacheMisses.count,count,,,,Number of times a query result has not been found in the query cache (and required query computation). Only updated for SELECT queries with SETTING use_query_cache = 1. (count),0,clickhouse,,, +clickhouse.events.QueryCacheMisses.total,gauge,,,,Number of times a query result has not been found in the query cache (and required query computation). Only updated for SELECT queries with SETTING use_query_cache = 1. (total),0,clickhouse,,, +clickhouse.events.QueryConditionCacheHits.count,count,,,,Number of times an entry has been found in the query condition cache (and reading of marks can be skipped). Only updated for SELECT queries with SETTING use_query_condition_cache = 1. (count),0,clickhouse,,, +clickhouse.events.QueryConditionCacheHits.total,gauge,,,,Number of times an entry has been found in the query condition cache (and reading of marks can be skipped). Only updated for SELECT queries with SETTING use_query_condition_cache = 1. (total),0,clickhouse,,, +clickhouse.events.QueryConditionCacheMisses.count,count,,,,Number of times an entry has not been found in the query condition cache (and reading of mark cannot be skipped). Only updated for SELECT queries with SETTING use_query_condition_cache = 1. (count),0,clickhouse,,, +clickhouse.events.QueryConditionCacheMisses.total,gauge,,,,Number of times an entry has not been found in the query condition cache (and reading of mark cannot be skipped). Only updated for SELECT queries with SETTING use_query_condition_cache = 1. (total),0,clickhouse,,, +clickhouse.events.QueryLocalReadThrottlerBytes.count,count,,,,Bytes passed through 'max_local_read_bandwidth' throttler. (count),0,clickhouse,,, +clickhouse.events.QueryLocalReadThrottlerBytes.total,gauge,,,,Bytes passed through 'max_local_read_bandwidth' throttler. (total),0,clickhouse,,, +clickhouse.events.QueryLocalReadThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_local_read_bandwidth' throttling.,0,clickhouse,,, +clickhouse.events.QueryLocalWriteThrottlerBytes.count,count,,,,Bytes passed through 'max_local_write_bandwidth' throttler. (count),0,clickhouse,,, +clickhouse.events.QueryLocalWriteThrottlerBytes.total,gauge,,,,Bytes passed through 'max_local_write_bandwidth' throttler. (total),0,clickhouse,,, +clickhouse.events.QueryLocalWriteThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_local_write_bandwidth' throttling.,0,clickhouse,,, +clickhouse.events.QueryMaskingRulesMatch.count,count,,,,Number of times query masking rules was successfully matched. (count),0,clickhouse,,, +clickhouse.events.QueryMaskingRulesMatch.total,gauge,,,,Number of times query masking rules was successfully matched. (total),0,clickhouse,,, +clickhouse.events.QueryMemoryLimitExceeded.count,count,,,,Number of times when memory limit exceeded for query. (count),0,clickhouse,,, +clickhouse.events.QueryMemoryLimitExceeded.total,gauge,,,,Number of times when memory limit exceeded for query. (total),0,clickhouse,,, +clickhouse.events.QueryPreempted.count,count,,,,How many times tasks are paused and waiting due to 'priority' setting (count),0,clickhouse,,, +clickhouse.events.QueryPreempted.total,gauge,,,,How many times tasks are paused and waiting due to 'priority' setting (total),0,clickhouse,,, +clickhouse.events.QueryProfilerConcurrencyOverruns.count,count,,,,"Number of times we drop processing of a query profiler signal due to too many concurrent query profilers in other threads, which may indicate overload. (count)",0,clickhouse,,, +clickhouse.events.QueryProfilerConcurrencyOverruns.total,gauge,,,,"Number of times we drop processing of a query profiler signal due to too many concurrent query profilers in other threads, which may indicate overload. (total)",0,clickhouse,,, +clickhouse.events.QueryProfilerErrors.count,count,,,,Invalid memory accesses during asynchronous stack unwinding. (count),0,clickhouse,,, +clickhouse.events.QueryProfilerErrors.total,gauge,,,,Invalid memory accesses during asynchronous stack unwinding. (total),0,clickhouse,,, +clickhouse.events.QueryProfilerRuns.count,count,,,,Number of times QueryProfiler had been run. (count),0,clickhouse,,, +clickhouse.events.QueryProfilerRuns.total,gauge,,,,Number of times QueryProfiler had been run. (total),0,clickhouse,,, +clickhouse.events.QueryProfilerSignalOverruns.count,count,,,,Number of times we drop processing of a query profiler signal due to overrun plus the number of signals that OS has not delivered due to overrun. (count),0,clickhouse,,, +clickhouse.events.QueryProfilerSignalOverruns.total,gauge,,,,Number of times we drop processing of a query profiler signal due to overrun plus the number of signals that OS has not delivered due to overrun. (total),0,clickhouse,,, +clickhouse.events.QueryRemoteReadThrottlerBytes.count,count,,,,Bytes passed through 'max_remote_read_network_bandwidth' throttler. (count),0,clickhouse,,, +clickhouse.events.QueryRemoteReadThrottlerBytes.total,gauge,,,,Bytes passed through 'max_remote_read_network_bandwidth' throttler. (total),0,clickhouse,,, +clickhouse.events.QueryRemoteReadThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_remote_read_network_bandwidth' throttling.,0,clickhouse,,, +clickhouse.events.QueryRemoteWriteThrottlerBytes.count,count,,,,Bytes passed through 'max_remote_write_network_bandwidth' throttler. (count),0,clickhouse,,, +clickhouse.events.QueryRemoteWriteThrottlerBytes.total,gauge,,,,Bytes passed through 'max_remote_write_network_bandwidth' throttler. (total),0,clickhouse,,, +clickhouse.events.QueryRemoteWriteThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_remote_write_network_bandwidth' throttling.,0,clickhouse,,, +clickhouse.events.QueryTimeMicroseconds,gauge,,microsecond,,Total time of all queries.,0,clickhouse,,, +clickhouse.events.RWLockAcquiredReadLocks.count,count,,,,Number of times a read lock was acquired (in a heavy RWLock). (count),0,clickhouse,,, +clickhouse.events.RWLockAcquiredReadLocks.total,gauge,,,,Number of times a read lock was acquired (in a heavy RWLock). (total),0,clickhouse,,, +clickhouse.events.RWLockAcquiredWriteLocks.count,count,,,,Number of times a write lock was acquired (in a heavy RWLock). (count),0,clickhouse,,, +clickhouse.events.RWLockAcquiredWriteLocks.total,gauge,,,,Number of times a write lock was acquired (in a heavy RWLock). (total),0,clickhouse,,, +clickhouse.events.RWLockReadersWaitMilliseconds,gauge,,millisecond,,Total time spent waiting for a read lock to be acquired (in a heavy RWLock).,0,clickhouse,,, +clickhouse.events.RWLockWritersWaitMilliseconds,gauge,,millisecond,,Total time spent waiting for a write lock to be acquired (in a heavy RWLock).,0,clickhouse,,, +clickhouse.events.ReadBackoff.count,count,,,,Number of times the number of query processing threads was lowered due to slow reads. (count),0,clickhouse,,, +clickhouse.events.ReadBackoff.total,gauge,,,,Number of times the number of query processing threads was lowered due to slow reads. (total),0,clickhouse,,, +clickhouse.events.ReadBufferFromAzureBytes.count,count,,,,Bytes read from Azure. (count),0,clickhouse,,, +clickhouse.events.ReadBufferFromAzureBytes.total,gauge,,,,Bytes read from Azure. (total),0,clickhouse,,, +clickhouse.events.ReadBufferFromAzureInitMicroseconds,gauge,,microsecond,,Time spent initializing connection to Azure.,0,clickhouse,,, +clickhouse.events.ReadBufferFromAzureMicroseconds,gauge,,microsecond,,Time spent on reading from Azure.,0,clickhouse,,, +clickhouse.events.ReadBufferFromAzureRequestsErrors.count,count,,,,Number of exceptions while reading from Azure (count),0,clickhouse,,, +clickhouse.events.ReadBufferFromAzureRequestsErrors.total,gauge,,,,Number of exceptions while reading from Azure (total),0,clickhouse,,, +clickhouse.events.ReadBufferFromFileDescriptorRead.count,count,,,,Number of reads (read/pread) from a file descriptor. Does not include sockets. (count),0,clickhouse,,, +clickhouse.events.ReadBufferFromFileDescriptorRead.total,gauge,,,,Number of reads (read/pread) from a file descriptor. Does not include sockets. (total),0,clickhouse,,, +clickhouse.events.ReadBufferFromFileDescriptorReadBytes.count,count,,,,"Number of bytes read from file descriptors. If the file is compressed, this will show the compressed data size. (count)",0,clickhouse,,, +clickhouse.events.ReadBufferFromFileDescriptorReadBytes.total,gauge,,,,"Number of bytes read from file descriptors. If the file is compressed, this will show the compressed data size. (total)",0,clickhouse,,, +clickhouse.events.ReadBufferFromFileDescriptorReadFailed.count,count,,,,Number of times the read (read/pread) from a file descriptor have failed. (count),0,clickhouse,,, +clickhouse.events.ReadBufferFromFileDescriptorReadFailed.total,gauge,,,,Number of times the read (read/pread) from a file descriptor have failed. (total),0,clickhouse,,, +clickhouse.events.ReadBufferFromS3Bytes.count,count,,,,Bytes read from S3. (count),0,clickhouse,,, +clickhouse.events.ReadBufferFromS3Bytes.total,gauge,,,,Bytes read from S3. (total),0,clickhouse,,, +clickhouse.events.ReadBufferFromS3InitMicroseconds,gauge,,microsecond,,Time spent initializing connection to S3.,0,clickhouse,,, +clickhouse.events.ReadBufferFromS3Microseconds,gauge,,microsecond,,Time spent on reading from S3.,0,clickhouse,,, +clickhouse.events.ReadBufferFromS3RequestsErrors.count,count,,,,Number of exceptions while reading from S3. (count),0,clickhouse,,, +clickhouse.events.ReadBufferFromS3RequestsErrors.total,gauge,,,,Number of exceptions while reading from S3. (total),0,clickhouse,,, +clickhouse.events.ReadBufferSeekCancelConnection.count,count,,,,"Number of seeks which lead to new connection (s3, http) (count)",0,clickhouse,,, +clickhouse.events.ReadBufferSeekCancelConnection.total,gauge,,,,"Number of seeks which lead to new connection (s3, http) (total)",0,clickhouse,,, +clickhouse.events.ReadCompressedBytes.count,count,,,,"Number of bytes (the number of bytes before decompression) read from compressed sources (files, network). (count)",0,clickhouse,,, +clickhouse.events.ReadCompressedBytes.total,gauge,,,,"Number of bytes (the number of bytes before decompression) read from compressed sources (files, network). (total)",0,clickhouse,,, +clickhouse.events.ReadPatchesMicroseconds.count,count,,,,Total time spent reading patch parts (count),0,clickhouse,,, +clickhouse.events.ReadPatchesMicroseconds.total,gauge,,,,Total time spent reading patch parts (total),0,clickhouse,,, +clickhouse.events.ReadTaskRequestsReceived.count,count,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the initiator server side. (count),0,clickhouse,,, +clickhouse.events.ReadTaskRequestsReceived.total,gauge,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the initiator server side. (total),0,clickhouse,,, +clickhouse.events.ReadTaskRequestsSent.count,count,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the remote server side. (count),0,clickhouse,,, +clickhouse.events.ReadTaskRequestsSent.total,gauge,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the remote server side. (total),0,clickhouse,,, +clickhouse.events.ReadTaskRequestsSentElapsedMicroseconds,gauge,,microsecond,,Time spent in callbacks requested from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the remote server side.,0,clickhouse,,, +clickhouse.events.ReadTasksWithAppliedMutationsOnFly.count,count,,,,Total number of read tasks for which there was any mutation applied on fly (count),0,clickhouse,,, +clickhouse.events.ReadTasksWithAppliedMutationsOnFly.total,gauge,,,,Total number of read tasks for which there was any mutation applied on fly (total),0,clickhouse,,, +clickhouse.events.ReadTasksWithAppliedPatches.count,count,,,,Total number of read tasks for which there was any patch part applied (count),0,clickhouse,,, +clickhouse.events.ReadTasksWithAppliedPatches.total,gauge,,,,Total number of read tasks for which there was any patch part applied (total),0,clickhouse,,, +clickhouse.events.ReadWriteBufferFromHTTPBytes.count,count,,,,Total size of payload bytes received and sent by ReadWriteBufferFromHTTP. Doesn't include HTTP headers. (count),0,clickhouse,,, +clickhouse.events.ReadWriteBufferFromHTTPBytes.total,gauge,,,,Total size of payload bytes received and sent by ReadWriteBufferFromHTTP. Doesn't include HTTP headers. (total),0,clickhouse,,, +clickhouse.events.ReadWriteBufferFromHTTPRequestsSent.count,count,,,,Number of HTTP requests sent by ReadWriteBufferFromHTTP (count),0,clickhouse,,, +clickhouse.events.ReadWriteBufferFromHTTPRequestsSent.total,gauge,,,,Number of HTTP requests sent by ReadWriteBufferFromHTTP (total),0,clickhouse,,, +clickhouse.events.RealTimeMicroseconds,gauge,,microsecond,,Total (wall clock) time spent in processing (queries and other tasks) threads (note that this is a sum).,0,clickhouse,,, +clickhouse.events.RefreshableViewLockTableRetry.count,count,,,,How many times a SELECT from refreshable materialized view had to switch to a new table because the old table was dropped (count),0,clickhouse,,, +clickhouse.events.RefreshableViewLockTableRetry.total,gauge,,,,How many times a SELECT from refreshable materialized view had to switch to a new table because the old table was dropped (total),0,clickhouse,,, +clickhouse.events.RefreshableViewRefreshFailed.count,count,,,,How many times refreshable materialized views failed to refresh (count),0,clickhouse,,, +clickhouse.events.RefreshableViewRefreshFailed.total,gauge,,,,How many times refreshable materialized views failed to refresh (total),0,clickhouse,,, +clickhouse.events.RefreshableViewRefreshSuccess.count,count,,,,How many times refreshable materialized views refreshed (count),0,clickhouse,,, +clickhouse.events.RefreshableViewRefreshSuccess.total,gauge,,,,How many times refreshable materialized views refreshed (total),0,clickhouse,,, +clickhouse.events.RefreshableViewSyncReplicaRetry.count,count,,,,How many times a SELECT from refreshable materialized view failed and retried an implicit SYNC REPLICA (count),0,clickhouse,,, +clickhouse.events.RefreshableViewSyncReplicaRetry.total,gauge,,,,How many times a SELECT from refreshable materialized view failed and retried an implicit SYNC REPLICA (total),0,clickhouse,,, +clickhouse.events.RefreshableViewSyncReplicaSuccess.count,count,,,,How many times a SELECT from refreshable materialized view did an implicit SYNC REPLICA (count),0,clickhouse,,, +clickhouse.events.RefreshableViewSyncReplicaSuccess.total,gauge,,,,How many times a SELECT from refreshable materialized view did an implicit SYNC REPLICA (total),0,clickhouse,,, +clickhouse.events.RegexpLocalCacheHit.count,count,,,,Number of times we fetched compiled regular expression from a local cache. (count),0,clickhouse,,, +clickhouse.events.RegexpLocalCacheHit.total,gauge,,,,Number of times we fetched compiled regular expression from a local cache. (total),0,clickhouse,,, +clickhouse.events.RegexpLocalCacheMiss.count,count,,,,Number of times we failed to fetch compiled regular expression from a local cache. (count),0,clickhouse,,, +clickhouse.events.RegexpLocalCacheMiss.total,gauge,,,,Number of times we failed to fetch compiled regular expression from a local cache. (total),0,clickhouse,,, +clickhouse.events.RegexpWithMultipleNeedlesCreated.count,count,,,,Regular expressions with multiple needles (VectorScan library) compiled. (count),0,clickhouse,,, +clickhouse.events.RegexpWithMultipleNeedlesCreated.total,gauge,,,,Regular expressions with multiple needles (VectorScan library) compiled. (total),0,clickhouse,,, +clickhouse.events.RegexpWithMultipleNeedlesGlobalCacheHit.count,count,,,,Number of times we fetched compiled regular expression with multiple needles (VectorScan library) from the global cache. (count),0,clickhouse,,, +clickhouse.events.RegexpWithMultipleNeedlesGlobalCacheHit.total,gauge,,,,Number of times we fetched compiled regular expression with multiple needles (VectorScan library) from the global cache. (total),0,clickhouse,,, +clickhouse.events.RegexpWithMultipleNeedlesGlobalCacheMiss.count,count,,,,Number of times we failed to fetch compiled regular expression with multiple needles (VectorScan library) from the global cache. (count),0,clickhouse,,, +clickhouse.events.RegexpWithMultipleNeedlesGlobalCacheMiss.total,gauge,,,,Number of times we failed to fetch compiled regular expression with multiple needles (VectorScan library) from the global cache. (total),0,clickhouse,,, +clickhouse.events.RejectedInserts.count,count,,,,Number of times the INSERT of a block to a MergeTree table was rejected with 'Too many parts' exception due to high number of active data parts for partition. (count),0,clickhouse,,, +clickhouse.events.RejectedInserts.total,gauge,,,,Number of times the INSERT of a block to a MergeTree table was rejected with 'Too many parts' exception due to high number of active data parts for partition. (total),0,clickhouse,,, +clickhouse.events.RejectedLightweightUpdates.count,count,,,,Number of time the lightweight update was rejected due to too many uncompressed bytes in patches. (count),0,clickhouse,,, +clickhouse.events.RejectedLightweightUpdates.total,gauge,,,,Number of time the lightweight update was rejected due to too many uncompressed bytes in patches. (total),0,clickhouse,,, +clickhouse.events.RejectedMutations.count,count,,,,Number of times the mutation of a MergeTree table was rejected with 'Too many mutations' exception due to high number of unfinished mutations for table. (count),0,clickhouse,,, +clickhouse.events.RejectedMutations.total,gauge,,,,Number of times the mutation of a MergeTree table was rejected with 'Too many mutations' exception due to high number of unfinished mutations for table. (total),0,clickhouse,,, +clickhouse.events.RemoteFSBuffers.count,count,,,,Number of buffers created for asynchronous reading from remote filesystem (count),0,clickhouse,,, +clickhouse.events.RemoteFSBuffers.total,gauge,,,,Number of buffers created for asynchronous reading from remote filesystem (total),0,clickhouse,,, +clickhouse.events.RemoteFSCancelledPrefetches.count,count,,,,Number of cancelled prefecthes (because of seek) (count),0,clickhouse,,, +clickhouse.events.RemoteFSCancelledPrefetches.total,gauge,,,,Number of cancelled prefecthes (because of seek) (total),0,clickhouse,,, +clickhouse.events.RemoteFSLazySeeks.count,count,,,,Number of lazy seeks (count),0,clickhouse,,, +clickhouse.events.RemoteFSLazySeeks.total,gauge,,,,Number of lazy seeks (total),0,clickhouse,,, +clickhouse.events.RemoteFSPrefetchedBytes.count,count,,,,Number of bytes from prefecthed buffer (count),0,clickhouse,,, +clickhouse.events.RemoteFSPrefetchedBytes.total,gauge,,,,Number of bytes from prefecthed buffer (total),0,clickhouse,,, +clickhouse.events.RemoteFSPrefetchedReads.count,count,,,,Number of reads from prefecthed buffer (count),0,clickhouse,,, +clickhouse.events.RemoteFSPrefetchedReads.total,gauge,,,,Number of reads from prefecthed buffer (total),0,clickhouse,,, +clickhouse.events.RemoteFSPrefetches.count,count,,,,Number of prefetches made with asynchronous reading from remote filesystem (count),0,clickhouse,,, +clickhouse.events.RemoteFSPrefetches.total,gauge,,,,Number of prefetches made with asynchronous reading from remote filesystem (total),0,clickhouse,,, +clickhouse.events.RemoteFSSeeks.count,count,,,,Total number of seeks for async buffer (count),0,clickhouse,,, +clickhouse.events.RemoteFSSeeks.total,gauge,,,,Total number of seeks for async buffer (total),0,clickhouse,,, +clickhouse.events.RemoteFSSeeksWithReset.count,count,,,,Number of seeks which lead to a new connection (count),0,clickhouse,,, +clickhouse.events.RemoteFSSeeksWithReset.total,gauge,,,,Number of seeks which lead to a new connection (total),0,clickhouse,,, +clickhouse.events.RemoteFSUnprefetchedBytes.count,count,,,,Number of bytes from unprefetched buffer (count),0,clickhouse,,, +clickhouse.events.RemoteFSUnprefetchedBytes.total,gauge,,,,Number of bytes from unprefetched buffer (total),0,clickhouse,,, +clickhouse.events.RemoteFSUnprefetchedReads.count,count,,,,Number of reads from unprefetched buffer (count),0,clickhouse,,, +clickhouse.events.RemoteFSUnprefetchedReads.total,gauge,,,,Number of reads from unprefetched buffer (total),0,clickhouse,,, +clickhouse.events.RemoteFSUnusedPrefetches.count,count,,,,Number of prefetches pending at buffer destruction (count),0,clickhouse,,, +clickhouse.events.RemoteFSUnusedPrefetches.total,gauge,,,,Number of prefetches pending at buffer destruction (total),0,clickhouse,,, +clickhouse.events.RemoteReadThrottlerBytes.count,count,,,,Bytes passed through 'max_remote_read_network_bandwidth_for_server'/'max_remote_read_network_bandwidth' throttler. (count),0,clickhouse,,, +clickhouse.events.RemoteReadThrottlerBytes.total,gauge,,,,Bytes passed through 'max_remote_read_network_bandwidth_for_server'/'max_remote_read_network_bandwidth' throttler. (total),0,clickhouse,,, +clickhouse.events.RemoteReadThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_remote_read_network_bandwidth_for_server'/'max_remote_read_network_bandwidth' throttling.,0,clickhouse,,, +clickhouse.events.RemoteWriteThrottlerBytes.count,count,,,,Bytes passed through 'max_remote_write_network_bandwidth_for_server'/'max_remote_write_network_bandwidth' throttler. (count),0,clickhouse,,, +clickhouse.events.RemoteWriteThrottlerBytes.total,gauge,,,,Bytes passed through 'max_remote_write_network_bandwidth_for_server'/'max_remote_write_network_bandwidth' throttler. (total),0,clickhouse,,, +clickhouse.events.RemoteWriteThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform 'max_remote_write_network_bandwidth_for_server'/'max_remote_write_network_bandwidth' throttling.,0,clickhouse,,, +clickhouse.events.ReplacingSortedMilliseconds,gauge,,millisecond,,Total time spent while replacing sorted columns,0,clickhouse,,, +clickhouse.events.ReplicaPartialShutdown.count,count,,,,How many times Replicated table has to deinitialize its state due to session expiration in ZooKeeper. The state is reinitialized every time when ZooKeeper is available again. (count),0,clickhouse,,, +clickhouse.events.ReplicaPartialShutdown.total,gauge,,,,How many times Replicated table has to deinitialize its state due to session expiration in ZooKeeper. The state is reinitialized every time when ZooKeeper is available again. (total),0,clickhouse,,, +clickhouse.events.ReplicatedCoveredPartsInZooKeeperOnStart.count,count,,,,"For debugging purposes. Number of parts in ZooKeeper that have a covering part, but doesn't exist on disk. Checked on server start. (count)",0,clickhouse,,, +clickhouse.events.ReplicatedCoveredPartsInZooKeeperOnStart.total,gauge,,,,"For debugging purposes. Number of parts in ZooKeeper that have a covering part, but doesn't exist on disk. Checked on server start. (total)",0,clickhouse,,, +clickhouse.events.ReplicatedDataLoss.count,count,,,,"Number of times a data part that we wanted doesn't exist on any replica (even on replicas that are offline right now). That data parts are definitely lost. This is normal due to asynchronous replication (if quorum inserts were not enabled), when the replica on which the data part was written was failed and when it became online after fail it doesn't contain that data part. (count)",0,clickhouse,,, +clickhouse.events.ReplicatedDataLoss.total,gauge,,,,"Number of times a data part that we wanted doesn't exist on any replica (even on replicas that are offline right now). That data parts are definitely lost. This is normal due to asynchronous replication (if quorum inserts were not enabled), when the replica on which the data part was written was failed and when it became online after fail it doesn't contain that data part. (total)",0,clickhouse,,, +clickhouse.events.ReplicatedPartChecks.count,count,,,,Number of times we had to perform advanced search for a data part on replicas or to clarify the need of an existing data part. (count),0,clickhouse,,, +clickhouse.events.ReplicatedPartChecks.total,gauge,,,,Number of times we had to perform advanced search for a data part on replicas or to clarify the need of an existing data part. (total),0,clickhouse,,, +clickhouse.events.ReplicatedPartChecksFailed.count,count,,,,Number of times the advanced search for a data part on replicas did not give result or when unexpected part has been found and moved away. (count),0,clickhouse,,, +clickhouse.events.ReplicatedPartChecksFailed.total,gauge,,,,Number of times the advanced search for a data part on replicas did not give result or when unexpected part has been found and moved away. (total),0,clickhouse,,, +clickhouse.events.ReplicatedPartFailedFetches.count,count,,,,Number of times a data part was failed to download from replica of a ReplicatedMergeTree table. (count),0,clickhouse,,, +clickhouse.events.ReplicatedPartFailedFetches.total,gauge,,,,Number of times a data part was failed to download from replica of a ReplicatedMergeTree table. (total),0,clickhouse,,, +clickhouse.events.ReplicatedPartFetches.count,count,,,,Number of times a data part was downloaded from replica of a ReplicatedMergeTree table. (count),0,clickhouse,,, +clickhouse.events.ReplicatedPartFetches.total,gauge,,,,Number of times a data part was downloaded from replica of a ReplicatedMergeTree table. (total),0,clickhouse,,, +clickhouse.events.ReplicatedPartFetchesOfMerged.count,count,,,,Number of times we prefer to download already merged part from replica of ReplicatedMergeTree table instead of performing a merge ourself (usually we prefer doing a merge ourself to save network traffic). This happens when we have not all source parts to perform a merge or when the data part is old enough. (count),0,clickhouse,,, +clickhouse.events.ReplicatedPartFetchesOfMerged.total,gauge,,,,Number of times we prefer to download already merged part from replica of ReplicatedMergeTree table instead of performing a merge ourself (usually we prefer doing a merge ourself to save network traffic). This happens when we have not all source parts to perform a merge or when the data part is old enough. (total),0,clickhouse,,, +clickhouse.events.ReplicatedPartMerges.count,count,,,,Number of times data parts of ReplicatedMergeTree tables were successfully merged. (count),0,clickhouse,,, +clickhouse.events.ReplicatedPartMerges.total,gauge,,,,Number of times data parts of ReplicatedMergeTree tables were successfully merged. (total),0,clickhouse,,, +clickhouse.events.ReplicatedPartMutations.count,count,,,,Number of times data parts of ReplicatedMergeTree tables were successfully mutated. (count),0,clickhouse,,, +clickhouse.events.ReplicatedPartMutations.total,gauge,,,,Number of times data parts of ReplicatedMergeTree tables were successfully mutated. (total),0,clickhouse,,, +clickhouse.events.RestorePartsSkippedBytes.count,count,,,,Total size of files skipped while restoring parts (count),0,clickhouse,,, +clickhouse.events.RestorePartsSkippedBytes.total,gauge,,,,Total size of files skipped while restoring parts (total),0,clickhouse,,, +clickhouse.events.RestorePartsSkippedFiles.count,count,,,,Number of files skipped while restoring parts (count),0,clickhouse,,, +clickhouse.events.RestorePartsSkippedFiles.total,gauge,,,,Number of files skipped while restoring parts (total),0,clickhouse,,, +clickhouse.events.RowsReadByMainReader.count,count,,,,Number of rows read from MergeTree tables by the main reader (after PREWHERE step). (count),0,clickhouse,,, +clickhouse.events.RowsReadByMainReader.total,gauge,,,,Number of rows read from MergeTree tables by the main reader (after PREWHERE step). (total),0,clickhouse,,, +clickhouse.events.RowsReadByPrewhereReaders.count,count,,,,Number of rows read from MergeTree tables (in total) by prewhere readers. (count),0,clickhouse,,, +clickhouse.events.RowsReadByPrewhereReaders.total,gauge,,,,Number of rows read from MergeTree tables (in total) by prewhere readers. (total),0,clickhouse,,, +clickhouse.events.S3AbortMultipartUpload.count,count,,,,Number of S3 API AbortMultipartUpload calls. (count),0,clickhouse,,, +clickhouse.events.S3AbortMultipartUpload.total,gauge,,,,Number of S3 API AbortMultipartUpload calls. (total),0,clickhouse,,, +clickhouse.events.S3Clients.count,count,,,,Number of created S3 clients. (count),0,clickhouse,,, +clickhouse.events.S3Clients.total,gauge,,,,Number of created S3 clients. (total),0,clickhouse,,, +clickhouse.events.S3CompleteMultipartUpload.count,count,,,,Number of S3 API CompleteMultipartUpload calls. (count),0,clickhouse,,, +clickhouse.events.S3CompleteMultipartUpload.total,gauge,,,,Number of S3 API CompleteMultipartUpload calls. (total),0,clickhouse,,, +clickhouse.events.S3CopyObject.count,count,,,,Number of S3 API CopyObject calls. (count),0,clickhouse,,, +clickhouse.events.S3CopyObject.total,gauge,,,,Number of S3 API CopyObject calls. (total),0,clickhouse,,, +clickhouse.events.S3CreateMultipartUpload.count,count,,,,Number of S3 API CreateMultipartUpload calls. (count),0,clickhouse,,, +clickhouse.events.S3CreateMultipartUpload.total,gauge,,,,Number of S3 API CreateMultipartUpload calls. (total),0,clickhouse,,, +clickhouse.events.S3DeleteObjects.count,count,,,,Number of S3 API DeleteObject(s) calls. (count),0,clickhouse,,, +clickhouse.events.S3DeleteObjects.total,gauge,,,,Number of S3 API DeleteObject(s) calls. (total),0,clickhouse,,, +clickhouse.events.S3GetObject.count,count,,,,Number of S3 API GetObject calls. (count),0,clickhouse,,, +clickhouse.events.S3GetObject.total,gauge,,,,Number of S3 API GetObject calls. (total),0,clickhouse,,, +clickhouse.events.S3GetObjectAttributes.count,count,,,,Number of S3 API GetObjectAttributes calls. (count),0,clickhouse,,, +clickhouse.events.S3GetObjectAttributes.total,gauge,,,,Number of S3 API GetObjectAttributes calls. (total),0,clickhouse,,, +clickhouse.events.S3GetRequestThrottlerCount.count,count,,,,Number of S3 GET and SELECT requests passed through throttler. (count),0,clickhouse,,, +clickhouse.events.S3GetRequestThrottlerCount.total,gauge,,,,Number of S3 GET and SELECT requests passed through throttler. (total),0,clickhouse,,, +clickhouse.events.S3GetRequestThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform S3 GET and SELECT request throttling.,0,clickhouse,,, +clickhouse.events.S3HeadObject.count,count,,,,Number of S3 API HeadObject calls. (count),0,clickhouse,,, +clickhouse.events.S3HeadObject.total,gauge,,,,Number of S3 API HeadObject calls. (total),0,clickhouse,,, +clickhouse.events.S3ListObjects.count,count,,,,Number of S3 API ListObjects calls. (count),0,clickhouse,,, +clickhouse.events.S3ListObjects.total,gauge,,,,Number of S3 API ListObjects calls. (total),0,clickhouse,,, +clickhouse.events.S3PutObject.count,count,,,,Number of S3 API PutObject calls. (count),0,clickhouse,,, +clickhouse.events.S3PutObject.total,gauge,,,,Number of S3 API PutObject calls. (total),0,clickhouse,,, +clickhouse.events.S3PutRequestThrottlerCount.count,count,,,,"Number of S3 PUT, COPY, POST and LIST requests passed through throttler. (count)",0,clickhouse,,, +clickhouse.events.S3PutRequestThrottlerCount.total,gauge,,,,"Number of S3 PUT, COPY, POST and LIST requests passed through throttler. (total)",0,clickhouse,,, +clickhouse.events.S3PutRequestThrottlerSleepMicroseconds,gauge,,microsecond,,"Total time a query was sleeping to conform S3 PUT, COPY, POST and LIST request throttling.",0,clickhouse,,, +clickhouse.events.S3QueueSetFileFailedMicroseconds,gauge,,microsecond,,Time spent to set file as failed,0,clickhouse,,, +clickhouse.events.S3QueueSetFileProcessedMicroseconds,gauge,,microsecond,,Time spent to set file as processed,0,clickhouse,,, +clickhouse.events.S3QueueSetFileProcessingMicroseconds,gauge,,microsecond,,Time spent to set file as processing,0,clickhouse,,, +clickhouse.events.S3ReadMicroseconds,gauge,,microsecond,,Time of GET and HEAD requests to S3 storage.,0,clickhouse,,, +clickhouse.events.S3ReadRequestAttempts.count,count,,,,"Number of attempts for GET and HEAD requests, including the initial try and any retries, but excluding retries performed internally by the S3 retry strategy (count)",0,clickhouse,,, +clickhouse.events.S3ReadRequestAttempts.total,gauge,,,,"Number of attempts for GET and HEAD requests, including the initial try and any retries, but excluding retries performed internally by the S3 retry strategy (total)",0,clickhouse,,, +clickhouse.events.S3ReadRequestRetryableErrors.count,count,,,,"Number of retryable errors for GET and HEAD requests, excluding retries performed internally by the S3 retry strategy (count)",0,clickhouse,,, +clickhouse.events.S3ReadRequestRetryableErrors.total,gauge,,,,"Number of retryable errors for GET and HEAD requests, excluding retries performed internally by the S3 retry strategy (total)",0,clickhouse,,, +clickhouse.events.S3ReadRequestsCount.count,count,,,,Number of GET and HEAD requests to S3 storage. (count),0,clickhouse,,, +clickhouse.events.S3ReadRequestsCount.total,gauge,,,,Number of GET and HEAD requests to S3 storage. (total),0,clickhouse,,, +clickhouse.events.S3ReadRequestsErrors.count,count,,,,Number of non-throttling errors in GET and HEAD requests to S3 storage. (count),0,clickhouse,,, +clickhouse.events.S3ReadRequestsErrors.total,gauge,,,,Number of non-throttling errors in GET and HEAD requests to S3 storage. (total),0,clickhouse,,, +clickhouse.events.S3ReadRequestsRedirects.count,count,,,,Number of redirects in GET and HEAD requests to S3 storage. (count),0,clickhouse,,, +clickhouse.events.S3ReadRequestsRedirects.total,gauge,,,,Number of redirects in GET and HEAD requests to S3 storage. (total),0,clickhouse,,, +clickhouse.events.S3ReadRequestsThrottling.count,count,,,,Number of 429 and 503 errors in GET and HEAD requests to S3 storage. (count),0,clickhouse,,, +clickhouse.events.S3ReadRequestsThrottling.total,gauge,,,,Number of 429 and 503 errors in GET and HEAD requests to S3 storage. (total),0,clickhouse,,, +clickhouse.events.S3UploadPart.count,count,,,,Number of S3 API UploadPart calls. (count),0,clickhouse,,, +clickhouse.events.S3UploadPart.total,gauge,,,,Number of S3 API UploadPart calls. (total),0,clickhouse,,, +clickhouse.events.S3UploadPartCopy.count,count,,,,Number of S3 API UploadPartCopy calls. (count),0,clickhouse,,, +clickhouse.events.S3UploadPartCopy.total,gauge,,,,Number of S3 API UploadPartCopy calls. (total),0,clickhouse,,, +clickhouse.events.S3WriteMicroseconds,gauge,,microsecond,,"Time of POST, DELETE, PUT and PATCH requests to S3 storage.",0,clickhouse,,, +clickhouse.events.S3WriteRequestAttempts.count,count,,,,"Number of attempts for POST, DELETE, PUT and PATCH requests, including the initial try and any retries, but excluding retries performed internally by the retry strategy (count)",0,clickhouse,,, +clickhouse.events.S3WriteRequestAttempts.total,gauge,,,,"Number of attempts for POST, DELETE, PUT and PATCH requests, including the initial try and any retries, but excluding retries performed internally by the retry strategy (total)",0,clickhouse,,, +clickhouse.events.S3WriteRequestRetryableErrors.count,count,,,,"Number of retryable errors for POST, DELETE, PUT and PATCH requests, excluding retries performed internally by the retry strategy (count)",0,clickhouse,,, +clickhouse.events.S3WriteRequestRetryableErrors.total,gauge,,,,"Number of retryable errors for POST, DELETE, PUT and PATCH requests, excluding retries performed internally by the retry strategy (total)",0,clickhouse,,, +clickhouse.events.S3WriteRequestsCount.count,count,,,,"Number of POST, DELETE, PUT and PATCH requests to S3 storage. (count)",0,clickhouse,,, +clickhouse.events.S3WriteRequestsCount.total,gauge,,,,"Number of POST, DELETE, PUT and PATCH requests to S3 storage. (total)",0,clickhouse,,, +clickhouse.events.S3WriteRequestsErrors.count,count,,,,"Number of non-throttling errors in POST, DELETE, PUT and PATCH requests to S3 storage. (count)",0,clickhouse,,, +clickhouse.events.S3WriteRequestsErrors.total,gauge,,,,"Number of non-throttling errors in POST, DELETE, PUT and PATCH requests to S3 storage. (total)",0,clickhouse,,, +clickhouse.events.S3WriteRequestsRedirects.count,count,,,,"Number of redirects in POST, DELETE, PUT and PATCH requests to S3 storage. (count)",0,clickhouse,,, +clickhouse.events.S3WriteRequestsRedirects.total,gauge,,,,"Number of redirects in POST, DELETE, PUT and PATCH requests to S3 storage. (total)",0,clickhouse,,, +clickhouse.events.S3WriteRequestsThrottling.count,count,,,,"Number of 429 and 503 errors in POST, DELETE, PUT and PATCH requests to S3 storage. (count)",0,clickhouse,,, +clickhouse.events.S3WriteRequestsThrottling.total,gauge,,,,"Number of 429 and 503 errors in POST, DELETE, PUT and PATCH requests to S3 storage. (total)",0,clickhouse,,, +clickhouse.events.ScalarSubqueriesCacheMiss.count,count,,,,Number of times a read from a scalar subquery was not cached and had to be calculated completely (count),0,clickhouse,,, +clickhouse.events.ScalarSubqueriesCacheMiss.total,gauge,,,,Number of times a read from a scalar subquery was not cached and had to be calculated completely (total),0,clickhouse,,, +clickhouse.events.ScalarSubqueriesGlobalCacheHit.count,count,,,,Number of times a read from a scalar subquery was done using the global cache (count),0,clickhouse,,, +clickhouse.events.ScalarSubqueriesGlobalCacheHit.total,gauge,,,,Number of times a read from a scalar subquery was done using the global cache (total),0,clickhouse,,, +clickhouse.events.ScalarSubqueriesLocalCacheHit.count,count,,,,Number of times a read from a scalar subquery was done using the local cache (count),0,clickhouse,,, +clickhouse.events.ScalarSubqueriesLocalCacheHit.total,gauge,,,,Number of times a read from a scalar subquery was done using the local cache (total),0,clickhouse,,, +clickhouse.events.SchedulerIOReadBytes.count,count,,,,Bytes passed through scheduler for IO reads. (count),0,clickhouse,,, +clickhouse.events.SchedulerIOReadBytes.total,gauge,,,,Bytes passed through scheduler for IO reads. (total),0,clickhouse,,, +clickhouse.events.SchedulerIOReadRequests.count,count,,,,Resource requests passed through scheduler for IO reads. (count),0,clickhouse,,, +clickhouse.events.SchedulerIOReadRequests.total,gauge,,,,Resource requests passed through scheduler for IO reads. (total),0,clickhouse,,, +clickhouse.events.SchedulerIOReadWaitMicroseconds,gauge,,microsecond,,Total time a query was waiting on resource requests for IO reads.,0,clickhouse,,, +clickhouse.events.SchedulerIOWriteBytes.count,count,,,,Bytes passed through scheduler for IO writes. (count),0,clickhouse,,, +clickhouse.events.SchedulerIOWriteBytes.total,gauge,,,,Bytes passed through scheduler for IO writes. (total),0,clickhouse,,, +clickhouse.events.SchedulerIOWriteRequests.count,count,,,,Resource requests passed through scheduler for IO writes. (count),0,clickhouse,,, +clickhouse.events.SchedulerIOWriteRequests.total,gauge,,,,Resource requests passed through scheduler for IO writes. (total),0,clickhouse,,, +clickhouse.events.SchedulerIOWriteWaitMicroseconds,gauge,,microsecond,,Total time a query was waiting on resource requests for IO writes.,0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheEvictions.count,count,,,,Number of times a schema from cache was evicted due to overflow (count),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheEvictions.total,gauge,,,,Number of times a schema from cache was evicted due to overflow (total),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheHits.count,count,,,,Number of times the requested source is found in schema cache (count),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheHits.total,gauge,,,,Number of times the requested source is found in schema cache (total),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheInvalidations.count,count,,,,Number of times a schema in cache became invalid due to changes in data (count),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheInvalidations.total,gauge,,,,Number of times a schema in cache became invalid due to changes in data (total),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheMisses.count,count,,,,Number of times the requested source is not in schema cache (count),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheMisses.total,gauge,,,,Number of times the requested source is not in schema cache (total),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheNumRowsHits.count,count,,,,Number of times the number of rows is found in schema cache during count from files (count),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheNumRowsHits.total,gauge,,,,Number of times the number of rows is found in schema cache during count from files (total),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheNumRowsMisses.count,count,,,,Number of times the requested source is in cache but the number of rows is not in cache while count from files (count),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheNumRowsMisses.total,gauge,,,,Number of times the requested source is in cache but the number of rows is not in cache while count from files (total),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheSchemaHits.count,count,,,,Number of times the schema is found in schema cache during schema inference (count),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheSchemaHits.total,gauge,,,,Number of times the schema is found in schema cache during schema inference (total),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheSchemaMisses.count,count,,,,Number of times the requested source is in cache but the schema is not in cache during schema inference (count),0,clickhouse,,, +clickhouse.events.SchemaInferenceCacheSchemaMisses.total,gauge,,,,Number of times the requested source is in cache but the schema is not in cache during schema inference (total),0,clickhouse,,, +clickhouse.events.Seek.count,count,,,,Number of times the 'lseek' function was called. (count),0,clickhouse,,, +clickhouse.events.Seek.total,gauge,,,,Number of times the 'lseek' function was called. (total),0,clickhouse,,, +clickhouse.events.SelectQueriesWithPrimaryKeyUsage.count,count,,,,Count SELECT queries which use the primary key to evaluate the WHERE condition (count),0,clickhouse,,, +clickhouse.events.SelectQueriesWithPrimaryKeyUsage.total,gauge,,,,Count SELECT queries which use the primary key to evaluate the WHERE condition (total),0,clickhouse,,, +clickhouse.events.SelectQueriesWithSubqueries.count,count,,,,Count SELECT queries with all subqueries (count),0,clickhouse,,, +clickhouse.events.SelectQueriesWithSubqueries.total,gauge,,,,Count SELECT queries with all subqueries (total),0,clickhouse,,, +clickhouse.events.SelectQuery.count,count,,,,"Same as Query, but only for SELECT queries. (count)",0,clickhouse,,, +clickhouse.events.SelectQuery.total,gauge,,,,"Same as Query, but only for SELECT queries. (total)",0,clickhouse,,, +clickhouse.events.SelectQueryTimeMicroseconds,gauge,,microsecond,,Total time of SELECT queries.,0,clickhouse,,, +clickhouse.events.SelectedBytes.count,count,,,,Number of bytes (uncompressed; for columns as they stored in memory) SELECTed from all tables. (count),0,clickhouse,,, +clickhouse.events.SelectedBytes.total,gauge,,,,Number of bytes (uncompressed; for columns as they stored in memory) SELECTed from all tables. (total),0,clickhouse,,, +clickhouse.events.SelectedMarks.count,count,,,,Number of marks (index granules) selected to read from a MergeTree table. (count),0,clickhouse,,, +clickhouse.events.SelectedMarks.total,gauge,,,,Number of marks (index granules) selected to read from a MergeTree table. (total),0,clickhouse,,, +clickhouse.events.SelectedMarksTotal.count,count,,,,Number of total marks (index granules) before selecting which ones to read from a MergeTree table. (count),0,clickhouse,,, +clickhouse.events.SelectedMarksTotal.total,gauge,,,,Number of total marks (index granules) before selecting which ones to read from a MergeTree table. (total),0,clickhouse,,, +clickhouse.events.SelectedParts.count,count,,,,Number of data parts selected to read from a MergeTree table. (count),0,clickhouse,,, +clickhouse.events.SelectedParts.total,gauge,,,,Number of data parts selected to read from a MergeTree table. (total),0,clickhouse,,, +clickhouse.events.SelectedPartsTotal.count,count,,,,Number of total data parts before selecting which ones to read from a MergeTree table. (count),0,clickhouse,,, +clickhouse.events.SelectedPartsTotal.total,gauge,,,,Number of total data parts before selecting which ones to read from a MergeTree table. (total),0,clickhouse,,, +clickhouse.events.SelectedRanges.count,count,,,,Number of (non-adjacent) ranges in all data parts selected to read from a MergeTree table. (count),0,clickhouse,,, +clickhouse.events.SelectedRanges.total,gauge,,,,Number of (non-adjacent) ranges in all data parts selected to read from a MergeTree table. (total),0,clickhouse,,, +clickhouse.events.SelectedRows.count,count,,,,Number of rows SELECTed from all tables. (count),0,clickhouse,,, +clickhouse.events.SelectedRows.total,gauge,,,,Number of rows SELECTed from all tables. (total),0,clickhouse,,, +clickhouse.events.ServerStartupMilliseconds,gauge,,millisecond,,Time elapsed from starting server to listening to sockets in milliseconds,0,clickhouse,,, +clickhouse.events.SharedDatabaseCatalogFailedToApplyState.count,count,,,,Number of failures to apply new state in SharedDatabaseCatalog (count),0,clickhouse,,, +clickhouse.events.SharedDatabaseCatalogFailedToApplyState.total,gauge,,,,Number of failures to apply new state in SharedDatabaseCatalog (total),0,clickhouse,,, +clickhouse.events.SharedDatabaseCatalogStateApplicationMicroseconds,gauge,,microsecond,,Total time spend on application of new state in SharedDatabaseCatalog,0,clickhouse,,, +clickhouse.events.SharedMergeTreeCondemnedPartsKillRequest.count,count,,,,How many ZooKeeper requests were used to remove condemned parts (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeCondemnedPartsKillRequest.total,gauge,,,,How many ZooKeeper requests were used to remove condemned parts (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeCondemnedPartsLockConfict.count,count,,,,How many times we failed to acquite lock because of conflict (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeCondemnedPartsLockConfict.total,gauge,,,,How many times we failed to acquite lock because of conflict (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeCondemnedPartsRemoved.count,count,,,,How many condemned parts were removed (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeCondemnedPartsRemoved.total,gauge,,,,How many condemned parts were removed (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeDataPartsFetchAttempt.count,count,,,,How many times we tried to fetch data parts (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeDataPartsFetchAttempt.total,gauge,,,,How many times we tried to fetch data parts (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeDataPartsFetchFromPeer.count,count,,,,How many times we fetch data parts from peer (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeDataPartsFetchFromPeer.total,gauge,,,,How many times we fetch data parts from peer (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeDataPartsFetchFromPeerMicroseconds.count,count,,,,Data parts fetch from peer microseconds (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeDataPartsFetchFromPeerMicroseconds.total,gauge,,,,Data parts fetch from peer microseconds (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeDataPartsFetchFromS3.count,count,,,,How many times we fetch data parts from S3 (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeDataPartsFetchFromS3.total,gauge,,,,How many times we fetch data parts from S3 (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeGetPartsBatchToLoadMicroseconds.count,count,,,,Time of getPartsBatchToLoad in scheduleDataProcessingJob (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeGetPartsBatchToLoadMicroseconds.total,gauge,,,,Time of getPartsBatchToLoad in scheduleDataProcessingJob (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleBlockingParts.count,count,,,,How many blocking parts to handle in scheduleDataProcessingJob (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleBlockingParts.total,gauge,,,,How many blocking parts to handle in scheduleDataProcessingJob (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleBlockingPartsMicroseconds.count,count,,,,Time of handling blocking parts in scheduleDataProcessingJob (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleBlockingPartsMicroseconds.total,gauge,,,,Time of handling blocking parts in scheduleDataProcessingJob (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleFetchPartsMicroseconds.count,count,,,,Time of handling fetched parts in scheduleDataProcessingJob (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleFetchPartsMicroseconds.total,gauge,,,,Time of handling fetched parts in scheduleDataProcessingJob (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleOutdatedParts.count,count,,,,How many outdated parts to handle in scheduleDataProcessingJob (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleOutdatedParts.total,gauge,,,,How many outdated parts to handle in scheduleDataProcessingJob (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleOutdatedPartsMicroseconds.count,count,,,,Time of handling outdated parts in scheduleDataProcessingJob (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeHandleOutdatedPartsMicroseconds.total,gauge,,,,Time of handling outdated parts in scheduleDataProcessingJob (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeLoadChecksumAndIndexesMicroseconds.count,count,,,,Time of loadColumnsChecksumsIndexes only for SharedMergeTree (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeLoadChecksumAndIndexesMicroseconds.total,gauge,,,,Time of loadColumnsChecksumsIndexes only for SharedMergeTree (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeMutationAssignmentAttempt.count,count,,,,How many times we tried to assign merge or mutation (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeMutationAssignmentAttempt.total,gauge,,,,How many times we tried to assign merge or mutation (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithConflict.count,count,,,,How many times we tried to assign merge or mutation and failed because of conflict in Keeper (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithConflict.total,gauge,,,,How many times we tried to assign merge or mutation and failed because of conflict in Keeper (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo.count,count,,,,How many times we tried to assign merge or mutation and failed because nothing to merge (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo.total,gauge,,,,How many times we tried to assign merge or mutation and failed because nothing to merge (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeMutationAssignmentSuccessful.count,count,,,,How many times we tried to assign merge or mutation (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeMutationAssignmentSuccessful.total,gauge,,,,How many times we tried to assign merge or mutation (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergePartsMovedToCondemned.count,count,,,,How many parts moved to condemned directory (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergePartsMovedToCondemned.total,gauge,,,,How many parts moved to condemned directory (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergePartsMovedToOudated.count,count,,,,How many parts moved to oudated directory (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergePartsMovedToOudated.total,gauge,,,,How many parts moved to oudated directory (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeSelectingTaskMicroseconds.count,count,,,,Merge selecting task microseconds for SMT (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMergeSelectingTaskMicroseconds.total,gauge,,,,Merge selecting task microseconds for SMT (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMetadataCacheHintLoadedFromCache.count,count,,,,Number of times metadata cache hint was found without going to Keeper (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeMetadataCacheHintLoadedFromCache.total,gauge,,,,Number of times metadata cache hint was found without going to Keeper (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOptimizeAsync.count,count,,,,Asynchronous OPTIMIZE queries executed (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOptimizeAsync.total,gauge,,,,Asynchronous OPTIMIZE queries executed (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOptimizeSync.count,count,,,,Synchronous OPTIMIZE queries executed (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOptimizeSync.total,gauge,,,,Synchronous OPTIMIZE queries executed (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationInvocations.count,count,,,,How many invocations were made to confirm outdated parts (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationInvocations.total,gauge,,,,How many invocations were made to confirm outdated parts (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationRequest.count,count,,,,How many ZooKeeper requests were used to config outdated parts (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationRequest.total,gauge,,,,How many ZooKeeper requests were used to config outdated parts (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOutdatedPartsHTTPRequest.count,count,,,,How many HTTP requests were send to confirm outdated parts (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOutdatedPartsHTTPRequest.total,gauge,,,,How many HTTP requests were send to confirm outdated parts (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOutdatedPartsHTTPResponse.count,count,,,,How many HTTP responses were send to confirm outdated parts (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeOutdatedPartsHTTPResponse.total,gauge,,,,How many HTTP responses were send to confirm outdated parts (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeScheduleDataProcessingJob.count,count,,,,How many times scheduleDataProcessingJob called/ (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeScheduleDataProcessingJob.total,gauge,,,,How many times scheduleDataProcessingJob called/ (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeScheduleDataProcessingJobMicroseconds.count,count,,,,scheduleDataProcessingJob execute time (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeScheduleDataProcessingJobMicroseconds.total,gauge,,,,scheduleDataProcessingJob execute time (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeScheduleDataProcessingJobNothingToScheduled.count,count,,,,How many times scheduleDataProcessingJob called but nothing to do (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeScheduleDataProcessingJobNothingToScheduled.total,gauge,,,,How many times scheduleDataProcessingJob called but nothing to do (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds.count,count,,,,Time of tryUpdateDiskMetadataCacheForPart in scheduleDataProcessingJob (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds.total,gauge,,,,Time of tryUpdateDiskMetadataCacheForPart in scheduleDataProcessingJob (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdateMicroseconds,gauge,,microsecond,,Virtual parts update microseconds,0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdates.count,count,,,,Virtual parts update count (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdates.total,gauge,,,,Virtual parts update count (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesByLeader.count,count,,,,Virtual parts updates by leader (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesByLeader.total,gauge,,,,Virtual parts updates by leader (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus.count,count,,,,Virtual parts updates from non-default background job (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus.total,gauge,,,,Virtual parts updates from non-default background job (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromPeer.count,count,,,,Virtual parts updates count from peer (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromPeer.total,gauge,,,,Virtual parts updates count from peer (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds,gauge,,microsecond,,Virtual parts updates from peer microseconds,0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeper.count,count,,,,Virtual parts updates count from ZooKeeper (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeper.total,gauge,,,,Virtual parts updates count from ZooKeeper (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds,gauge,,microsecond,,Virtual parts updates from ZooKeeper microseconds,0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection.count,count,,,,Virtual parts updates leader election failed (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection.total,gauge,,,,Virtual parts updates leader election failed (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection.count,count,,,,Virtual parts updates leader election successful (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection.total,gauge,,,,Virtual parts updates leader election successful (total),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesPeerNotFound.count,count,,,,Virtual updates from peer failed because no one found (count),0,clickhouse,,, +clickhouse.events.SharedMergeTreeVirtualPartsUpdatesPeerNotFound.total,gauge,,,,Virtual updates from peer failed because no one found (total),0,clickhouse,,, +clickhouse.events.SleepFunctionCalls.count,count,,,,"Number of times a sleep function (sleep, sleepEachRow) has been called. (count)",0,clickhouse,,, +clickhouse.events.SleepFunctionCalls.total,gauge,,,,"Number of times a sleep function (sleep, sleepEachRow) has been called. (total)",0,clickhouse,,, +clickhouse.events.SleepFunctionElapsedMicroseconds,gauge,,microsecond,,"Time spent sleeping in a sleep function (sleep, sleepEachRow).",0,clickhouse,,, +clickhouse.events.SleepFunctionMicroseconds,gauge,,microsecond,,"Time set to sleep in a sleep function (sleep, sleepEachRow).",0,clickhouse,,, +clickhouse.events.SlowRead.count,count,,,,Number of reads from a file that were slow. This indicate system overload. Thresholds are controlled by read_backoff_* settings. (count),0,clickhouse,,, +clickhouse.events.SlowRead.total,gauge,,,,Number of reads from a file that were slow. This indicate system overload. Thresholds are controlled by read_backoff_* settings. (total),0,clickhouse,,, +clickhouse.events.SoftPageFaults.count,count,,,,"The number of soft page faults in query execution threads. Soft page fault usually means a miss in the memory allocator cache, which requires a new memory mapping from the OS and subsequent allocation of a page of physical memory. (count)",0,clickhouse,,, +clickhouse.events.SoftPageFaults.total,gauge,,,,"The number of soft page faults in query execution threads. Soft page fault usually means a miss in the memory allocator cache, which requires a new memory mapping from the OS and subsequent allocation of a page of physical memory. (total)",0,clickhouse,,, +clickhouse.events.StorageBufferErrorOnFlush.count,count,,,,Number of times a buffer in the 'Buffer' table has not been able to flush due to error writing in the destination table. (count),0,clickhouse,,, +clickhouse.events.StorageBufferErrorOnFlush.total,gauge,,,,Number of times a buffer in the 'Buffer' table has not been able to flush due to error writing in the destination table. (total),0,clickhouse,,, +clickhouse.events.StorageBufferFlush.count,count,,,,Number of times a buffer in a 'Buffer' table was flushed. (count),0,clickhouse,,, +clickhouse.events.StorageBufferFlush.total,gauge,,,,Number of times a buffer in a 'Buffer' table was flushed. (total),0,clickhouse,,, +clickhouse.events.StorageBufferLayerLockReadersWaitMilliseconds,gauge,,millisecond,,Time for waiting for Buffer layer during reading.,0,clickhouse,,, +clickhouse.events.StorageBufferLayerLockWritersWaitMilliseconds,gauge,,millisecond,,Time for waiting free Buffer layer to write to (can be used to tune Buffer layers).,0,clickhouse,,, +clickhouse.events.StorageBufferPassedAllMinThresholds.count,count,,,,Number of times a criteria on min thresholds has been reached to flush a buffer in a 'Buffer' table. (count),0,clickhouse,,, +clickhouse.events.StorageBufferPassedAllMinThresholds.total,gauge,,,,Number of times a criteria on min thresholds has been reached to flush a buffer in a 'Buffer' table. (total),0,clickhouse,,, +clickhouse.events.StorageBufferPassedBytesFlushThreshold.count,count,,,,"Number of times background-only flush threshold on bytes has been reached to flush a buffer in a 'Buffer' table. This is expert-only metric. If you read this and you are not an expert, stop reading. (count)",0,clickhouse,,, +clickhouse.events.StorageBufferPassedBytesFlushThreshold.total,gauge,,,,"Number of times background-only flush threshold on bytes has been reached to flush a buffer in a 'Buffer' table. This is expert-only metric. If you read this and you are not an expert, stop reading. (total)",0,clickhouse,,, +clickhouse.events.StorageBufferPassedBytesMaxThreshold.count,count,,,,Number of times a criteria on max bytes threshold has been reached to flush a buffer in a 'Buffer' table. (count),0,clickhouse,,, +clickhouse.events.StorageBufferPassedBytesMaxThreshold.total,gauge,,,,Number of times a criteria on max bytes threshold has been reached to flush a buffer in a 'Buffer' table. (total),0,clickhouse,,, +clickhouse.events.StorageBufferPassedRowsFlushThreshold.count,count,,,,"Number of times background-only flush threshold on rows has been reached to flush a buffer in a 'Buffer' table. This is expert-only metric. If you read this and you are not an expert, stop reading. (count)",0,clickhouse,,, +clickhouse.events.StorageBufferPassedRowsFlushThreshold.total,gauge,,,,"Number of times background-only flush threshold on rows has been reached to flush a buffer in a 'Buffer' table. This is expert-only metric. If you read this and you are not an expert, stop reading. (total)",0,clickhouse,,, +clickhouse.events.StorageBufferPassedRowsMaxThreshold.count,count,,,,Number of times a criteria on max rows threshold has been reached to flush a buffer in a 'Buffer' table. (count),0,clickhouse,,, +clickhouse.events.StorageBufferPassedRowsMaxThreshold.total,gauge,,,,Number of times a criteria on max rows threshold has been reached to flush a buffer in a 'Buffer' table. (total),0,clickhouse,,, +clickhouse.events.StorageBufferPassedTimeFlushThreshold.count,count,,,,"Number of times background-only flush threshold on time has been reached to flush a buffer in a 'Buffer' table. This is expert-only metric. If you read this and you are not an expert, stop reading. (count)",0,clickhouse,,, +clickhouse.events.StorageBufferPassedTimeFlushThreshold.total,gauge,,,,"Number of times background-only flush threshold on time has been reached to flush a buffer in a 'Buffer' table. This is expert-only metric. If you read this and you are not an expert, stop reading. (total)",0,clickhouse,,, +clickhouse.events.StorageBufferPassedTimeMaxThreshold.count,count,,,,Number of times a criteria on max time threshold has been reached to flush a buffer in a 'Buffer' table. (count),0,clickhouse,,, +clickhouse.events.StorageBufferPassedTimeMaxThreshold.total,gauge,,,,Number of times a criteria on max time threshold has been reached to flush a buffer in a 'Buffer' table. (total),0,clickhouse,,, +clickhouse.events.StorageConnectionsCreated.count,count,,,,Number of created connections for storages (count),0,clickhouse,,, +clickhouse.events.StorageConnectionsCreated.total,gauge,,,,Number of created connections for storages (total),0,clickhouse,,, +clickhouse.events.StorageConnectionsElapsedMicroseconds,gauge,,microsecond,,Total time spend on creating connections for storages,0,clickhouse,,, +clickhouse.events.StorageConnectionsErrors.count,count,,,,Number of cases when creation of a connection for storage is failed (count),0,clickhouse,,, +clickhouse.events.StorageConnectionsErrors.total,gauge,,,,Number of cases when creation of a connection for storage is failed (total),0,clickhouse,,, +clickhouse.events.StorageConnectionsExpired.count,count,,,,Number of expired connections for storages (count),0,clickhouse,,, +clickhouse.events.StorageConnectionsExpired.total,gauge,,,,Number of expired connections for storages (total),0,clickhouse,,, +clickhouse.events.StorageConnectionsPreserved.count,count,,,,Number of preserved connections for storages (count),0,clickhouse,,, +clickhouse.events.StorageConnectionsPreserved.total,gauge,,,,Number of preserved connections for storages (total),0,clickhouse,,, +clickhouse.events.StorageConnectionsReset.count,count,,,,Number of reset connections for storages (count),0,clickhouse,,, +clickhouse.events.StorageConnectionsReset.total,gauge,,,,Number of reset connections for storages (total),0,clickhouse,,, +clickhouse.events.StorageConnectionsReused.count,count,,,,Number of reused connections for storages (count),0,clickhouse,,, +clickhouse.events.StorageConnectionsReused.total,gauge,,,,Number of reused connections for storages (total),0,clickhouse,,, +clickhouse.events.SummingSortedMilliseconds,gauge,,millisecond,,Total time spent while summing sorted columns,0,clickhouse,,, +clickhouse.events.SuspendSendingQueryToShard.count,count,,,,Total count when sending query to shard was suspended when async_query_sending_for_remote is enabled. (count),0,clickhouse,,, +clickhouse.events.SuspendSendingQueryToShard.total,gauge,,,,Total count when sending query to shard was suspended when async_query_sending_for_remote is enabled. (total),0,clickhouse,,, +clickhouse.events.SynchronousReadWaitMicroseconds,gauge,,microsecond,,Time spent in waiting for synchronous reads in asynchronous local read.,0,clickhouse,,, +clickhouse.events.SynchronousRemoteReadWaitMicroseconds,gauge,,microsecond,,Time spent in waiting for synchronous remote reads.,0,clickhouse,,, +clickhouse.events.SystemLogErrorOnFlush.count,count,,,,Number of times any of the system logs have failed to flush to the corresponding system table. Attempts to flush are repeated. (count),0,clickhouse,,, +clickhouse.events.SystemLogErrorOnFlush.total,gauge,,,,Number of times any of the system logs have failed to flush to the corresponding system table. Attempts to flush are repeated. (total),0,clickhouse,,, +clickhouse.events.SystemTimeMicroseconds,gauge,,microsecond,,"Total time spent in processing (queries and other tasks) threads executing CPU instructions in OS kernel mode. This is time spent in syscalls, excluding waiting time during blocking syscalls.",0,clickhouse,,, +clickhouse.events.TableFunctionExecute.count,count,,,,Number of table function calls. (count),0,clickhouse,,, +clickhouse.events.TableFunctionExecute.total,gauge,,,,Number of table function calls. (total),0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheHit.count,count,,,,Number of times the read inside ThreadPoolReader was done from the page cache. (count),0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheHit.total,gauge,,,,Number of times the read inside ThreadPoolReader was done from the page cache. (total),0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheHitBytes.count,count,,,,Number of bytes read inside ThreadPoolReader when it was done from the page cache. (count),0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheHitBytes.total,gauge,,,,Number of bytes read inside ThreadPoolReader when it was done from the page cache. (total),0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheHitElapsedMicroseconds,gauge,,microsecond,,Time spent reading data from page cache in ThreadPoolReader.,0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheMiss.count,count,,,,Number of times the read inside ThreadPoolReader was not done from page cache and was hand off to thread pool. (count),0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheMiss.total,gauge,,,,Number of times the read inside ThreadPoolReader was not done from page cache and was hand off to thread pool. (total),0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheMissBytes.count,count,,,,Number of bytes read inside ThreadPoolReader when read was not done from page cache and was hand off to thread pool. (count),0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheMissBytes.total,gauge,,,,Number of bytes read inside ThreadPoolReader when read was not done from page cache and was hand off to thread pool. (total),0,clickhouse,,, +clickhouse.events.ThreadPoolReaderPageCacheMissElapsedMicroseconds,gauge,,microsecond,,Time spent reading data inside the asynchronous job in ThreadPoolReader - when read was not done from the page cache.,0,clickhouse,,, +clickhouse.events.ThreadpoolReaderPrepareMicroseconds,gauge,,microsecond,,Time spent on preparation (e.g. call to reader seek() method),0,clickhouse,,, +clickhouse.events.ThreadpoolReaderReadBytes.count,count,,,,Bytes read from a threadpool task in asynchronous reading (count),0,clickhouse,,, +clickhouse.events.ThreadpoolReaderReadBytes.total,gauge,,,,Bytes read from a threadpool task in asynchronous reading (total),0,clickhouse,,, +clickhouse.events.ThreadpoolReaderSubmit.count,count,,,,Bytes read from a threadpool task in asynchronous reading (count),0,clickhouse,,, +clickhouse.events.ThreadpoolReaderSubmit.total,gauge,,,,Bytes read from a threadpool task in asynchronous reading (total),0,clickhouse,,, +clickhouse.events.ThreadpoolReaderSubmitLookupInCacheMicroseconds,gauge,,microsecond,,How much time we spent checking if content is cached,0,clickhouse,,, +clickhouse.events.ThreadpoolReaderSubmitReadSynchronously.count,count,,,,How many times we haven't scheduled a task on the thread pool and read synchronously instead (count),0,clickhouse,,, +clickhouse.events.ThreadpoolReaderSubmitReadSynchronously.total,gauge,,,,How many times we haven't scheduled a task on the thread pool and read synchronously instead (total),0,clickhouse,,, +clickhouse.events.ThreadpoolReaderSubmitReadSynchronouslyBytes.count,count,,,,How many bytes were read synchronously (count),0,clickhouse,,, +clickhouse.events.ThreadpoolReaderSubmitReadSynchronouslyBytes.total,gauge,,,,How many bytes were read synchronously (total),0,clickhouse,,, +clickhouse.events.ThreadpoolReaderSubmitReadSynchronouslyMicroseconds,gauge,,microsecond,,How much time we spent reading synchronously,0,clickhouse,,, +clickhouse.events.ThreadpoolReaderTaskMicroseconds,gauge,,microsecond,,Time spent getting the data in asynchronous reading,0,clickhouse,,, +clickhouse.events.ThrottlerSleepMicroseconds,gauge,,microsecond,,Total time a query was sleeping to conform all throttling settings.,0,clickhouse,,, +clickhouse.events.TinyS3Clients.count,count,,,,Number of S3 clients copies which reuse an existing auth provider from another client. (count),0,clickhouse,,, +clickhouse.events.TinyS3Clients.total,gauge,,,,Number of S3 clients copies which reuse an existing auth provider from another client. (total),0,clickhouse,,, +clickhouse.events.USearchAddComputedDistances.count,count,,,,Number of times distance was computed when adding vectors to usearch indexes. (count),0,clickhouse,,, +clickhouse.events.USearchAddComputedDistances.total,gauge,,,,Number of times distance was computed when adding vectors to usearch indexes. (total),0,clickhouse,,, +clickhouse.events.USearchAddCount.count,count,,,,Number of vectors added to usearch indexes. (count),0,clickhouse,,, +clickhouse.events.USearchAddCount.total,gauge,,,,Number of vectors added to usearch indexes. (total),0,clickhouse,,, +clickhouse.events.USearchAddVisitedMembers.count,count,,,,Number of nodes visited when adding vectors to usearch indexes. (count),0,clickhouse,,, +clickhouse.events.USearchAddVisitedMembers.total,gauge,,,,Number of nodes visited when adding vectors to usearch indexes. (total),0,clickhouse,,, +clickhouse.events.USearchSearchComputedDistances.count,count,,,,Number of times distance was computed when searching usearch indexes. (count),0,clickhouse,,, +clickhouse.events.USearchSearchComputedDistances.total,gauge,,,,Number of times distance was computed when searching usearch indexes. (total),0,clickhouse,,, +clickhouse.events.USearchSearchCount.count,count,,,,Number of search operations performed in usearch indexes. (count),0,clickhouse,,, +clickhouse.events.USearchSearchCount.total,gauge,,,,Number of search operations performed in usearch indexes. (total),0,clickhouse,,, +clickhouse.events.USearchSearchVisitedMembers.count,count,,,,Number of nodes visited when searching in usearch indexes. (count),0,clickhouse,,, +clickhouse.events.USearchSearchVisitedMembers.total,gauge,,,,Number of nodes visited when searching in usearch indexes. (total),0,clickhouse,,, +clickhouse.events.UncompressedCacheHits.count,count,,,,Number of times a block of data has been found in the uncompressed cache (and decompression was avoided). (count),0,clickhouse,,, +clickhouse.events.UncompressedCacheHits.total,gauge,,,,Number of times a block of data has been found in the uncompressed cache (and decompression was avoided). (total),0,clickhouse,,, +clickhouse.events.UncompressedCacheMisses.count,count,,,,Number of times a block of data has not been found in the uncompressed cache (and required decompression). (count),0,clickhouse,,, +clickhouse.events.UncompressedCacheMisses.total,gauge,,,,Number of times a block of data has not been found in the uncompressed cache (and required decompression). (total),0,clickhouse,,, +clickhouse.events.UncompressedCacheWeightLost.count,count,,,,Number of bytes evicted from the uncompressed cache. (count),0,clickhouse,,, +clickhouse.events.UncompressedCacheWeightLost.total,gauge,,,,Number of bytes evicted from the uncompressed cache. (total),0,clickhouse,,, +clickhouse.events.UserTimeMicroseconds,gauge,,microsecond,,"Total time spent in processing (queries and other tasks) threads executing CPU instructions in user mode. This includes time CPU pipeline was stalled due to main memory access, cache misses, branch mispredictions, hyper-threading, etc.",0,clickhouse,,, +clickhouse.events.VectorSimilarityIndexCacheHits.count,count,,,,Number of times an index granule has been found in the vector index cache. (count),0,clickhouse,,, +clickhouse.events.VectorSimilarityIndexCacheHits.total,gauge,,,,Number of times an index granule has been found in the vector index cache. (total),0,clickhouse,,, +clickhouse.events.VectorSimilarityIndexCacheMisses.count,count,,,,Number of times an index granule has not been found in the vector index cache and had to be read from disk. (count),0,clickhouse,,, +clickhouse.events.VectorSimilarityIndexCacheMisses.total,gauge,,,,Number of times an index granule has not been found in the vector index cache and had to be read from disk. (total),0,clickhouse,,, +clickhouse.events.VectorSimilarityIndexCacheWeightLost.count,count,,,,Approximate number of bytes evicted from the vector index cache. (count),0,clickhouse,,, +clickhouse.events.VectorSimilarityIndexCacheWeightLost.total,gauge,,,,Approximate number of bytes evicted from the vector index cache. (total),0,clickhouse,,, +clickhouse.events.VersionedCollapsingSortedMilliseconds,gauge,,millisecond,,Total time spent while version collapsing sorted columns,0,clickhouse,,, +clickhouse.events.WaitMarksLoadMicroseconds,gauge,,microsecond,,Time spent loading marks,0,clickhouse,,, +clickhouse.events.WaitPrefetchTaskMicroseconds,gauge,,microsecond,,Time spend waiting for prefetched reader,0,clickhouse,,, +clickhouse.events.WriteBufferFromFileDescriptorWrite.count,count,,,,Number of writes (write/pwrite) to a file descriptor. Does not include sockets. (count),0,clickhouse,,, +clickhouse.events.WriteBufferFromFileDescriptorWrite.total,gauge,,,,Number of writes (write/pwrite) to a file descriptor. Does not include sockets. (total),0,clickhouse,,, +clickhouse.events.WriteBufferFromFileDescriptorWriteBytes.count,count,,,,"Number of bytes written to file descriptors. If the file is compressed, this will show compressed data size. (count)",0,clickhouse,,, +clickhouse.events.WriteBufferFromFileDescriptorWriteBytes.total,gauge,,,,"Number of bytes written to file descriptors. If the file is compressed, this will show compressed data size. (total)",0,clickhouse,,, +clickhouse.events.WriteBufferFromFileDescriptorWriteFailed.count,count,,,,Number of times the write (write/pwrite) to a file descriptor have failed. (count),0,clickhouse,,, +clickhouse.events.WriteBufferFromFileDescriptorWriteFailed.total,gauge,,,,Number of times the write (write/pwrite) to a file descriptor have failed. (total),0,clickhouse,,, +clickhouse.events.WriteBufferFromHTTPBytes.count,count,,,,Total size of payload bytes received and sent by WriteBufferFromHTTP. Doesn't include HTTP headers. (count),0,clickhouse,,, +clickhouse.events.WriteBufferFromHTTPBytes.total,gauge,,,,Total size of payload bytes received and sent by WriteBufferFromHTTP. Doesn't include HTTP headers. (total),0,clickhouse,,, +clickhouse.events.WriteBufferFromHTTPRequestsSent.count,count,,,,Number of HTTP requests sent by WriteBufferFromHTTP (count),0,clickhouse,,, +clickhouse.events.WriteBufferFromHTTPRequestsSent.total,gauge,,,,Number of HTTP requests sent by WriteBufferFromHTTP (total),0,clickhouse,,, +clickhouse.events.WriteBufferFromS3Bytes.count,count,,,,Bytes written to S3. (count),0,clickhouse,,, +clickhouse.events.WriteBufferFromS3Bytes.total,gauge,,,,Bytes written to S3. (total),0,clickhouse,,, +clickhouse.events.WriteBufferFromS3Microseconds,gauge,,microsecond,,Time spent on writing to S3.,0,clickhouse,,, +clickhouse.events.WriteBufferFromS3RequestsErrors.count,count,,,,Number of exceptions while writing to S3. (count),0,clickhouse,,, +clickhouse.events.WriteBufferFromS3RequestsErrors.total,gauge,,,,Number of exceptions while writing to S3. (total),0,clickhouse,,, +clickhouse.events.WriteBufferFromS3WaitInflightLimitMicroseconds,gauge,,microsecond,,Time spent on waiting while some of the current requests are done when its number reached the limit defined by s3_max_inflight_parts_for_one_file.,0,clickhouse,,, +clickhouse.events.ZooKeeperBytesReceived.count,count,,,,Number of bytes received over network while communicating with ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperBytesReceived.total,gauge,,,,Number of bytes received over network while communicating with ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperBytesSent.count,count,,,,Number of bytes send over network while communicating with ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperBytesSent.total,gauge,,,,Number of bytes send over network while communicating with ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperCheck.count,count,,,,"Number of 'check' requests to ZooKeeper. Usually they don't make sense in isolation, only as part of a complex transaction. (count)",0,clickhouse,,, +clickhouse.events.ZooKeeperCheck.total,gauge,,,,"Number of 'check' requests to ZooKeeper. Usually they don't make sense in isolation, only as part of a complex transaction. (total)",0,clickhouse,,, +clickhouse.events.ZooKeeperClose.count,count,,,,Number of times connection with ZooKeeper has been closed voluntary. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperClose.total,gauge,,,,Number of times connection with ZooKeeper has been closed voluntary. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperCreate.count,count,,,,Number of 'create' requests to ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperCreate.total,gauge,,,,Number of 'create' requests to ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperExists.count,count,,,,Number of 'exists' requests to ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperExists.total,gauge,,,,Number of 'exists' requests to ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperGet.count,count,,,,Number of 'get' requests to ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperGet.total,gauge,,,,Number of 'get' requests to ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperGetACL.count,count,,,,Number of 'getACL' requests to ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperGetACL.total,gauge,,,,Number of 'getACL' requests to ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperHardwareExceptions.count,count,,,,Number of exceptions while working with ZooKeeper related to network (connection loss or similar). (count),0,clickhouse,,, +clickhouse.events.ZooKeeperHardwareExceptions.total,gauge,,,,Number of exceptions while working with ZooKeeper related to network (connection loss or similar). (total),0,clickhouse,,, +clickhouse.events.ZooKeeperInit.count,count,,,,Number of times connection with ZooKeeper has been established. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperInit.total,gauge,,,,Number of times connection with ZooKeeper has been established. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperList.count,count,,,,Number of 'list' (getChildren) requests to ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperList.total,gauge,,,,Number of 'list' (getChildren) requests to ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperMulti.count,count,,,,Number of 'multi' requests to ZooKeeper (compound transactions). (count),0,clickhouse,,, +clickhouse.events.ZooKeeperMulti.total,gauge,,,,Number of 'multi' requests to ZooKeeper (compound transactions). (total),0,clickhouse,,, +clickhouse.events.ZooKeeperMultiRead.count,count,,,,Number of read 'multi' requests to ZooKeeper (compound transactions). (count),0,clickhouse,,, +clickhouse.events.ZooKeeperMultiRead.total,gauge,,,,Number of read 'multi' requests to ZooKeeper (compound transactions). (total),0,clickhouse,,, +clickhouse.events.ZooKeeperMultiWrite.count,count,,,,Number of write 'multi' requests to ZooKeeper (compound transactions). (count),0,clickhouse,,, +clickhouse.events.ZooKeeperMultiWrite.total,gauge,,,,Number of write 'multi' requests to ZooKeeper (compound transactions). (total),0,clickhouse,,, +clickhouse.events.ZooKeeperOtherExceptions.count,count,,,,Number of exceptions while working with ZooKeeper other than ZooKeeperUserExceptions and ZooKeeperHardwareExceptions. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperOtherExceptions.total,gauge,,,,Number of exceptions while working with ZooKeeper other than ZooKeeperUserExceptions and ZooKeeperHardwareExceptions. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperReconfig.count,count,,,,Number of 'reconfig' requests to ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperReconfig.total,gauge,,,,Number of 'reconfig' requests to ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperRemove.count,count,,,,Number of 'remove' requests to ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperRemove.total,gauge,,,,Number of 'remove' requests to ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperSet.count,count,,,,Number of 'set' requests to ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperSet.total,gauge,,,,Number of 'set' requests to ZooKeeper. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperSync.count,count,,,,Number of 'sync' requests to ZooKeeper. These requests are rarely needed or usable. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperSync.total,gauge,,,,Number of 'sync' requests to ZooKeeper. These requests are rarely needed or usable. (total),0,clickhouse,,, +clickhouse.events.ZooKeeperTransactions.count,count,,,,"Number of ZooKeeper operations, which include both read and write operations as well as multi-transactions. (count)",0,clickhouse,,, +clickhouse.events.ZooKeeperTransactions.total,gauge,,,,"Number of ZooKeeper operations, which include both read and write operations as well as multi-transactions. (total)",0,clickhouse,,, +clickhouse.events.ZooKeeperUserExceptions.count,count,,,,"Number of exceptions while working with ZooKeeper related to the data (no node, bad version or similar). (count)",0,clickhouse,,, +clickhouse.events.ZooKeeperUserExceptions.total,gauge,,,,"Number of exceptions while working with ZooKeeper related to the data (no node, bad version or similar). (total)",0,clickhouse,,, +clickhouse.events.ZooKeeperWaitMicroseconds,gauge,,microsecond,,"Number of microseconds spent waiting for responses from ZooKeeper after creating a request, summed across all the requesting threads.",0,clickhouse,,, +clickhouse.events.ZooKeeperWatchResponse.count,count,,,,Number of times watch notification has been received from ZooKeeper. (count),0,clickhouse,,, +clickhouse.events.ZooKeeperWatchResponse.total,gauge,,,,Number of times watch notification has been received from ZooKeeper. (total),0,clickhouse,,, clickhouse.file.open.count,count,,file,,The number of files opened during the last interval.,0,clickhouse,,, clickhouse.file.open.read,gauge,,file,,The number of files open for reading,0,clickhouse,,, clickhouse.file.open.total,gauge,,file,,The total number of files opened.,0,clickhouse,,, @@ -427,10 +2370,6 @@ clickhouse.interface.http.received.bytes.count,count,,,,Number of bytes received clickhouse.interface.http.received.bytes.total,gauge,,,,Number of bytes received through HTTP interfaces,0,clickhouse,,, clickhouse.interface.http.sent.bytes.count,count,,,,Number of bytes sent through HTTP interfaces,0,clickhouse,,, clickhouse.interface.http.sent.bytes.total,gauge,,,,Number of bytes sent through HTTP interfaces,0,clickhouse,,, -clickhouse.interface.interserver.received.bytes.count,count,,,,Number of bytes received through interserver (replication) interfaces,0,clickhouse,,, -clickhouse.interface.interserver.received.bytes.total,gauge,,,,Number of bytes received through interserver (replication) interfaces,0,clickhouse,,, -clickhouse.interface.interserver.sent.bytes.count,count,,,,Number of bytes sent through interserver (replication) interfaces,0,clickhouse,,, -clickhouse.interface.interserver.sent.bytes.total,gauge,,,,Number of bytes sent through interserver (replication) interfaces,0,clickhouse,,, clickhouse.interface.mysql.received.bytes.count,count,,,,Number of bytes received through MySQL interfaces,0,clickhouse,,, clickhouse.interface.mysql.received.bytes.total,gauge,,,,Number of bytes received through MySQL interfaces,0,clickhouse,,, clickhouse.interface.mysql.sent.bytes.count,count,,,,Number of bytes sent through MySQL interfaces,0,clickhouse,,, @@ -634,22 +2573,440 @@ clickhouse.merge.time,gauge,,percent,,The percentage of time spent for backgroun clickhouse.merge.total,gauge,,merge,,The total number of launched background merges.,0,clickhouse,,, clickhouse.merge_tree.announcements.sent,gauge,,,,The number of announcements sent from the remote server to the initiator server about the set of data parts (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, clickhouse.merge_tree.read_task.requests.sent,gauge,,,,The number of callbacks requested from the remote server back to the initiator server to choose the read task (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, -clickhouse.merges.active,gauge,,merge,,Number of currently active background merges for the table.,0,clickhouse,,, -clickhouse.merges.avg_progress,gauge,,fraction,,Average progress (0.0 to 1.0) across all active merges for the table.,0,clickhouse,,, -clickhouse.merges.max_elapsed_seconds,gauge,,second,,Maximum elapsed time in seconds across all active merges for the table.,0,clickhouse,,, -clickhouse.merges.memory_bytes,gauge,,byte,,Total memory in bytes currently consumed by active merges for the table.,0,clickhouse,,, -clickhouse.merges.stalled,gauge,,merge,,Number of active merges whose elapsed time exceeds the stall threshold.,0,clickhouse,,, -clickhouse.merges.threshold.merge_with_ttl_timeout,gauge,,second,,"Server-level merge_with_ttl_timeout from system.merge_tree_settings; minimum seconds between TTL-deletion merges (default 14400). Lower values trigger more frequent TTL merges.",0,clickhouse,,, -clickhouse.merges.threshold.min_age_to_force_merge_seconds,gauge,,second,,"Server-level min_age_to_force_merge_seconds from system.merge_tree_settings; parts older than this are force-merged regardless of normal heuristics. 0 means disabled.",0,clickhouse,,, -clickhouse.merges.total_bytes,gauge,,byte,,Total compressed bytes being merged across all active merges for the table.,0,clickhouse,,, clickhouse.merges_mutations.bytes.total,gauge,,,,Total amount of memory (bytes) allocated by background tasks (merges and mutations).,0,clickhouse,,, +clickhouse.metrics.ActiveTimersInQueryProfiler,gauge,,,,Number of Active thread local timers in QueryProfiler,0,clickhouse,,, +clickhouse.metrics.AddressesActive,gauge,,,,Total count of addresses which are used for creation connections with connection pools,0,clickhouse,,, +clickhouse.metrics.AddressesBanned,gauge,,,,Total count of addresses which are banned as faulty for creation connections with connection pools,0,clickhouse,,, +clickhouse.metrics.AggregatorThreads,gauge,,,,Number of threads in the Aggregator thread pool.,0,clickhouse,,, +clickhouse.metrics.AggregatorThreadsActive,gauge,,,,Number of threads in the Aggregator thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.AggregatorThreadsScheduled,gauge,,,,Number of queued or active jobs in the Aggregator thread pool.,0,clickhouse,,, +clickhouse.metrics.AsyncInsertCacheSize,gauge,,,,Number of async insert hash id in cache,0,clickhouse,,, +clickhouse.metrics.AsynchronousInsertQueueBytes,gauge,,,,Number of pending bytes in the AsynchronousInsert queue.,0,clickhouse,,, +clickhouse.metrics.AsynchronousInsertQueueSize,gauge,,,,Number of pending tasks in the AsynchronousInsert queue.,0,clickhouse,,, +clickhouse.metrics.AsynchronousInsertThreads,gauge,,,,Number of threads in the AsynchronousInsert thread pool.,0,clickhouse,,, +clickhouse.metrics.AsynchronousInsertThreadsActive,gauge,,,,Number of threads in the AsynchronousInsert thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.AsynchronousInsertThreadsScheduled,gauge,,,,Number of queued or active jobs in the AsynchronousInsert thread pool.,0,clickhouse,,, +clickhouse.metrics.AsynchronousReadWait,gauge,,,,Number of threads waiting for asynchronous read.,0,clickhouse,,, +clickhouse.metrics.AttachedDatabase,gauge,,,,Active databases.,0,clickhouse,,, +clickhouse.metrics.AttachedDictionary,gauge,,,,Active dictionaries.,0,clickhouse,,, +clickhouse.metrics.AttachedReplicatedTable,gauge,,,,Active replicated tables.,0,clickhouse,,, +clickhouse.metrics.AttachedTable,gauge,,,,Active tables.,0,clickhouse,,, +clickhouse.metrics.AttachedView,gauge,,,,Active views.,0,clickhouse,,, +clickhouse.metrics.AvroSchemaCacheBytes,gauge,,,,Size of the Avro schema cache in bytes,0,clickhouse,,, +clickhouse.metrics.AvroSchemaCacheCells,gauge,,,,Number of cached Avro schemas,0,clickhouse,,, +clickhouse.metrics.AvroSchemaRegistryCacheBytes,gauge,,,,Size of the Avro schema registry cache in bytes,0,clickhouse,,, +clickhouse.metrics.AvroSchemaRegistryCacheCells,gauge,,,,Number of entries in Avro schema registry cache,0,clickhouse,,, +clickhouse.metrics.AzureRequests,gauge,,,,Number of currently executing Azure requests,0,clickhouse,,, +clickhouse.metrics.BackgroundBufferFlushSchedulePoolSize,gauge,,,,Limit on number of tasks in BackgroundBufferFlushSchedulePool,0,clickhouse,,, +clickhouse.metrics.BackgroundBufferFlushSchedulePoolTask,gauge,,,,Number of active tasks in BackgroundBufferFlushSchedulePool. This pool is used for periodic Buffer flushes,0,clickhouse,,, +clickhouse.metrics.BackgroundCommonPoolSize,gauge,,,,Limit on number of tasks in an associated background pool,0,clickhouse,,, +clickhouse.metrics.BackgroundCommonPoolTask,gauge,,,,Number of active tasks in an associated background pool,0,clickhouse,,, +clickhouse.metrics.BackgroundDistributedSchedulePoolSize,gauge,,,,Limit on number of tasks in BackgroundDistributedSchedulePool,0,clickhouse,,, +clickhouse.metrics.BackgroundDistributedSchedulePoolTask,gauge,,,,Number of active tasks in BackgroundDistributedSchedulePool. This pool is used for distributed sends that is done in background.,0,clickhouse,,, +clickhouse.metrics.BackgroundFetchesPoolSize,gauge,,,,Limit on number of simultaneous fetches in an associated background pool,0,clickhouse,,, +clickhouse.metrics.BackgroundFetchesPoolTask,gauge,,,,Number of active fetches in an associated background pool,0,clickhouse,,, +clickhouse.metrics.BackgroundMergesAndMutationsPoolSize,gauge,,,,Limit on number of active merges and mutations in an associated background pool,0,clickhouse,,, +clickhouse.metrics.BackgroundMergesAndMutationsPoolTask,gauge,,,,Number of active merges and mutations in an associated background pool,0,clickhouse,,, +clickhouse.metrics.BackgroundMessageBrokerSchedulePoolSize,gauge,,,,Limit on number of tasks in BackgroundMessageBrokerSchedulePool for message streaming,0,clickhouse,,, +clickhouse.metrics.BackgroundMessageBrokerSchedulePoolTask,gauge,,,,Number of active tasks in BackgroundMessageBrokerSchedulePool for message streaming,0,clickhouse,,, +clickhouse.metrics.BackgroundMovePoolSize,gauge,,,,Limit on number of tasks in BackgroundProcessingPool for moves,0,clickhouse,,, +clickhouse.metrics.BackgroundMovePoolTask,gauge,,,,Number of active tasks in BackgroundProcessingPool for moves,0,clickhouse,,, +clickhouse.metrics.BackgroundSchedulePoolSize,gauge,,,,"Limit on number of tasks in BackgroundSchedulePool. This pool is used for periodic ReplicatedMergeTree tasks, like cleaning old data parts, altering data parts, replica re-initialization, etc.",0,clickhouse,,, +clickhouse.metrics.BackgroundSchedulePoolTask,gauge,,,,"Number of active tasks in BackgroundSchedulePool. This pool is used for periodic ReplicatedMergeTree tasks, like cleaning old data parts, altering data parts, replica re-initialization, etc.",0,clickhouse,,, +clickhouse.metrics.BackupsIOThreads,gauge,,,,Number of threads in the BackupsIO thread pool.,0,clickhouse,,, +clickhouse.metrics.BackupsIOThreadsActive,gauge,,,,Number of threads in the BackupsIO thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.BackupsIOThreadsScheduled,gauge,,,,Number of queued or active jobs in the BackupsIO thread pool.,0,clickhouse,,, +clickhouse.metrics.BackupsThreads,gauge,,,,Number of threads in the thread pool for BACKUP.,0,clickhouse,,, +clickhouse.metrics.BackupsThreadsActive,gauge,,,,Number of threads in thread pool for BACKUP running a task.,0,clickhouse,,, +clickhouse.metrics.BackupsThreadsScheduled,gauge,,,,Number of queued or active jobs for BACKUP.,0,clickhouse,,, +clickhouse.metrics.BrokenDisks,gauge,,,,Number of disks disks that were marked as broken during disk check.,0,clickhouse,,, +clickhouse.metrics.BrokenDistributedBytesToInsert,gauge,,,,Number of bytes for asynchronous insertion into Distributed tables that has been marked as broken. Number of bytes for every shard is summed.,0,clickhouse,,, +clickhouse.metrics.BrokenDistributedFilesToInsert,gauge,,,,Number of files for asynchronous insertion into Distributed tables that has been marked as broken. Number of files for every shard is summed.,0,clickhouse,,, +clickhouse.metrics.BuildVectorSimilarityIndexThreads,gauge,,,,Number of threads in the build vector similarity index thread pool.,0,clickhouse,,, +clickhouse.metrics.BuildVectorSimilarityIndexThreadsActive,gauge,,,,Number of threads in the build vector similarity index thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.BuildVectorSimilarityIndexThreadsScheduled,gauge,,,,Number of queued or active jobs in the build vector similarity index thread pool.,0,clickhouse,,, +clickhouse.metrics.CacheDetachedFileSegments,gauge,,,,Number of existing detached cache file segments,0,clickhouse,,, +clickhouse.metrics.CacheDictionaryThreads,gauge,,,,Number of threads in the CacheDictionary thread pool.,0,clickhouse,,, +clickhouse.metrics.CacheDictionaryThreadsActive,gauge,,,,Number of threads in the CacheDictionary thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.CacheDictionaryThreadsScheduled,gauge,,,,Number of queued or active jobs in the CacheDictionary thread pool.,0,clickhouse,,, +clickhouse.metrics.CacheDictionaryUpdateQueueBatches,gauge,,,,Number of 'batches' (a set of keys) in update queue in CacheDictionaries.,0,clickhouse,,, +clickhouse.metrics.CacheDictionaryUpdateQueueKeys,gauge,,,,Exact number of keys in update queue in CacheDictionaries.,0,clickhouse,,, +clickhouse.metrics.CacheFileSegments,gauge,,,,Number of existing cache file segments,0,clickhouse,,, +clickhouse.metrics.CacheWarmerBytesInProgress,gauge,,,,Total size of remote file segments waiting to be asynchronously loaded into filesystem cache.,0,clickhouse,,, +clickhouse.metrics.CompiledExpressionCacheBytes,gauge,,,,Total bytes used for the cache of JIT-compiled code,0,clickhouse,,, +clickhouse.metrics.CompiledExpressionCacheCount,gauge,,,,Total entries in the cache of JIT-compiled code,0,clickhouse,,, +clickhouse.metrics.Compressing,gauge,,,,Number of compress operations using internal compression codecs,0,clickhouse,,, +clickhouse.metrics.CompressionThread,gauge,,,,Number of threads in compression thread pools.,0,clickhouse,,, +clickhouse.metrics.CompressionThreadActive,gauge,,,,Number of threads in compression thread pools running a task.,0,clickhouse,,, +clickhouse.metrics.CompressionThreadScheduled,gauge,,,,Number of queued or active jobs in compression thread pools.,0,clickhouse,,, +clickhouse.metrics.ConcurrencyControlAcquired,gauge,,,,Total number of acquired CPU slots,0,clickhouse,,, +clickhouse.metrics.ConcurrencyControlAcquiredNonCompeting,gauge,,,,Total number of acquired CPU slots that are not considered competing (the first thread if fair_round_robin scheduler is in use),0,clickhouse,,, +clickhouse.metrics.ConcurrencyControlPreempted,gauge,,,,Total number of preempted threads waiting for CPU slot,0,clickhouse,,, +clickhouse.metrics.ConcurrencyControlScheduled,gauge,,,,Total number of CPU slot requests are being scheduled currently,0,clickhouse,,, +clickhouse.metrics.ConcurrencyControlSoftLimit,gauge,,,,Value of soft limit on number of CPU slots,0,clickhouse,,, +clickhouse.metrics.ConcurrentHashJoinPoolThreads,gauge,,,,Number of threads in the thread pool for concurrent hash join.,0,clickhouse,,, +clickhouse.metrics.ConcurrentHashJoinPoolThreadsActive,gauge,,,,Number of threads in the thread pool for concurrent hash join running a task.,0,clickhouse,,, +clickhouse.metrics.ConcurrentHashJoinPoolThreadsScheduled,gauge,,,,Number of queued or active jobs in the thread pool for concurrent hash join.,0,clickhouse,,, +clickhouse.metrics.ConcurrentQueryAcquired,gauge,,,,Total number of acquired query slots,0,clickhouse,,, +clickhouse.metrics.ConcurrentQueryScheduled,gauge,,,,Total number of query slot requests are being scheduled currently,0,clickhouse,,, +clickhouse.metrics.ContextLockWait,gauge,,,,Number of threads waiting for lock in Context. This is global lock.,0,clickhouse,,, +clickhouse.metrics.CoordinatedMergesCoordinatorAssignedMerges,gauge,,,,Number of assigned merges in merge coordinator state.,0,clickhouse,,, +clickhouse.metrics.CoordinatedMergesCoordinatorRunningMerges,gauge,,,,Number of running merges visible for merge coordinator.,0,clickhouse,,, +clickhouse.metrics.CoordinatedMergesWorkerAssignedMerges,gauge,,,,Number of assigned merges in merge worker state.,0,clickhouse,,, +clickhouse.metrics.CreatedTimersInQueryProfiler,gauge,,,,Number of Created thread local timers in QueryProfiler,0,clickhouse,,, +clickhouse.metrics.DDLWorkerThreads,gauge,,,,Number of threads in the DDLWorker thread pool for ON CLUSTER queries.,0,clickhouse,,, +clickhouse.metrics.DDLWorkerThreadsActive,gauge,,,,Number of threads in the DDLWORKER thread pool for ON CLUSTER queries running a task.,0,clickhouse,,, +clickhouse.metrics.DDLWorkerThreadsScheduled,gauge,,,,Number of queued or active jobs in the DDLWORKER thread pool for ON CLUSTER queries.,0,clickhouse,,, +clickhouse.metrics.DNSAddressesCacheBytes,gauge,,,,Size of the DNS addresses cache in bytes,0,clickhouse,,, +clickhouse.metrics.DNSAddressesCacheSize,gauge,,,,Number of cached DNS addresses,0,clickhouse,,, +clickhouse.metrics.DNSHostsCacheBytes,gauge,,,,Size of the DNS hosts cache in bytes,0,clickhouse,,, +clickhouse.metrics.DNSHostsCacheSize,gauge,,,,Number of cached DNS hosts,0,clickhouse,,, +clickhouse.metrics.DWARFReaderThreads,gauge,,,,Number of threads in the DWARFBlockInputFormat thread pool.,0,clickhouse,,, +clickhouse.metrics.DWARFReaderThreadsActive,gauge,,,,Number of threads in the DWARFBlockInputFormat thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.DWARFReaderThreadsScheduled,gauge,,,,Number of queued or active jobs in the DWARFBlockInputFormat thread pool.,0,clickhouse,,, +clickhouse.metrics.DatabaseBackupThreads,gauge,,,,Number of threads in the DatabaseBackup thread pool.,0,clickhouse,,, +clickhouse.metrics.DatabaseBackupThreadsActive,gauge,,,,Number of threads in the DatabaseBackup thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.DatabaseBackupThreadsScheduled,gauge,,,,Number of queued or active jobs in the DatabaseBackup thread pool.,0,clickhouse,,, +clickhouse.metrics.DatabaseCatalogThreads,gauge,,,,Number of threads in the DatabaseCatalog thread pool.,0,clickhouse,,, +clickhouse.metrics.DatabaseCatalogThreadsActive,gauge,,,,Number of threads in the DatabaseCatalog thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.DatabaseCatalogThreadsScheduled,gauge,,,,Number of queued or active jobs in the DatabaseCatalog thread pool.,0,clickhouse,,, +clickhouse.metrics.DatabaseOnDiskThreads,gauge,,,,Number of threads in the DatabaseOnDisk thread pool.,0,clickhouse,,, +clickhouse.metrics.DatabaseOnDiskThreadsActive,gauge,,,,Number of threads in the DatabaseOnDisk thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.DatabaseOnDiskThreadsScheduled,gauge,,,,Number of queued or active jobs in the DatabaseOnDisk thread pool.,0,clickhouse,,, +clickhouse.metrics.DatabaseReplicatedCreateTablesThreads,gauge,,,,Number of threads in the threadpool for table creation in DatabaseReplicated.,0,clickhouse,,, +clickhouse.metrics.DatabaseReplicatedCreateTablesThreadsActive,gauge,,,,Number of active threads in the threadpool for table creation in DatabaseReplicated.,0,clickhouse,,, +clickhouse.metrics.DatabaseReplicatedCreateTablesThreadsScheduled,gauge,,,,Number of queued or active jobs in the threadpool for table creation in DatabaseReplicated.,0,clickhouse,,, +clickhouse.metrics.Decompressing,gauge,,,,Number of decompress operations using internal compression codecs,0,clickhouse,,, +clickhouse.metrics.DelayedInserts,gauge,,,,Number of INSERT queries that are throttled due to high number of active data parts for partition in a MergeTree table.,0,clickhouse,,, +clickhouse.metrics.DestroyAggregatesThreads,gauge,,,,Number of threads in the thread pool for destroy aggregate states.,0,clickhouse,,, +clickhouse.metrics.DestroyAggregatesThreadsActive,gauge,,,,Number of threads in the thread pool for destroy aggregate states running a task.,0,clickhouse,,, +clickhouse.metrics.DestroyAggregatesThreadsScheduled,gauge,,,,Number of queued or active jobs in the thread pool for destroy aggregate states.,0,clickhouse,,, +clickhouse.metrics.DictCacheRequests,gauge,,,,Number of requests in fly to data sources of dictionaries of cache type.,0,clickhouse,,, +clickhouse.metrics.DiskConnectionsStored,gauge,,,,Total count of sessions stored in the session pool for disks,0,clickhouse,,, +clickhouse.metrics.DiskConnectionsTotal,gauge,,,,Total count of all sessions: stored in the pool and actively used right now for disks,0,clickhouse,,, +clickhouse.metrics.DiskObjectStorageAsyncThreads,gauge,,,,"Obsolete metric, shows nothing.",0,clickhouse,,, +clickhouse.metrics.DiskObjectStorageAsyncThreadsActive,gauge,,,,"Obsolete metric, shows nothing.",0,clickhouse,,, +clickhouse.metrics.DiskPlainRewritableAzureDirectoryMapSize,gauge,,,,Number of local-to-remote path entries in the 'plain_rewritable' in-memory map for AzureObjectStorage.,0,clickhouse,,, +clickhouse.metrics.DiskPlainRewritableAzureFileCount,gauge,,,,Number of file entries in the 'plain_rewritable' in-memory map for AzureObjectStorage.,0,clickhouse,,, +clickhouse.metrics.DiskPlainRewritableAzureUniqueFileNamesCount,gauge,,,,Number of unique file name entries in the 'plain_rewritable' in-memory map for AzureObjectStorage.,0,clickhouse,,, +clickhouse.metrics.DiskPlainRewritableLocalDirectoryMapSize,gauge,,,,Number of local-to-remote path entries in the 'plain_rewritable' in-memory map for LocalObjectStorage.,0,clickhouse,,, +clickhouse.metrics.DiskPlainRewritableLocalFileCount,gauge,,,,Number of file entries in the 'plain_rewritable' in-memory map for LocalObjectStorage.,0,clickhouse,,, +clickhouse.metrics.DiskPlainRewritableLocalUniqueFileNamesCount,gauge,,,,Number of unique file name entries in the 'plain_rewritable' in-memory map for LocalObjectStorage.,0,clickhouse,,, +clickhouse.metrics.DiskPlainRewritableS3DirectoryMapSize,gauge,,,,Number of local-to-remote path entries in the 'plain_rewritable' in-memory map for S3ObjectStorage.,0,clickhouse,,, +clickhouse.metrics.DiskPlainRewritableS3FileCount,gauge,,,,Number of file entries in the 'plain_rewritable' in-memory map for S3ObjectStorage.,0,clickhouse,,, +clickhouse.metrics.DiskPlainRewritableS3UniqueFileNamesCount,gauge,,,,Number of unique file name entries in the 'plain_rewritable' in-memory map for S3ObjectStorage.,0,clickhouse,,, +clickhouse.metrics.DiskS3NoSuchKeyErrors,gauge,,,,The number of `NoSuchKey` errors that occur when reading data from S3 cloud storage through ClickHouse disks.,0,clickhouse,,, +clickhouse.metrics.DiskSpaceReservedForMerge,gauge,,,,Disk space reserved for currently running background merges. It is slightly more than the total size of currently merging parts.,0,clickhouse,,, +clickhouse.metrics.DistrCacheAllocatedConnections,gauge,,,,Number of currently allocated connections to Distributed Cache connection pool,0,clickhouse,,, +clickhouse.metrics.DistrCacheBorrowedConnections,gauge,,,,Number of currently borrowed connections to Distributed Cache connection pool,0,clickhouse,,, +clickhouse.metrics.DistrCacheOpenedConnections,gauge,,,,Number of open connections to Distributed Cache,0,clickhouse,,, +clickhouse.metrics.DistrCacheReadRequests,gauge,,,,Number of executed Read requests to Distributed Cache,0,clickhouse,,, +clickhouse.metrics.DistrCacheRegisteredServers,gauge,,,,Number of distributed cache registered servers,0,clickhouse,,, +clickhouse.metrics.DistrCacheRegisteredServersCurrentAZ,gauge,,,,Number of distributed cache registered servers in current az,0,clickhouse,,, +clickhouse.metrics.DistrCacheServerConnections,gauge,,,,Number of open connections to ClickHouse server from Distributed Cache,0,clickhouse,,, +clickhouse.metrics.DistrCacheServerRegistryConnections,gauge,,,,Number of active connections to ClickHouse server from Distributed Cache (not marked as cancelled because of limit),0,clickhouse,,, +clickhouse.metrics.DistrCacheServerS3CachedClients,gauge,,,,Number of distributed cache S3 cached clients,0,clickhouse,,, +clickhouse.metrics.DistrCacheUsedConnections,gauge,,,,Number of currently used connections to Distributed Cache,0,clickhouse,,, +clickhouse.metrics.DistrCacheWriteRequests,gauge,,,,Number of executed Write requests to Distributed Cache,0,clickhouse,,, +clickhouse.metrics.DistributedBytesToInsert,gauge,,,,Number of pending bytes to process for asynchronous insertion into Distributed tables. Number of bytes for every shard is summed.,0,clickhouse,,, +clickhouse.metrics.DistributedFilesToInsert,gauge,,,,Number of pending files to process for asynchronous insertion into Distributed tables. Number of files for every shard is summed.,0,clickhouse,,, +clickhouse.metrics.DistributedInsertThreads,gauge,,,,Number of threads used for INSERT into Distributed.,0,clickhouse,,, +clickhouse.metrics.DistributedInsertThreadsActive,gauge,,,,Number of threads used for INSERT into Distributed running a task.,0,clickhouse,,, +clickhouse.metrics.DistributedInsertThreadsScheduled,gauge,,,,Number of queued or active jobs used for INSERT into Distributed.,0,clickhouse,,, +clickhouse.metrics.DistributedSend,gauge,,,,Number of connections to remote servers sending data that was INSERTed into Distributed tables. Both synchronous and asynchronous mode.,0,clickhouse,,, +clickhouse.metrics.DropDistributedCacheThreads,gauge,,,,Number of threads in the threadpool for drop distributed cache query.,0,clickhouse,,, +clickhouse.metrics.DropDistributedCacheThreadsActive,gauge,,,,Number of active threads in the threadpool for drop distributed cache query.,0,clickhouse,,, +clickhouse.metrics.DropDistributedCacheThreadsScheduled,gauge,,,,Number of queued or active jobs in the threadpool for drop distributed cache.,0,clickhouse,,, +clickhouse.metrics.EphemeralNode,gauge,,,,Number of ephemeral nodes hold in ZooKeeper.,0,clickhouse,,, +clickhouse.metrics.FilesystemCacheDelayedCleanupElements,gauge,,,,Filesystem cache elements in background cleanup queue,0,clickhouse,,, +clickhouse.metrics.FilesystemCacheDownloadQueueElements,gauge,,,,Filesystem cache elements in download queue,0,clickhouse,,, +clickhouse.metrics.FilesystemCacheElements,gauge,,,,Filesystem cache elements (file segments),0,clickhouse,,, +clickhouse.metrics.FilesystemCacheHoldFileSegments,gauge,,,,Filesystem cache file segment which are currently hold as unreleasable,0,clickhouse,,, +clickhouse.metrics.FilesystemCacheKeys,gauge,,,,Number of keys in filesystem cache,0,clickhouse,,, +clickhouse.metrics.FilesystemCacheReadBuffers,gauge,,,,Number of active cache buffers,0,clickhouse,,, +clickhouse.metrics.FilesystemCacheReserveThreads,gauge,,,,Threads number trying to reserve space in cache,0,clickhouse,,, +clickhouse.metrics.FilesystemCacheSize,gauge,,,,Filesystem cache size in bytes,0,clickhouse,,, +clickhouse.metrics.FilesystemCacheSizeLimit,gauge,,,,Filesystem cache size limit in bytes,0,clickhouse,,, +clickhouse.metrics.FilteringMarksWithPrimaryKey,gauge,,,,Number of threads currently doing filtering of mark ranges by the primary key,0,clickhouse,,, +clickhouse.metrics.FilteringMarksWithSecondaryKeys,gauge,,,,Number of threads currently doing filtering of mark ranges by secondary keys,0,clickhouse,,, +clickhouse.metrics.FormatParsingThreads,gauge,,,,Number of threads in the thread pool used for parsing input.,0,clickhouse,,, +clickhouse.metrics.FormatParsingThreadsActive,gauge,,,,Number of threads in the thread pool used for parsing input running a task.,0,clickhouse,,, +clickhouse.metrics.FormatParsingThreadsScheduled,gauge,,,,Number of queued or active jobs in the thread pool used for parsing input.,0,clickhouse,,, +clickhouse.metrics.GlobalThread,gauge,,,,Number of threads in global thread pool.,0,clickhouse,,, +clickhouse.metrics.GlobalThreadActive,gauge,,,,Number of threads in global thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.GlobalThreadScheduled,gauge,,,,Number of queued or active jobs in global thread pool.,0,clickhouse,,, +clickhouse.metrics.HTTPConnection,gauge,,,,Number of connections to HTTP server,0,clickhouse,,, +clickhouse.metrics.HTTPConnectionsStored,gauge,,,,Total count of sessions stored in the session pool for http hosts,0,clickhouse,,, +clickhouse.metrics.HTTPConnectionsTotal,gauge,,,,Total count of all sessions: stored in the pool and actively used right now for http hosts,0,clickhouse,,, +clickhouse.metrics.HashedDictionaryThreads,gauge,,,,Number of threads in the HashedDictionary thread pool.,0,clickhouse,,, +clickhouse.metrics.HashedDictionaryThreadsActive,gauge,,,,Number of threads in the HashedDictionary thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.HashedDictionaryThreadsScheduled,gauge,,,,Number of queued or active jobs in the HashedDictionary thread pool.,0,clickhouse,,, +clickhouse.metrics.HiveFilesCacheBytes,gauge,,,,Size of the hive cache in bytes,0,clickhouse,,, +clickhouse.metrics.HiveFilesCacheFiles,gauge,,,,Number of cached files in the hive cache,0,clickhouse,,, +clickhouse.metrics.HiveMetadataFilesCacheBytes,gauge,,,,Size of the hive metadata cache in bytes,0,clickhouse,,, +clickhouse.metrics.HiveMetadataFilesCacheFiles,gauge,,,,Number of cached files in the hive metadata cache,0,clickhouse,,, +clickhouse.metrics.IDiskCopierThreads,gauge,,,,Number of threads for copying data between disks of different types.,0,clickhouse,,, +clickhouse.metrics.IDiskCopierThreadsActive,gauge,,,,Number of threads for copying data between disks of different types running a task.,0,clickhouse,,, +clickhouse.metrics.IDiskCopierThreadsScheduled,gauge,,,,Number of queued or active jobs for copying data between disks of different types.,0,clickhouse,,, +clickhouse.metrics.IOPrefetchThreads,gauge,,,,Number of threads in the IO prefetch thread pool.,0,clickhouse,,, +clickhouse.metrics.IOPrefetchThreadsActive,gauge,,,,Number of threads in the IO prefetch thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.IOPrefetchThreadsScheduled,gauge,,,,Number of queued or active jobs in the IO prefetch thread pool.,0,clickhouse,,, +clickhouse.metrics.IOThreads,gauge,,,,Number of threads in the IO thread pool.,0,clickhouse,,, +clickhouse.metrics.IOThreadsActive,gauge,,,,Number of threads in the IO thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.IOThreadsScheduled,gauge,,,,Number of queued or active jobs in the IO thread pool.,0,clickhouse,,, +clickhouse.metrics.IOUringInFlightEvents,gauge,,,,Number of io_uring SQEs in flight,0,clickhouse,,, +clickhouse.metrics.IOUringPendingEvents,gauge,,,,Number of io_uring SQEs waiting to be submitted,0,clickhouse,,, +clickhouse.metrics.IOWriterThreads,gauge,,,,Number of threads in the IO writer thread pool.,0,clickhouse,,, +clickhouse.metrics.IOWriterThreadsActive,gauge,,,,Number of threads in the IO writer thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.IOWriterThreadsScheduled,gauge,,,,Number of queued or active jobs in the IO writer thread pool.,0,clickhouse,,, +clickhouse.metrics.IcebergCatalogThreads,gauge,,,,Number of threads in the IcebergCatalog thread pool.,0,clickhouse,,, +clickhouse.metrics.IcebergCatalogThreadsActive,gauge,,,,Number of threads in the IcebergCatalog thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.IcebergCatalogThreadsScheduled,gauge,,,,Number of queued or active jobs in the IcebergCatalog thread pool.,0,clickhouse,,, +clickhouse.metrics.IcebergMetadataFilesCacheBytes,gauge,,,,Size of the iceberg metadata cache in bytes,0,clickhouse,,, +clickhouse.metrics.IcebergMetadataFilesCacheFiles,gauge,,,,Number of cached files in the iceberg metadata cache,0,clickhouse,,, +clickhouse.metrics.IndexMarkCacheBytes,gauge,,,,Total size of mark cache for secondary indices in bytes,0,clickhouse,,, +clickhouse.metrics.IndexMarkCacheFiles,gauge,,,,Total number of mark files cached in the mark cache for secondary indices,0,clickhouse,,, +clickhouse.metrics.IndexUncompressedCacheBytes,gauge,,,,Total size of uncompressed cache in bytes for secondary indices. Uncompressed cache does not usually improve the performance and should be mostly avoided,0,clickhouse,,, +clickhouse.metrics.IndexUncompressedCacheCells,gauge,,,,Total number of entries in the uncompressed cache for secondary indices. Each entry represents a decompressed block of data. Uncompressed cache does not usually improve performance and should be mostly avoided,0,clickhouse,,, +clickhouse.metrics.InterserverConnection,gauge,,,,Number of connections from other replicas to fetch parts,0,clickhouse,,, +clickhouse.metrics.IsServerShuttingDown,gauge,,,,"Indicates if the server is shutting down: 0 = no, 1 = yes",0,clickhouse,,, +clickhouse.metrics.KafkaAssignedPartitions,gauge,,,,Number of partitions Kafka tables currently assigned to,0,clickhouse,,, +clickhouse.metrics.KafkaBackgroundReads,gauge,,,,Number of background reads currently working (populating materialized views from Kafka),0,clickhouse,,, +clickhouse.metrics.KafkaConsumers,gauge,,,,Number of active Kafka consumers,0,clickhouse,,, +clickhouse.metrics.KafkaConsumersInUse,gauge,,,,Number of consumers which are currently used by direct or background reads,0,clickhouse,,, +clickhouse.metrics.KafkaConsumersWithAssignment,gauge,,,,Number of active Kafka consumers which have some partitions assigned.,0,clickhouse,,, +clickhouse.metrics.KafkaLibrdkafkaThreads,gauge,,,,Number of active librdkafka threads,0,clickhouse,,, +clickhouse.metrics.KafkaProducers,gauge,,,,Number of active Kafka producer created,0,clickhouse,,, +clickhouse.metrics.KafkaWrites,gauge,,,,Number of currently running inserts to Kafka,0,clickhouse,,, +clickhouse.metrics.KeeperAliveConnections,gauge,,,,Number of alive connections,0,clickhouse,,, +clickhouse.metrics.KeeperOutstandingRequests,gauge,,,,Number of outstanding requests,0,clickhouse,,, +clickhouse.metrics.LicenseRemainingSeconds,gauge,,,,Remaining seconds of the license validity period.,0,clickhouse,,, +clickhouse.metrics.LocalThread,gauge,,,,Obsolete. Number of threads in local thread pools. The threads in local thread pools are taken from the global thread pool.,0,clickhouse,,, +clickhouse.metrics.LocalThreadActive,gauge,,,,Obsolete. Number of threads in local thread pools running a task.,0,clickhouse,,, +clickhouse.metrics.LocalThreadScheduled,gauge,,,,Obsolete. Number of queued or active jobs in local thread pools.,0,clickhouse,,, +clickhouse.metrics.MMapCacheCells,gauge,,,,The number of files opened with `mmap` (mapped in memory). This is used for queries with the setting `local_filesystem_read_method` set to `mmap`. The files opened with `mmap` are kept in the cache to avoid costly TLB flushes.,0,clickhouse,,, +clickhouse.metrics.MMappedFileBytes,gauge,,,,Sum size of mmapped file regions.,0,clickhouse,,, +clickhouse.metrics.MMappedFiles,gauge,,,,Total number of mmapped files.,0,clickhouse,,, +clickhouse.metrics.MarkCacheBytes,gauge,,,,Total size of mark cache in bytes,0,clickhouse,,, +clickhouse.metrics.MarkCacheFiles,gauge,,,,Total number of mark files cached in the mark cache,0,clickhouse,,, +clickhouse.metrics.MarksLoaderThreads,gauge,,,,Number of threads in thread pool for loading marks.,0,clickhouse,,, +clickhouse.metrics.MarksLoaderThreadsActive,gauge,,,,Number of threads in the thread pool for loading marks running a task.,0,clickhouse,,, +clickhouse.metrics.MarksLoaderThreadsScheduled,gauge,,,,Number of queued or active jobs in the thread pool for loading marks.,0,clickhouse,,, +clickhouse.metrics.MaxDDLEntryID,gauge,,,,Max processed DDL entry of DDLWorker.,0,clickhouse,,, +clickhouse.metrics.MaxPushedDDLEntryID,gauge,,,,Max DDL entry of DDLWorker that pushed to zookeeper.,0,clickhouse,,, +clickhouse.metrics.MemoryTracking,gauge,,,,Total amount of memory (bytes) allocated by the server.,0,clickhouse,,, +clickhouse.metrics.MemoryTrackingUncorrected,gauge,,,,Total amount of memory (bytes) allocated by the server not corrected by RSS.,0,clickhouse,,, +clickhouse.metrics.Merge,gauge,,,,Number of executing background merges,0,clickhouse,,, +clickhouse.metrics.MergeJoinBlocksCacheBytes,gauge,,,,Total bytes used for cached blocks in MergeJoin,0,clickhouse,,, +clickhouse.metrics.MergeJoinBlocksCacheCount,gauge,,,,Total cached blocks in MergeJoin,0,clickhouse,,, +clickhouse.metrics.MergeParts,gauge,,,,Number of source parts participating in current background merges,0,clickhouse,,, +clickhouse.metrics.MergeTreeAllRangesAnnouncementsSent,gauge,,,,The current number of announcement being sent in flight from the remote server to the initiator server about the set of data parts (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, +clickhouse.metrics.MergeTreeBackgroundExecutorThreads,gauge,,,,Number of threads in the MergeTreeBackgroundExecutor thread pool.,0,clickhouse,,, +clickhouse.metrics.MergeTreeBackgroundExecutorThreadsActive,gauge,,,,Number of threads in the MergeTreeBackgroundExecutor thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.MergeTreeBackgroundExecutorThreadsScheduled,gauge,,,,Number of queued or active jobs in the MergeTreeBackgroundExecutor thread pool.,0,clickhouse,,, +clickhouse.metrics.MergeTreeDataSelectExecutorThreads,gauge,,,,Number of threads in the MergeTreeDataSelectExecutor thread pool.,0,clickhouse,,, +clickhouse.metrics.MergeTreeDataSelectExecutorThreadsActive,gauge,,,,Number of threads in the MergeTreeDataSelectExecutor thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.MergeTreeDataSelectExecutorThreadsScheduled,gauge,,,,Number of queued or active jobs in the MergeTreeDataSelectExecutor thread pool.,0,clickhouse,,, +clickhouse.metrics.MergeTreeFetchPartitionThreads,gauge,,,,Number of threads for ALTER TABLE FETCH PARTITION,0,clickhouse,,, +clickhouse.metrics.MergeTreeFetchPartitionThreadsActive,gauge,,,,Number of threads for ALTER TABLE FETCH PARTITION fetching part,0,clickhouse,,, +clickhouse.metrics.MergeTreeFetchPartitionThreadsScheduled,gauge,,,,Number of queued or active part fetches in ALTER TABLE FETCH PARTITION,0,clickhouse,,, +clickhouse.metrics.MergeTreeOutdatedPartsLoaderThreads,gauge,,,,Number of threads in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.metrics.MergeTreeOutdatedPartsLoaderThreadsActive,gauge,,,,Number of active threads in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.metrics.MergeTreeOutdatedPartsLoaderThreadsScheduled,gauge,,,,Number of queued or active jobs in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.metrics.MergeTreePartsCleanerThreads,gauge,,,,Number of threads in the MergeTree parts cleaner thread pool.,0,clickhouse,,, +clickhouse.metrics.MergeTreePartsCleanerThreadsActive,gauge,,,,Number of threads in the MergeTree parts cleaner thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.MergeTreePartsCleanerThreadsScheduled,gauge,,,,Number of queued or active jobs in the MergeTree parts cleaner thread pool.,0,clickhouse,,, +clickhouse.metrics.MergeTreePartsLoaderThreads,gauge,,,,Number of threads in the MergeTree parts loader thread pool.,0,clickhouse,,, +clickhouse.metrics.MergeTreePartsLoaderThreadsActive,gauge,,,,Number of threads in the MergeTree parts loader thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.MergeTreePartsLoaderThreadsScheduled,gauge,,,,Number of queued or active jobs in the MergeTree parts loader thread pool.,0,clickhouse,,, +clickhouse.metrics.MergeTreeReadTaskRequestsSent,gauge,,,,The current number of callback requests in flight from the remote server back to the initiator server to choose the read task (for MergeTree tables). Measured on the remote server side.,0,clickhouse,,, +clickhouse.metrics.MergeTreeSubcolumnsReaderThreads,gauge,,,,Number of threads in the thread pool used for subcolumns reading in MergeTree.,0,clickhouse,,, +clickhouse.metrics.MergeTreeSubcolumnsReaderThreadsActive,gauge,,,,Number of threads in the thread pool used for subcolumns reading in MergeTree running a task.,0,clickhouse,,, +clickhouse.metrics.MergeTreeSubcolumnsReaderThreadsScheduled,gauge,,,,Number of queued or active jobs in the thread pool used for subcolumns reading in MergeTree.,0,clickhouse,,, +clickhouse.metrics.MergeTreeUnexpectedPartsLoaderThreads,gauge,,,,Number of threads in the threadpool for loading Unexpected data parts.,0,clickhouse,,, +clickhouse.metrics.MergeTreeUnexpectedPartsLoaderThreadsActive,gauge,,,,Number of active threads in the threadpool for loading Unexpected data parts.,0,clickhouse,,, +clickhouse.metrics.MergeTreeUnexpectedPartsLoaderThreadsScheduled,gauge,,,,Number of queued or active jobs in the threadpool for loading Unexpected data parts.,0,clickhouse,,, +clickhouse.metrics.MergesMutationsMemoryTracking,gauge,,,,Total amount of memory (bytes) allocated by background tasks (merges and mutations).,0,clickhouse,,, +clickhouse.metrics.MetadataFromKeeperCacheObjects,gauge,,,,Number of objects in disk metadata cache.,0,clickhouse,,, +clickhouse.metrics.Move,gauge,,,,Number of currently executing moves,0,clickhouse,,, +clickhouse.metrics.MySQLConnection,gauge,,,,Number of client connections using MySQL protocol,0,clickhouse,,, +clickhouse.metrics.NetworkReceive,gauge,,,,"Number of threads receiving data from network. Only ClickHouse-related network interaction is included, not by 3rd party libraries.",0,clickhouse,,, +clickhouse.metrics.NetworkSend,gauge,,,,"Number of threads sending data to network. Only ClickHouse-related network interaction is included, not by 3rd party libraries.",0,clickhouse,,, +clickhouse.metrics.ObjectStorageAzureThreads,gauge,,,,Number of threads in the AzureObjectStorage thread pool.,0,clickhouse,,, +clickhouse.metrics.ObjectStorageAzureThreadsActive,gauge,,,,Number of threads in the AzureObjectStorage thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.ObjectStorageAzureThreadsScheduled,gauge,,,,Number of queued or active jobs in the AzureObjectStorage thread pool.,0,clickhouse,,, +clickhouse.metrics.ObjectStorageQueueRegisteredServers,gauge,,,,Number of registered servers in StorageS3(Azure)Queue,0,clickhouse,,, +clickhouse.metrics.ObjectStorageQueueShutdownThreads,gauge,,,,Number of threads in object storage queue shutdown pool.,0,clickhouse,,, +clickhouse.metrics.ObjectStorageQueueShutdownThreadsActive,gauge,,,,Number of threads in object storage queue shutdown pool running a task.,0,clickhouse,,, +clickhouse.metrics.ObjectStorageQueueShutdownThreadsScheduled,gauge,,,,Number of queued or active jobs in object storage queue shutdown pool.,0,clickhouse,,, +clickhouse.metrics.ObjectStorageS3Threads,gauge,,,,Number of threads in the S3ObjectStorage thread pool.,0,clickhouse,,, +clickhouse.metrics.ObjectStorageS3ThreadsActive,gauge,,,,Number of threads in the S3ObjectStorage thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.ObjectStorageS3ThreadsScheduled,gauge,,,,Number of queued or active jobs in the S3ObjectStorage thread pool.,0,clickhouse,,, +clickhouse.metrics.OpenFileForRead,gauge,,,,Number of files open for reading,0,clickhouse,,, +clickhouse.metrics.OpenFileForWrite,gauge,,,,Number of files open for writing,0,clickhouse,,, +clickhouse.metrics.OutdatedPartsLoadingThreads,gauge,,,,Number of threads in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.metrics.OutdatedPartsLoadingThreadsActive,gauge,,,,Number of active threads in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.metrics.OutdatedPartsLoadingThreadsScheduled,gauge,,,,Number of queued or active jobs in the threadpool for loading Outdated data parts.,0,clickhouse,,, +clickhouse.metrics.PageCacheBytes,gauge,,,,Total size of userspace page cache in bytes,0,clickhouse,,, +clickhouse.metrics.PageCacheCells,gauge,,,,Total number of entries in the userspace page cache,0,clickhouse,,, +clickhouse.metrics.ParallelCompressedWriteBufferThreads,gauge,,,,Number of threads in all instances of ParallelCompressedWriteBuffer - these threads are doing parallel compression and writing,0,clickhouse,,, +clickhouse.metrics.ParallelCompressedWriteBufferWait,gauge,,,,Number of threads in all instances of ParallelCompressedWriteBuffer that are currently waiting for buffer to become available for writing,0,clickhouse,,, +clickhouse.metrics.ParallelFormattingOutputFormatThreads,gauge,,,,Number of threads in the ParallelFormattingOutputFormatThreads thread pool.,0,clickhouse,,, +clickhouse.metrics.ParallelFormattingOutputFormatThreadsActive,gauge,,,,Number of threads in the ParallelFormattingOutputFormatThreads thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.ParallelFormattingOutputFormatThreadsScheduled,gauge,,,,Number of queued or active jobs in the ParallelFormattingOutputFormatThreads thread pool.,0,clickhouse,,, +clickhouse.metrics.ParallelParsingInputFormatThreads,gauge,,,,Number of threads in the ParallelParsingInputFormat thread pool.,0,clickhouse,,, +clickhouse.metrics.ParallelParsingInputFormatThreadsActive,gauge,,,,Number of threads in the ParallelParsingInputFormat thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.ParallelParsingInputFormatThreadsScheduled,gauge,,,,Number of queued or active jobs in the ParallelParsingInputFormat thread pool.,0,clickhouse,,, +clickhouse.metrics.ParallelWithQueryActiveThreads,gauge,,,,Number of active threads in the threadpool for processing PARALLEL WITH queries.,0,clickhouse,,, +clickhouse.metrics.ParallelWithQueryScheduledThreads,gauge,,,,Number of queued or active jobs in the threadpool for processing PARALLEL WITH queries.,0,clickhouse,,, +clickhouse.metrics.ParallelWithQueryThreads,gauge,,,,Number of threads in the threadpool for processing PARALLEL WITH queries.,0,clickhouse,,, +clickhouse.metrics.ParquetDecoderIOThreads,gauge,,,,Number of threads in the ParquetBlockInputFormat io thread pool.,0,clickhouse,,, +clickhouse.metrics.ParquetDecoderIOThreadsActive,gauge,,,,Number of threads in the ParquetBlockInputFormat io thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.ParquetDecoderIOThreadsScheduled,gauge,,,,Number of queued or active jobs in the ParquetBlockInputFormat io thread pool.,0,clickhouse,,, +clickhouse.metrics.ParquetDecoderThreads,gauge,,,,Number of threads in the ParquetBlockInputFormat thread pool.,0,clickhouse,,, +clickhouse.metrics.ParquetDecoderThreadsActive,gauge,,,,Number of threads in the ParquetBlockInputFormat thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.ParquetDecoderThreadsScheduled,gauge,,,,Number of queued or active jobs in the ParquetBlockInputFormat thread pool.,0,clickhouse,,, +clickhouse.metrics.ParquetEncoderThreads,gauge,,,,Number of threads in ParquetBlockOutputFormat thread pool.,0,clickhouse,,, +clickhouse.metrics.ParquetEncoderThreadsActive,gauge,,,,Number of threads in ParquetBlockOutputFormat thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.ParquetEncoderThreadsScheduled,gauge,,,,Number of queued or active jobs in ParquetBlockOutputFormat thread pool.,0,clickhouse,,, +clickhouse.metrics.PartMutation,gauge,,,,Number of mutations (ALTER DELETE/UPDATE),0,clickhouse,,, +clickhouse.metrics.PartsActive,gauge,,,,"Active data part, used by current and upcoming SELECTs.",0,clickhouse,,, +clickhouse.metrics.PartsCommitted,gauge,,,,Deprecated. See PartsActive.,0,clickhouse,,, +clickhouse.metrics.PartsCompact,gauge,,,,Compact parts.,0,clickhouse,,, +clickhouse.metrics.PartsDeleteOnDestroy,gauge,,,,Part was moved to another disk and should be deleted in own destructor.,0,clickhouse,,, +clickhouse.metrics.PartsDeleting,gauge,,,,"Not active data part with identity refcounter, it is deleting right now by a cleaner.",0,clickhouse,,, +clickhouse.metrics.PartsOutdated,gauge,,,,"Not active data part, but could be used by only current SELECTs, could be deleted after SELECTs finishes.",0,clickhouse,,, +clickhouse.metrics.PartsPreActive,gauge,,,,"The part is in data_parts, but not used for SELECTs.",0,clickhouse,,, +clickhouse.metrics.PartsPreCommitted,gauge,,,,Deprecated. See PartsPreActive.,0,clickhouse,,, +clickhouse.metrics.PartsTemporary,gauge,,,,"The part is generating now, it is not in data_parts list.",0,clickhouse,,, +clickhouse.metrics.PartsWide,gauge,,,,Wide parts.,0,clickhouse,,, +clickhouse.metrics.PendingAsyncInsert,gauge,,,,Number of asynchronous inserts that are waiting for flush.,0,clickhouse,,, +clickhouse.metrics.PolygonDictionaryThreads,gauge,,,,Number of threads in the threadpool for polygon dictionaries.,0,clickhouse,,, +clickhouse.metrics.PolygonDictionaryThreadsActive,gauge,,,,Number of active threads in the threadpool for polygon dictionaries.,0,clickhouse,,, +clickhouse.metrics.PolygonDictionaryThreadsScheduled,gauge,,,,Number of queued or active jobs in the threadpool for polygon dictionaries.,0,clickhouse,,, +clickhouse.metrics.PostgreSQLConnection,gauge,,,,Number of client connections using PostgreSQL protocol,0,clickhouse,,, +clickhouse.metrics.PrimaryIndexCacheBytes,gauge,,,,Total size of primary index cache in bytes,0,clickhouse,,, +clickhouse.metrics.PrimaryIndexCacheFiles,gauge,,,,Total number of index files cached in the primary index cache,0,clickhouse,,, +clickhouse.metrics.Query,gauge,,,,Number of executing queries,0,clickhouse,,, +clickhouse.metrics.QueryCacheBytes,gauge,,,,Total size of the query cache in bytes,0,clickhouse,,, +clickhouse.metrics.QueryCacheEntries,gauge,,,,Total number of entries in the query cache,0,clickhouse,,, +clickhouse.metrics.QueryConditionCacheBytes,gauge,,,,Total size of the query condition cache in bytes,0,clickhouse,,, +clickhouse.metrics.QueryConditionCacheEntries,gauge,,,,Total number of entries in the query condition cache,0,clickhouse,,, +clickhouse.metrics.QueryPipelineExecutorThreads,gauge,,,,Number of threads in the PipelineExecutor thread pool.,0,clickhouse,,, +clickhouse.metrics.QueryPipelineExecutorThreadsActive,gauge,,,,Number of threads in the PipelineExecutor thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.QueryPipelineExecutorThreadsScheduled,gauge,,,,Number of queued or active jobs in the PipelineExecutor thread pool.,0,clickhouse,,, +clickhouse.metrics.QueryPreempted,gauge,,,,Number of running tasks which are paused and waiting due to 'priority' setting.,0,clickhouse,,, +clickhouse.metrics.QueryThread,gauge,,,,Number of query processing threads,0,clickhouse,,, +clickhouse.metrics.RWLockActiveReaders,gauge,,,,Number of threads holding read lock in a table RWLock.,0,clickhouse,,, +clickhouse.metrics.RWLockActiveWriters,gauge,,,,Number of threads holding write lock in a table RWLock.,0,clickhouse,,, +clickhouse.metrics.RWLockWaitingReaders,gauge,,,,Number of threads waiting for read on a table RWLock.,0,clickhouse,,, +clickhouse.metrics.RWLockWaitingWriters,gauge,,,,Number of threads waiting for write on a table RWLock.,0,clickhouse,,, +clickhouse.metrics.Read,gauge,,,,"Number of read (read, pread, io_getevents, etc.) syscalls in fly",0,clickhouse,,, +clickhouse.metrics.ReadTaskRequestsSent,gauge,,,,The current number of callback requests in flight from the remote server back to the initiator server to choose the read task (for s3Cluster table function and similar). Measured on the remote server side.,0,clickhouse,,, +clickhouse.metrics.ReadonlyDisks,gauge,,,,Number of disks that were marked as readonly during disk check.,0,clickhouse,,, +clickhouse.metrics.ReadonlyReplica,gauge,,,,Number of Replicated tables that are currently in readonly state due to re-initialization after ZooKeeper session loss or due to startup without ZooKeeper configured.,0,clickhouse,,, +clickhouse.metrics.RefreshableViews,gauge,,,,Number materialized views with periodic refreshing (REFRESH),0,clickhouse,,, +clickhouse.metrics.RefreshingViews,gauge,,,,Number of materialized views currently executing a refresh,0,clickhouse,,, +clickhouse.metrics.RemoteRead,gauge,,,,Number of read with remote reader in fly,0,clickhouse,,, +clickhouse.metrics.ReplicatedChecks,gauge,,,,Number of data parts checking for consistency,0,clickhouse,,, +clickhouse.metrics.ReplicatedFetch,gauge,,,,Number of data parts being fetched from replica,0,clickhouse,,, +clickhouse.metrics.ReplicatedSend,gauge,,,,Number of data parts being sent to replicas,0,clickhouse,,, +clickhouse.metrics.RestartReplicaThreads,gauge,,,,Number of threads in the RESTART REPLICA thread pool.,0,clickhouse,,, +clickhouse.metrics.RestartReplicaThreadsActive,gauge,,,,Number of threads in the RESTART REPLICA thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.RestartReplicaThreadsScheduled,gauge,,,,Number of queued or active jobs in the RESTART REPLICA thread pool.,0,clickhouse,,, +clickhouse.metrics.RestoreThreads,gauge,,,,Number of threads in the thread pool for RESTORE.,0,clickhouse,,, +clickhouse.metrics.RestoreThreadsActive,gauge,,,,Number of threads in the thread pool for RESTORE running a task.,0,clickhouse,,, +clickhouse.metrics.RestoreThreadsScheduled,gauge,,,,Number of queued or active jobs for RESTORE.,0,clickhouse,,, +clickhouse.metrics.Revision,gauge,,,,Revision of the server. It is a number incremented for every release or release candidate except patch releases.,0,clickhouse,,, +clickhouse.metrics.S3Requests,gauge,,,,S3 requests count,0,clickhouse,,, +clickhouse.metrics.SchedulerIOReadScheduled,gauge,,,,Number of IO reads are being scheduled currently,0,clickhouse,,, +clickhouse.metrics.SchedulerIOWriteScheduled,gauge,,,,Number of IO writes are being scheduled currently,0,clickhouse,,, +clickhouse.metrics.SendExternalTables,gauge,,,,Number of connections that are sending data for external tables to remote servers. External tables are used to implement GLOBAL IN and GLOBAL JOIN operators with distributed subqueries.,0,clickhouse,,, +clickhouse.metrics.SendScalars,gauge,,,,Number of connections that are sending data for scalars to remote servers.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogDropDetachLocalTablesErrors,gauge,,,,Number of errors that occurred when attempting to drop or detach local tables in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogDropLocalThreads,gauge,,,,Number of threads in the threadpool for drop of local tables in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogDropLocalThreadsActive,gauge,,,,Number of active threads in the threadpool for drop of local tables in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogDropLocalThreadsScheduled,gauge,,,,Number of queued or active jobs in the threadpool for drop of local tables in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogDropZooKeeperThreads,gauge,,,,Number of threads in the threadpool for drop of object in ZooKeeper in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogDropZooKeeperThreadsActive,gauge,,,,Number of active threads in the threadpool for drop of object in ZooKeeper in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogDropZooKeeperThreadsScheduled,gauge,,,,Number of queued or active jobs in the threadpool for drop of object in ZooKeeper in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogNumberOfObjectsInState,gauge,,,,Number of objects in the current state of Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogStateApplicationThreads,gauge,,,,Number of threads in the threadpool for state application in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogStateApplicationThreadsActive,gauge,,,,Number of active threads in the threadpool for state application in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedCatalogStateApplicationThreadsScheduled,gauge,,,,Number of queued or active jobs in the threadpool for state application in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedDatabaseCatalogTablesInLocalDropDetachQueue,gauge,,,,Number of tables in the queue for local drop or detach in Shared Catalog.,0,clickhouse,,, +clickhouse.metrics.SharedMergeTreeAssignedCurrentParts,gauge,,,,Number of parts locked by merge or mutation,0,clickhouse,,, +clickhouse.metrics.SharedMergeTreeCondemnedPartsInKeeper,gauge,,,,How many condemned part records stored in keeper,0,clickhouse,,, +clickhouse.metrics.SharedMergeTreeFetch,gauge,,,,Number of fetches in progress,0,clickhouse,,, +clickhouse.metrics.SharedMergeTreeOutdatedPartsInKeeper,gauge,,,,How many outdated part records stored in keeper,0,clickhouse,,, +clickhouse.metrics.SharedMergeTreeThreads,gauge,,,,Number of threads in the thread pools in internals of SharedMergeTree,0,clickhouse,,, +clickhouse.metrics.SharedMergeTreeThreadsActive,gauge,,,,Number of threads in the thread pools in internals of SharedMergeTree running a task,0,clickhouse,,, +clickhouse.metrics.SharedMergeTreeThreadsScheduled,gauge,,,,Number of queued or active threads in the thread pools in internals of SharedMergeTree,0,clickhouse,,, +clickhouse.metrics.StartupScriptsExecutionState,gauge,,,,"State of startup scripts execution: 0 = not finished, 1 = success, 2 = failure.",0,clickhouse,,, +clickhouse.metrics.StartupSystemTablesThreads,gauge,,,,Number of threads in the StartupSystemTables thread pool.,0,clickhouse,,, +clickhouse.metrics.StartupSystemTablesThreadsActive,gauge,,,,Number of threads in the StartupSystemTables thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.StartupSystemTablesThreadsScheduled,gauge,,,,Number of queued or active jobs in the StartupSystemTables thread pool.,0,clickhouse,,, +clickhouse.metrics.StatelessWorkerThreads,gauge,,,,Number of threads in the stateless worker thread pool.,0,clickhouse,,, +clickhouse.metrics.StatelessWorkerThreadsActive,gauge,,,,Number of threads in the stateless worker thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.StatelessWorkerThreadsScheduled,gauge,,,,Number of queued or active jobs in the stateless worker thread pool.,0,clickhouse,,, +clickhouse.metrics.StorageBufferBytes,gauge,,,,Number of bytes in buffers of Buffer tables,0,clickhouse,,, +clickhouse.metrics.StorageBufferFlushThreads,gauge,,,,Number of threads for background flushes in StorageBuffer,0,clickhouse,,, +clickhouse.metrics.StorageBufferFlushThreadsActive,gauge,,,,Number of threads for background flushes in StorageBuffer running a task,0,clickhouse,,, +clickhouse.metrics.StorageBufferFlushThreadsScheduled,gauge,,,,Number of queued or active threads for background flushes in StorageBuffer,0,clickhouse,,, +clickhouse.metrics.StorageBufferRows,gauge,,,,Number of rows in buffers of Buffer tables,0,clickhouse,,, +clickhouse.metrics.StorageConnectionsStored,gauge,,,,Total count of sessions stored in the session pool for storages,0,clickhouse,,, +clickhouse.metrics.StorageConnectionsTotal,gauge,,,,Total count of all sessions: stored in the pool and actively used right now for storages,0,clickhouse,,, +clickhouse.metrics.StorageDistributedThreads,gauge,,,,Number of threads in the StorageDistributed thread pool.,0,clickhouse,,, +clickhouse.metrics.StorageDistributedThreadsActive,gauge,,,,Number of threads in the StorageDistributed thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.StorageDistributedThreadsScheduled,gauge,,,,Number of queued or active jobs in the StorageDistributed thread pool.,0,clickhouse,,, +clickhouse.metrics.StorageHiveThreads,gauge,,,,Number of threads in the StorageHive thread pool.,0,clickhouse,,, +clickhouse.metrics.StorageHiveThreadsActive,gauge,,,,Number of threads in the StorageHive thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.StorageHiveThreadsScheduled,gauge,,,,Number of queued or active jobs in the StorageHive thread pool.,0,clickhouse,,, +clickhouse.metrics.StorageObjectStorageThreads,gauge,,,,Number of threads in the remote table engines thread pools.,0,clickhouse,,, +clickhouse.metrics.StorageObjectStorageThreadsActive,gauge,,,,Number of threads in the remote table engines thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.StorageObjectStorageThreadsScheduled,gauge,,,,Number of queued or active jobs in remote table engines thread pool.,0,clickhouse,,, +clickhouse.metrics.StorageS3Threads,gauge,,,,Number of threads in the StorageS3 thread pool.,0,clickhouse,,, +clickhouse.metrics.StorageS3ThreadsActive,gauge,,,,Number of threads in the StorageS3 thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.StorageS3ThreadsScheduled,gauge,,,,Number of queued or active jobs in the StorageS3 thread pool.,0,clickhouse,,, +clickhouse.metrics.SystemReplicasThreads,gauge,,,,Number of threads in the system.replicas thread pool.,0,clickhouse,,, +clickhouse.metrics.SystemReplicasThreadsActive,gauge,,,,Number of threads in the system.replicas thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.SystemReplicasThreadsScheduled,gauge,,,,Number of queued or active jobs in the system.replicas thread pool.,0,clickhouse,,, +clickhouse.metrics.TCPConnection,gauge,,,,"Number of connections to TCP server (clients with native interface), also included server-server distributed query connections",0,clickhouse,,, +clickhouse.metrics.TablesLoaderBackgroundThreads,gauge,,,,Number of threads in the tables loader background thread pool.,0,clickhouse,,, +clickhouse.metrics.TablesLoaderBackgroundThreadsActive,gauge,,,,Number of threads in the tables loader background thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.TablesLoaderBackgroundThreadsScheduled,gauge,,,,Number of queued or active jobs in the tables loader background thread pool.,0,clickhouse,,, +clickhouse.metrics.TablesLoaderForegroundThreads,gauge,,,,Number of threads in the tables loader foreground thread pool.,0,clickhouse,,, +clickhouse.metrics.TablesLoaderForegroundThreadsActive,gauge,,,,Number of threads in the tables loader foreground thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.TablesLoaderForegroundThreadsScheduled,gauge,,,,Number of queued or active jobs in the tables loader foreground thread pool.,0,clickhouse,,, +clickhouse.metrics.TablesToDropQueueSize,gauge,,,,"Number of dropped tables, that are waiting for background data removal.",0,clickhouse,,, +clickhouse.metrics.TaskTrackerThreads,gauge,,,,Number of threads used by the distributed query remote task tracker.,0,clickhouse,,, +clickhouse.metrics.TaskTrackerThreadsActive,gauge,,,,Number of threads in the distributed query remote task tracker thread pool running a task.,0,clickhouse,,, +clickhouse.metrics.TaskTrackerThreadsScheduled,gauge,,,,Number of queued or active jobs in the distributed query remote task tracker thread pool.,0,clickhouse,,, +clickhouse.metrics.TemporaryFilesForAggregation,gauge,,,,Number of temporary files created for external aggregation,0,clickhouse,,, +clickhouse.metrics.TemporaryFilesForJoin,gauge,,,,Number of temporary files created for JOIN,0,clickhouse,,, +clickhouse.metrics.TemporaryFilesForMerge,gauge,,,,Number of temporary files for vertical merge,0,clickhouse,,, +clickhouse.metrics.TemporaryFilesForSort,gauge,,,,Number of temporary files created for external sorting,0,clickhouse,,, +clickhouse.metrics.TemporaryFilesUnknown,gauge,,,,Number of temporary files created without known purpose,0,clickhouse,,, +clickhouse.metrics.ThreadPoolFSReaderThreads,gauge,,,,Number of threads in the thread pool for local_filesystem_read_method=threadpool.,0,clickhouse,,, +clickhouse.metrics.ThreadPoolFSReaderThreadsActive,gauge,,,,Number of threads in the thread pool for local_filesystem_read_method=threadpool running a task.,0,clickhouse,,, +clickhouse.metrics.ThreadPoolFSReaderThreadsScheduled,gauge,,,,Number of queued or active jobs in the thread pool for local_filesystem_read_method=threadpool.,0,clickhouse,,, +clickhouse.metrics.ThreadPoolRemoteFSReaderThreads,gauge,,,,Number of threads in the thread pool for remote_filesystem_read_method=threadpool.,0,clickhouse,,, +clickhouse.metrics.ThreadPoolRemoteFSReaderThreadsActive,gauge,,,,Number of threads in the thread pool for remote_filesystem_read_method=threadpool running a task.,0,clickhouse,,, +clickhouse.metrics.ThreadPoolRemoteFSReaderThreadsScheduled,gauge,,,,Number of queued or active jobs in the thread pool for remote_filesystem_read_method=threadpool.,0,clickhouse,,, +clickhouse.metrics.ThreadsInOvercommitTracker,gauge,,,,Number of waiting threads inside of OvercommitTracker,0,clickhouse,,, +clickhouse.metrics.TotalTemporaryFiles,gauge,,,,Number of temporary files created,0,clickhouse,,, +clickhouse.metrics.UncompressedCacheBytes,gauge,,,,Total size of uncompressed cache in bytes. Uncompressed cache does not usually improve the performance and should be mostly avoided,0,clickhouse,,, +clickhouse.metrics.UncompressedCacheCells,gauge,,,,Total number of entries in the uncompressed cache. Each entry represents a decompressed block of data. Uncompressed cache does not usually improve performance and should be mostly avoided,0,clickhouse,,, +clickhouse.metrics.VectorSimilarityIndexCacheBytes,gauge,,,,Size of the vector similarity index cache in bytes,0,clickhouse,,, +clickhouse.metrics.VectorSimilarityIndexCacheCells,gauge,,,,Number of entries in vector similarity index cache,0,clickhouse,,, +clickhouse.metrics.VersionInteger,gauge,,,,"Version of the server in a single integer number in base-1000. For example, version 11.22.33 is translated to 11022033.",0,clickhouse,,, +clickhouse.metrics.Write,gauge,,,,"Number of write (write, pwrite, io_getevents, etc.) syscalls in fly",0,clickhouse,,, +clickhouse.metrics.ZooKeeperRequest,gauge,,,,Number of requests to ZooKeeper in fly.,0,clickhouse,,, +clickhouse.metrics.ZooKeeperSession,gauge,,,,"Number of sessions (connections) to ZooKeeper. Should be no more than one, because using more than one connection to ZooKeeper may lead to bugs due to lack of linearizability (stale reads) that ZooKeeper consistency model allows.",0,clickhouse,,, +clickhouse.metrics.ZooKeeperWatch,gauge,,,,Number of watches (event subscriptions) in ZooKeeper.,0,clickhouse,,, clickhouse.mmapped.file.current,gauge,,file,,Total number of mmapped files.,0,clickhouse,,, clickhouse.mmapped.file.size,gauge,,byte,,Sum size of mmapped file regions.,0,clickhouse,,, clickhouse.moves.executing.currently,gauge,,,,Number of currently executing moves,0,clickhouse,,, -clickhouse.mutations.failing,gauge,,operation,,Number of in-progress mutations for the table that have encountered a failure.,0,clickhouse,,, -clickhouse.mutations.in_progress,gauge,,operation,,Number of in-progress mutations for the table.,0,clickhouse,,, -clickhouse.mutations.oldest_age_seconds,gauge,,second,,Age in seconds of the oldest in-progress mutation for the table.,0,clickhouse,,, -clickhouse.mutations.parts_remaining,gauge,,item,,Total number of data parts still to be mutated across in-progress mutations.,0,clickhouse,,, clickhouse.network.receive.elapsed.time,gauge,,microsecond,,Total time spent waiting for data to receive or receiving data from the network.,0,clickhouse,,, clickhouse.network.receive.size.count,count,,byte,second,The number of bytes received from network.,0,clickhouse,,, clickhouse.network.receive.size.total,gauge,,byte,second,The total number of bytes received from network.,0,clickhouse,,, @@ -675,8 +3032,6 @@ clickhouse.parts.outdated,gauge,,item,,"Not active data part, but could be used clickhouse.parts.pre_active,gauge,,item,,[Only versions >= 22.7.1] The part is in data_parts but not used for SELECTs.,0,clickhouse,,, clickhouse.parts.precommitted,gauge,,item,,"The part is in data_parts, but not used for SELECTs.",0,clickhouse,,, clickhouse.parts.temporary,gauge,,item,,"The part is generating now, it is not in data_parts list.",0,clickhouse,,, -clickhouse.parts.threshold.delay_insert,gauge,,item,,"Server-level parts_to_delay_insert threshold from system.merge_tree_settings; INSERTs are throttled when a table's active part count reaches this value.",0,clickhouse,,, -clickhouse.parts.threshold.throw_insert,gauge,,item,,"Server-level parts_to_throw_insert threshold from system.merge_tree_settings; INSERTs are rejected when a table's active part count reaches this value.",0,clickhouse,,, clickhouse.parts.wide,gauge,,item,,Wide parts.,0,clickhouse,,, clickhouse.parts.wide.inserted.count,count,,,,Number of parts inserted in Wide format.,0,clickhouse,,, clickhouse.parts.wide.inserted.total,gauge,,,,Number of parts inserted in Wide format.,0,clickhouse,,, @@ -834,8 +3189,6 @@ clickhouse.replicas.parralel.requests.count,count,,,,Number of requests to the i clickhouse.replicas.parralel.requests.total,gauge,,,,Number of requests to the initiator.,0,clickhouse,,, clickhouse.replicas.parralel.used.count,count,,,,Number of replicas used to execute a query with task-based parallel replicas,0,clickhouse,,, clickhouse.replicas.parralel.used.total,gauge,,,,Number of replicas used to execute a query with task-based parallel replicas,0,clickhouse,,, -clickhouse.replication.queue_depth,gauge,,task,,Number of tasks currently in the replication queue for the table.,0,clickhouse,,, -clickhouse.replication.stuck_tasks,gauge,,task,,Number of replication queue tasks with num_tries greater than the stuck threshold.,0,clickhouse,,, clickhouse.s3.abort_multipart_upload.count,count,,,,Number of S3 API AbortMultipartUpload calls.,0,clickhouse,,, clickhouse.s3.abort_multipart_upload.total,gauge,,,,Number of S3 API AbortMultipartUpload calls.,0,clickhouse,,, clickhouse.s3.client.copy.reuse.count,count,,,,Number of S3 clients copies which reuse an existing auth provider from another client.,0,clickhouse,,, @@ -960,10 +3313,6 @@ clickhouse.syscall.write,gauge,,write,,"The number of write (write, pwrite, io_g clickhouse.syscall.write.wait,gauge,,percent,,The percentage of time spent waiting for write syscall during the last interval. This include writes to page cache.,0,clickhouse,,, clickhouse.table.buffer.row,gauge,,row,,The number of rows in buffers of Buffer tables.,0,clickhouse,,, clickhouse.table.buffer.size,gauge,,byte,,Size of buffers of Buffer tables.,0,clickhouse,,, -clickhouse.table.detached_parts.corrupted,gauge,,item,,Number of detached parts for the table that ClickHouse quarantined due to data integrity issues (broken/unexpected/covered-by-broken).,0,clickhouse,,, -clickhouse.table.detached_parts.count,gauge,,item,,Number of detached parts for the table.,0,clickhouse,,, -clickhouse.table.detached_parts.manual,gauge,,item,,Number of detached parts for the table that were detached by operator action (ALTER TABLE DETACH PART).,0,clickhouse,,, -clickhouse.table.detached_parts.other,gauge,,item,,Number of detached parts for the table from non-corruption reasons (noquorum/ignored/clone).,0,clickhouse,,, clickhouse.table.distributed.bytes.insert.broken,gauge,,,,Number of bytes for asynchronous insertion into Distributed tables that has been marked as broken. Number of bytes for every shard is summed.,0,clickhouse,,, clickhouse.table.distributed.bytes.insert.pending,gauge,,,,Number of pending bytes to process for asynchronous insertion into Distributed tables. Number of bytes for every shard is summed.,0,clickhouse,,, clickhouse.table.distributed.connection.inserted,gauge,,connection,,The number of connections to remote servers sending data that was INSERTed into Distributed tables. Both synchronous and asynchronous mode.,0,clickhouse,,, @@ -1038,16 +3387,6 @@ clickhouse.table.mergetree.row.current,gauge,,row,,The total number of rows in a clickhouse.table.mergetree.size,gauge,,byte,,The total size of all data part files of a MergeTree table.,0,clickhouse,,, clickhouse.table.mergetree.sorting.projection.time,gauge,,microsecond,,Time spent sorting blocks (for projection it might be a key different from table's sorting key),0,clickhouse,,, clickhouse.table.mergetree.storage.mark.cache,gauge,,byte,,The size of the cache of `marks` for StorageMergeTree.,0,clickhouse,,, -clickhouse.table.parts.active,gauge,,item,,Number of active data parts for the table.,0,clickhouse,,, -clickhouse.table.parts.bytes_on_disk,gauge,,byte,,Total bytes on disk used by active parts for the table.,0,clickhouse,,, -clickhouse.table.parts.compact,gauge,,item,,Number of active compact-format parts for the table.,0,clickhouse,,, -clickhouse.table.parts.compressed_bytes,gauge,,byte,,Total compressed data bytes across active parts for the table.,0,clickhouse,,, -clickhouse.table.parts.level_zero,gauge,,item,,Number of active level-0 (freshly inserted) parts for the table.,0,clickhouse,,, -clickhouse.table.parts.max_merge_level,gauge,,,,Highest merge level observed across active parts for the table.,0,clickhouse,,, -clickhouse.table.parts.oldest_part_age_seconds,gauge,,second,,Age in seconds of the oldest active part for the table.,0,clickhouse,,, -clickhouse.table.parts.rows,gauge,,row,,Total rows across active parts for the table.,0,clickhouse,,, -clickhouse.table.parts.uncompressed_bytes,gauge,,byte,,Total uncompressed data bytes across active parts for the table.,0,clickhouse,,, -clickhouse.table.parts.wide,gauge,,item,,Number of active wide-format parts for the table.,0,clickhouse,,, clickhouse.table.replica.change.hedged_requests.count,gauge,,timeout,,Count when timeout for changing replica expired in hedged requests.,0,clickhouse,,, clickhouse.table.replica.change.hedged_requests.total,gauge,,timeout,,Total count when timeout for changing replica expired in hedged requests.,0,clickhouse,,, clickhouse.table.replica.partial.shutdown.count,count,,,,How many times Replicated table has to deinitialize its state due to session expiration in ZooKeeper. The state is reinitialized every time when ZooKeeper is available again.,0,clickhouse,,, diff --git a/clickhouse/scripts/generate_metrics.py b/clickhouse/scripts/generate_metrics.py new file mode 100644 index 0000000000000..d9557f5ab6635 --- /dev/null +++ b/clickhouse/scripts/generate_metrics.py @@ -0,0 +1,537 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + + +import argparse +import collections +import csv +import itertools +import os +import pprint +import re +from dataclasses import dataclass +from enum import Enum, StrEnum +from typing import Iterable + +import requests + +stats = collections.Counter() + +HERE = os.path.dirname(os.path.abspath(__file__)) +TEMPLATES_DIR = os.path.join(HERE, 'templates') +INTEGRATION_DIR = os.path.join(HERE, '..') +QUERIES_DIR = os.path.join(INTEGRATION_DIR, 'datadog_checks', 'clickhouse', 'advanced_queries') +TESTS_DIR = os.path.join(INTEGRATION_DIR, 'tests') +METADATAFILE_PATH = os.path.join(INTEGRATION_DIR, 'metadata.csv') +METADATAFILE_LEGACY_PATH = os.path.join(INTEGRATION_DIR, 'metadata-legacy.csv') + +PREFIX_ASYNC_METRICS = 'asynchronous_metrics' +PREFIX_PROFILE_EVENTS = 'events' +PREFIX_CURRENT_METRICS = 'metrics' + +METRIC_PATTERN = re.compile(r'\s+M\((?P\w+),\s*"(?P[^"]+)"\)\s*\\?') +METRIC_TYPE_PATTERN = re.compile(r'\s+M\((?P\w+),\s*"(?P[^"]+)",\s*(?P[\w:]+)\)\s*\\?') +ASYNC_METRICS_PATTERN = re.compile( + r'new_values\["(?P[\w.]+)"\]\s*=\s*\{.*,\s*(?P"[^}]*")*?\s*(?:\w+\s*)?\}', re.MULTILINE +) + +RAW_SRC_URL = 'https://raw.githubusercontent.com/ClickHouse/ClickHouse/{branch}/src/' +SOURCE_URL_CURRENT_METRICS = RAW_SRC_URL + 'Common/CurrentMetrics.cpp' +SOURCE_URL_PROFILE_EVENTS = RAW_SRC_URL + 'Common/ProfileEvents.cpp' +SOURCE_URL_ASYNC_METRICS = RAW_SRC_URL + 'Common/AsynchronousMetrics.cpp' +SOURCE_URL_SERVER_ASYNC_METRICS = RAW_SRC_URL + 'Interpreters/ServerAsynchronousMetrics.cpp' + +INTEGRATION_NAME = 'clickhouse' + +VALUE_TYPE_COUNTER = 'counter' +VALUE_TYPE_NUMBER = 'ValueType::Number' +VALUE_TYPE_BYTES = 'ValueType::Bytes' +VALUE_TYPE_MILLISECONDS = 'ValueType::Milliseconds' +VALUE_TYPE_MICROSECONDS = 'ValueType::Microseconds' +VALUE_TYPE_NANOSECONDS = 'ValueType::Nanoseconds' + +# each value represents the following tuple (, ) +DD_VALUE_TYPES = { + VALUE_TYPE_COUNTER: ('gauge', None), + VALUE_TYPE_NUMBER: ('monotonic_gauge', None), + VALUE_TYPE_BYTES: ('monotonic_gauge', None), + VALUE_TYPE_MILLISECONDS: ('temporal_percent', 'millisecond'), + VALUE_TYPE_MICROSECONDS: ('temporal_percent', 'microsecond'), + VALUE_TYPE_NANOSECONDS: ('temporal_percent', 'nanosecond'), +} +VALUE_TYPE_POSTFIX_24_8 = { + 'Milliseconds': VALUE_TYPE_MILLISECONDS, + 'Microseconds': VALUE_TYPE_MICROSECONDS, + 'Nanoseconds': VALUE_TYPE_NANOSECONDS, +} + + +class MetricKind(StrEnum): + ASYNC_METRICS = 'async_metrics' + METRICS = 'metrics' + EVENTS = 'events' + + +@dataclass +class Template: + source_path: str + target_path: str + + +@dataclass +class MetricsGenerator: + kind: MetricKind + template: Template + is_optional: bool = False + + +class Templates(Enum): + QUERY_ASYNC_METRICS = Template( + source_path='system_async_metrics.tpl', + target_path=os.path.join(QUERIES_DIR, 'system_async_metrics.py'), + ) + QUERY_EVENTS = Template( + source_path='system_events.tpl', + target_path=os.path.join(QUERIES_DIR, 'system_events.py'), + ) + QUERY_METRICS = Template( + source_path='system_metrics.tpl', + target_path=os.path.join(QUERIES_DIR, 'system_metrics.py'), + ) + TESTS_METRICS = Template( + source_path='tests_metrics.tpl', + target_path=os.path.join(TESTS_DIR, 'advanced_metrics.py'), + ) + + +def versions() -> list[str]: + versions = os.getenv('VERSIONS') + if not versions: + print('VERSIONS variable is not defined') + exit(1) + + return versions.split(',') + + +def indent_line(string: str, indent: int = 4) -> str: + return ' ' * indent + string + + +def read_file(file, encoding='utf-8'): + with open(file, 'r', encoding=encoding) as f: + return f.read() + + +def write_file(file, contents, encoding='utf-8'): + with open(file, 'w', encoding=encoding) as f: + f.write(contents) + + +def generate_queries_file(template: Template, config: dict): + source_path = os.path.join(TEMPLATES_DIR, template.source_path) + if not os.path.exists(source_path): + print(f'Unknown template file: {source_path}') + exit(1) + + data = read_file(source_path) + target_dir = os.path.dirname(template.target_path) + if not os.path.exists(target_dir): + os.mkdir(target_dir) + write_file(template.target_path, data.format(**config)) + + +@dataclass +class ClickhouseMetric: + name: str + description: str + prefix: str + value_type: str | None = None + + def __eq__(self, other: 'ClickhouseMetric'): + return self.name == other.name + + def __lt__(self, other: 'ClickhouseMetric'): + return self.name < other.name + + def metric_name(self) -> str: + return f'{self.prefix}.{self.name}' + + def integration_name(self, postfix: str = '') -> str: + if len(postfix) > 0: + postfix = f'.{postfix}' + return f'{INTEGRATION_NAME}.{self.metric_name()}{postfix}' + + def unit_name(self) -> str: + return self.scale() or '' + + def metric_type_info(self) -> tuple[str, str | None]: + if self.value_type is None: + return ('gauge', None) + + return DD_VALUE_TYPES[self.value_type] + + def type(self) -> str: + return self.metric_type_info()[0] + + def scale(self) -> str | None: + return self.metric_type_info()[1] + + def get_query_item(self) -> str: + metric_type, scale = self.metric_type_info() + + metric_scale = '' + if scale is not None: + metric_scale = ", 'scale': '{scale}'".format(scale=scale) + + return "'{metric}': {{'name': '{metric_name}', 'type': '{metric_type}'{metric_scale}}}".format( + metric=self.name, + metric_name=self.metric_name(), + metric_type=metric_type, + metric_scale=metric_scale, + ) + + +def fetch_current_metrics(version: str) -> dict[str, ClickhouseMetric]: + raw_metrics = requests.get(SOURCE_URL_CURRENT_METRICS.format(branch=version), timeout=10).text + + result = {} + for match in METRIC_PATTERN.finditer(raw_metrics): + name, description = match.groups() + m = ClickhouseMetric(name=name, description=description, prefix=PREFIX_CURRENT_METRICS) + result[m.metric_name()] = m + + return result + + +def fetch_profile_events(version: str) -> dict[str, ClickhouseMetric]: + def extract_value_type_24_8(metric: str): + for metric_postfix in VALUE_TYPE_POSTFIX_24_8: + if metric.endswith(metric_postfix): + return VALUE_TYPE_POSTFIX_24_8[metric_postfix] + + return VALUE_TYPE_COUNTER + + raw_metrics = requests.get(SOURCE_URL_PROFILE_EVENTS.format(branch=version), timeout=10).text + + result = {} + if version == '24.8': + for match in METRIC_PATTERN.finditer(raw_metrics): + name, description = match.groups() + m = ClickhouseMetric( + name=name, + description=description, + prefix=PREFIX_PROFILE_EVENTS, + value_type=extract_value_type_24_8(name), + ) + result[m.metric_name()] = m + else: + for match in METRIC_TYPE_PATTERN.finditer(raw_metrics): + name, description, value_type = match.groups() + m = ClickhouseMetric( + name=name, + description=description, + prefix=PREFIX_PROFILE_EVENTS, + value_type=value_type, + ) + result[m.metric_name()] = m + + return result + + +def fetch_async_metrics(version: str) -> dict[str, ClickhouseMetric]: + def clean_description(description: str) -> str: + description = description.replace('"', ' ') + + return re.sub(r"\s+", " ", description).strip() + + result = {} + # common + raw_metrics = requests.get(SOURCE_URL_ASYNC_METRICS.format(branch=version), timeout=10).text + for match in ASYNC_METRICS_PATTERN.finditer(raw_metrics): + name, description = match.groups() + m = ClickhouseMetric(name=name, description=clean_description(description), prefix=PREFIX_ASYNC_METRICS) + result[m.metric_name()] = m + # server + raw_metrics = requests.get(SOURCE_URL_SERVER_ASYNC_METRICS.format(branch=version), timeout=10).text + for match in ASYNC_METRICS_PATTERN.finditer(raw_metrics): + name, description = match.groups() + m = ClickhouseMetric(name=name, description=clean_description(description), prefix=PREFIX_ASYNC_METRICS) + result[m.metric_name()] = m + + return result + + +def generate_queries(template: Template, metrics: Iterable[ClickhouseMetric]): + config = { + 'items': ',\n'.join(indent_line(metric.get_query_item(), 16) for metric in sorted(metrics)), + } + generate_queries_file(template, config) + + +def generate_metadata_file(metrics: Iterable[ClickhouseMetric]): + MAX_LENGTH = 400 + FILE_HEADERS = [ + 'metric_name', + 'metric_type', + 'interval', + 'unit_name', + 'per_unit_name', + 'description', + 'orientation', + 'integration', + 'short_name', + 'curated_metric', + 'sample_tags', + ] + metadata = [] + + def shorten_description(description: str, postfix: str = '') -> str: + ending = '' + if len(postfix) > 0: + ending = f' ({postfix})' + description = description + ending + if len(description) > MAX_LENGTH: + return description[: MAX_LENGTH - 3 - len(ending)] + '...' + ending + return description + + def add_metadata(metric: ClickhouseMetric, metric_type: str, metric_postfix: str = ''): + meta = dict.fromkeys(FILE_HEADERS, '') + meta['metric_name'] = metric.integration_name(postfix=metric_postfix) + meta['metric_type'] = metric_type + meta['description'] = shorten_description(metric.description, metric_postfix) + meta['orientation'] = 0 + meta['integration'] = INTEGRATION_NAME + meta['unit_name'] = metric.unit_name() + metadata.append(meta) + + def check_legacy_metadata(): + with open(METADATAFILE_LEGACY_PATH, newline='') as file: + reader = csv.DictReader(file) + if set(FILE_HEADERS) != set(reader.fieldnames): + print('Legacy metadata fieldnames mismatch:', reader.fieldnames) + exit(1) + for row in reader: + metadata.append(row) + + check_legacy_metadata() + + for metric in metrics: + match metric.type(): + case 'monotonic_gauge': + add_metadata(metric, metric_postfix='count', metric_type='count') + add_metadata(metric, metric_postfix='total', metric_type='gauge') + case _: + add_metadata(metric, metric_type='gauge') + + with open(METADATAFILE_PATH, 'w', encoding='utf-8') as f: + writer = csv.DictWriter(f, fieldnames=FILE_HEADERS) + writer.writeheader() + writer.writerows(sorted(metadata, key=lambda x: x.get('metric_name'))) + + +@dataclass +class CalculatedMetrics: + all: dict[str, ClickhouseMetric] + common: set[str] + unique: dict[str, set[str]] + optional: bool = False + + def get_metrics_names(self, metrics: set[str]) -> set[str]: + result = set() + for name in metrics: + metric = self.all[name] + match metric.type(): + case 'monotonic_gauge': + result.add(metric.integration_name(postfix='count')) + result.add(metric.integration_name(postfix='total')) + case _: + result.add(metric.integration_name()) + + return result + + def get_common_metrics(self) -> list[str]: + return list(self.get_metrics_names(self.common)) + + def get_versioned_metrics(self) -> dict[str, set[str]]: + result = {} + for version, metrics in self.unique.items(): + result[version] = self.get_metrics_names(metrics) + + return result + + +def calculate_metrics(generator: MetricsGenerator) -> CalculatedMetrics: + all_metrics: dict[str, ClickhouseMetric] = {} + versioned_metrics: dict[str, set[str]] = {} + + # calculate metrics for each version and the overall list + for version in versions(): + match generator.kind: + case MetricKind.METRICS: + metrics = fetch_current_metrics(version) + case MetricKind.EVENTS: + metrics = fetch_profile_events(version) + case MetricKind.ASYNC_METRICS: + metrics = fetch_async_metrics(version) + case _: + print(f'Unknown metric kind: {generator.kind}') + exit(1) + all_metrics.update(metrics) + versioned_metrics[version] = set(metrics.keys()) + + # calculate common metrics among all versions + common: set[str] = set() + for prev_version, next_version in itertools.pairwise(versions()): + prev_metrics: set[str] + next_metrics: set[str] + prev_metrics, next_metrics = versioned_metrics[prev_version], versioned_metrics[next_version] + if common: + common = common.intersection(prev_metrics).intersection(next_metrics) + else: + common = prev_metrics.intersection(next_metrics) + + # calculate unique metrics for each version based on the common list + diff: dict[str, set[str]] = {} + for version in versions(): + diff[version] = versioned_metrics[version].difference(common) + + return CalculatedMetrics(all=all_metrics, common=common, unique=diff, optional=generator.is_optional) + + +def generate_test_data(metrics_data: list[CalculatedMetrics]): + def printable_array(array: list, indent: int = 4) -> str: + return pprint.pformat(sorted(array), indent=indent) + + def constant_name(version: str, optional: bool = False) -> str: + postfix = 'OPTIONAL' if optional else 'METRICS' + + return f'V_{version}_{postfix}'.replace('.', '_') + + def printable_versioned_array(data: dict[str, set[str]], optional: bool = False) -> str: + result = [] + for version, metrics in data.items(): + const_name = constant_name(version, optional) + result.append('{const_name} = {items}'.format(const_name=const_name, items=printable_array(metrics))) + + return '\n\n'.join(result) + + def printable_consts_mapper(data: dict[str, set[str]], optional: bool = False, indent: int = 4) -> str: + result = [] + for version, _ in data.items(): + line = "'{version}': {const}".format(version=version, const=constant_name(version, optional)) + result.append(indent_line(line, indent)) + + return ',\n'.join(result) + + def deep_merge(left: dict[str, set[str]], right: dict[str, set[str]]) -> dict[str, set[str]]: + result = left.copy() + for key, value in right.items(): + if key in result: + result[key] = result[key] | value + else: + result[key] = value + + return result + + base_metrics: list[str] = [] + optional_metrics: list[str] = [] + versioned_base_metrics: dict[str, set[str]] = {} + versioned_optional_metrics: dict[str, set[str]] = {} + + for data in metrics_data: + common = data.get_common_metrics() + versioned = data.get_versioned_metrics() + if data.optional: + optional_metrics.extend(common) + versioned_optional_metrics = deep_merge(versioned_optional_metrics, versioned) + else: + base_metrics.extend(common) + versioned_base_metrics = deep_merge(versioned_base_metrics, versioned) + + config = { + 'versions': ', '.join(versions()), + 'base_metrics': printable_array(base_metrics), + 'optional_metrics': printable_array(optional_metrics), + 'versioned_base_metrics': printable_versioned_array(versioned_base_metrics), + 'versioned_optional_metrics': printable_versioned_array(versioned_optional_metrics, optional=True), + 'base_version_mapper': printable_consts_mapper(versioned_base_metrics), + 'optional_version_mapper': printable_consts_mapper(versioned_optional_metrics, optional=True), + } + generate_queries_file(Templates.TESTS_METRICS.value, config) + + +def generate(): + METRIC_GENERATORS = [ + MetricsGenerator( + kind=MetricKind.ASYNC_METRICS, + template=Templates.QUERY_ASYNC_METRICS.value, + is_optional=True, + ), + MetricsGenerator( + kind=MetricKind.EVENTS, + template=Templates.QUERY_EVENTS.value, + is_optional=True, + ), + MetricsGenerator( + kind=MetricKind.METRICS, + template=Templates.QUERY_METRICS.value, + is_optional=False, + ), + ] + + all: dict[str, ClickhouseMetric] = {} + calculated: list[CalculatedMetrics] = [] + + # generate query modules + for generator in METRIC_GENERATORS: + metrics = calculate_metrics(generator) + stats[generator.kind] = len(metrics.all) + generate_queries(generator.template, metrics.all.values()) + all.update(metrics.all) + calculated.append(metrics) + + # generate metadata.csv file + generate_metadata_file(all.values()) + + # generate unit test metrics + generate_test_data(calculated) + + +def print_stats() -> None: + print('The number of metrics:') + for kind, count in stats.items(): + print(f'- {kind}:', count) + print(f'Total: {stats.total()}') + print() + print('Note: Run `ddev test --fmt clickhouse` to fix formatting and linting errors.') + + +def main(): + """ + Generates and updates query modules for agent's Check, metrics for unit tests and metadata.csv file. + Templates are stored in `./scripts/templates/` folder. + + Query modules: + - generated from ClickHouse source files + - contain a complete intersection of all available metrics (for each supported system table) + + Test module: + - contains all the base and optional metrics for each version of ClickHouse for unit tests + + Metadata.csv file: + - contains all the metrics supported by ClickHouse integration + + To fix linters you need to run `ddev test --fmt clickhouse` in the end. + """ + parser = argparse.ArgumentParser( + description=main.__doc__, + epilog='Example: hatch run metrics:generate', + ) + _ = parser.parse_args() + generate() + print_stats() + + +if __name__ == '__main__': + main() diff --git a/clickhouse/scripts/templates/system_async_metrics.tpl b/clickhouse/scripts/templates/system_async_metrics.tpl new file mode 100644 index 0000000000000..e7d568cc7711b --- /dev/null +++ b/clickhouse/scripts/templates/system_async_metrics.tpl @@ -0,0 +1,27 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +# This file is autogenerated. +# To change this file you should edit scripts/templates/system_async_metrics.tpl and then run the following command: +# hatch run metrics:generate + +# https://clickhouse.com/docs/operations/system-tables/asynchronous_metrics +SystemAsynchronousMetrics = {{ + 'name': 'system_asynchronous_metrics', + 'query': 'SELECT value, metric FROM system.asynchronous_metrics', + 'columns': [ + {{ + 'name': 'metric_value', + 'type': 'source' + }}, + {{ + 'name': 'metric_name', + 'type': 'match', + 'source': 'metric_value', + 'items': {{ +{items} + }}, + }}, + ], +}} diff --git a/clickhouse/scripts/templates/system_events.tpl b/clickhouse/scripts/templates/system_events.tpl new file mode 100644 index 0000000000000..6520897aed02d --- /dev/null +++ b/clickhouse/scripts/templates/system_events.tpl @@ -0,0 +1,27 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +# This file is autogenerated. +# To change this file you should edit scripts/templates/system_events.tpl and then run the following command: +# hatch run metrics:generate + +# https://clickhouse.com/docs/operations/system-tables/events +SystemEvents = {{ + 'name': 'system_events', + 'query': 'SELECT value, event FROM system.events', + 'columns': [ + {{ + 'name': 'metric_value', + 'type': 'source' + }}, + {{ + 'name': 'metric_name', + 'type': 'match', + 'source': 'metric_value', + 'items': {{ +{items} + }}, + }}, + ], +}} diff --git a/clickhouse/scripts/templates/system_metrics.tpl b/clickhouse/scripts/templates/system_metrics.tpl new file mode 100644 index 0000000000000..652562873d7e7 --- /dev/null +++ b/clickhouse/scripts/templates/system_metrics.tpl @@ -0,0 +1,27 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +# This file is autogenerated. +# To change this file you should edit scripts/templates/system_metrics.tpl and then run the following command: +# hatch run metrics:generate + +# https://clickhouse.com/docs/operations/system-tables/metrics +SystemMetrics = {{ + 'name': 'system_metrics', + 'query': 'SELECT value, metric FROM system.metrics', + 'columns': [ + {{ + 'name': 'metric_value', + 'type': 'source' + }}, + {{ + 'name': 'metric_name', + 'type': 'match', + 'source': 'metric_value', + 'items': {{ +{items} + }}, + }}, + ], +}} diff --git a/clickhouse/scripts/templates/tests_metrics.tpl b/clickhouse/scripts/templates/tests_metrics.tpl new file mode 100644 index 0000000000000..7e0ee90e592eb --- /dev/null +++ b/clickhouse/scripts/templates/tests_metrics.tpl @@ -0,0 +1,35 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +# This file is autogenerated. +# To change this file you should edit scripts/templates/tests_metrics.tpl and then run the following command: +# hatch run metrics:generate + +# This is not actually every metric, but rather the metrics that are +# immediately available upon the start up of our environment. Some +# metrics take a while to show up and others we cannot trigger. +# Additionally, these are metrics that are present across all versions +# we support ({versions}). +BASE_METRICS = {base_metrics} + +# These are the common metrics that are not always available. +OPTIONAL_METRICS = {optional_metrics} + +{versioned_base_metrics} + +{versioned_optional_metrics} + +BASE_VERSION_MAPPER = {{ +{base_version_mapper} +}} + +OPTIONAL_VERSION_MAPPER = {{ +{optional_version_mapper} +}} + +def get_metrics(version: str) -> list[str]: + return BASE_METRICS + BASE_VERSION_MAPPER.get(version, []) + +def get_optional_metrics(version: str) -> list[str]: + return OPTIONAL_METRICS + OPTIONAL_VERSION_MAPPER.get(version, []) diff --git a/clickhouse/tests/advanced_metrics.py b/clickhouse/tests/advanced_metrics.py new file mode 100644 index 0000000000000..a1ea96b988680 --- /dev/null +++ b/clickhouse/tests/advanced_metrics.py @@ -0,0 +1,2819 @@ +# (C) Datadog, Inc. 2026-present +# All rights reserved +# Licensed under a 3-clause BSD style license (see LICENSE) + +# This file is autogenerated. +# To change this file you should edit scripts/templates/tests_metrics.tpl and then run the following command: +# hatch run metrics:generate + +# This is not actually every metric, but rather the metrics that are +# immediately available upon the start up of our environment. Some +# metrics take a while to show up and others we cannot trigger. +# Additionally, these are metrics that are present across all versions +# we support (24.8, 25.3, 25.8). +BASE_METRICS = [ + 'clickhouse.metrics.ActiveTimersInQueryProfiler', + 'clickhouse.metrics.AddressesActive', + 'clickhouse.metrics.AddressesBanned', + 'clickhouse.metrics.AggregatorThreads', + 'clickhouse.metrics.AggregatorThreadsActive', + 'clickhouse.metrics.AggregatorThreadsScheduled', + 'clickhouse.metrics.AsyncInsertCacheSize', + 'clickhouse.metrics.AsynchronousInsertQueueBytes', + 'clickhouse.metrics.AsynchronousInsertQueueSize', + 'clickhouse.metrics.AsynchronousInsertThreads', + 'clickhouse.metrics.AsynchronousInsertThreadsActive', + 'clickhouse.metrics.AsynchronousInsertThreadsScheduled', + 'clickhouse.metrics.AsynchronousReadWait', + 'clickhouse.metrics.AttachedDatabase', + 'clickhouse.metrics.AttachedDictionary', + 'clickhouse.metrics.AttachedTable', + 'clickhouse.metrics.AttachedView', + 'clickhouse.metrics.BackgroundBufferFlushSchedulePoolSize', + 'clickhouse.metrics.BackgroundBufferFlushSchedulePoolTask', + 'clickhouse.metrics.BackgroundCommonPoolSize', + 'clickhouse.metrics.BackgroundCommonPoolTask', + 'clickhouse.metrics.BackgroundDistributedSchedulePoolSize', + 'clickhouse.metrics.BackgroundDistributedSchedulePoolTask', + 'clickhouse.metrics.BackgroundFetchesPoolSize', + 'clickhouse.metrics.BackgroundFetchesPoolTask', + 'clickhouse.metrics.BackgroundMergesAndMutationsPoolSize', + 'clickhouse.metrics.BackgroundMergesAndMutationsPoolTask', + 'clickhouse.metrics.BackgroundMessageBrokerSchedulePoolSize', + 'clickhouse.metrics.BackgroundMessageBrokerSchedulePoolTask', + 'clickhouse.metrics.BackgroundMovePoolSize', + 'clickhouse.metrics.BackgroundMovePoolTask', + 'clickhouse.metrics.BackgroundSchedulePoolSize', + 'clickhouse.metrics.BackgroundSchedulePoolTask', + 'clickhouse.metrics.BackupsIOThreads', + 'clickhouse.metrics.BackupsIOThreadsActive', + 'clickhouse.metrics.BackupsIOThreadsScheduled', + 'clickhouse.metrics.BackupsThreads', + 'clickhouse.metrics.BackupsThreadsActive', + 'clickhouse.metrics.BackupsThreadsScheduled', + 'clickhouse.metrics.BrokenDistributedBytesToInsert', + 'clickhouse.metrics.BrokenDistributedFilesToInsert', + 'clickhouse.metrics.CacheDetachedFileSegments', + 'clickhouse.metrics.CacheDictionaryThreads', + 'clickhouse.metrics.CacheDictionaryThreadsActive', + 'clickhouse.metrics.CacheDictionaryThreadsScheduled', + 'clickhouse.metrics.CacheDictionaryUpdateQueueBatches', + 'clickhouse.metrics.CacheDictionaryUpdateQueueKeys', + 'clickhouse.metrics.CacheFileSegments', + 'clickhouse.metrics.CacheWarmerBytesInProgress', + 'clickhouse.metrics.ConcurrentHashJoinPoolThreads', + 'clickhouse.metrics.ConcurrentHashJoinPoolThreadsActive', + 'clickhouse.metrics.ConcurrentHashJoinPoolThreadsScheduled', + 'clickhouse.metrics.ContextLockWait', + 'clickhouse.metrics.CreatedTimersInQueryProfiler', + 'clickhouse.metrics.DDLWorkerThreads', + 'clickhouse.metrics.DDLWorkerThreadsActive', + 'clickhouse.metrics.DDLWorkerThreadsScheduled', + 'clickhouse.metrics.DatabaseCatalogThreads', + 'clickhouse.metrics.DatabaseCatalogThreadsActive', + 'clickhouse.metrics.DatabaseCatalogThreadsScheduled', + 'clickhouse.metrics.DatabaseOnDiskThreads', + 'clickhouse.metrics.DatabaseOnDiskThreadsActive', + 'clickhouse.metrics.DatabaseOnDiskThreadsScheduled', + 'clickhouse.metrics.DatabaseReplicatedCreateTablesThreads', + 'clickhouse.metrics.DatabaseReplicatedCreateTablesThreadsActive', + 'clickhouse.metrics.DatabaseReplicatedCreateTablesThreadsScheduled', + 'clickhouse.metrics.DelayedInserts', + 'clickhouse.metrics.DestroyAggregatesThreads', + 'clickhouse.metrics.DestroyAggregatesThreadsActive', + 'clickhouse.metrics.DestroyAggregatesThreadsScheduled', + 'clickhouse.metrics.DictCacheRequests', + 'clickhouse.metrics.DiskConnectionsStored', + 'clickhouse.metrics.DiskConnectionsTotal', + 'clickhouse.metrics.DiskObjectStorageAsyncThreads', + 'clickhouse.metrics.DiskObjectStorageAsyncThreadsActive', + 'clickhouse.metrics.DiskPlainRewritableAzureDirectoryMapSize', + 'clickhouse.metrics.DiskPlainRewritableAzureFileCount', + 'clickhouse.metrics.DiskPlainRewritableLocalDirectoryMapSize', + 'clickhouse.metrics.DiskPlainRewritableLocalFileCount', + 'clickhouse.metrics.DiskPlainRewritableS3DirectoryMapSize', + 'clickhouse.metrics.DiskPlainRewritableS3FileCount', + 'clickhouse.metrics.DiskS3NoSuchKeyErrors', + 'clickhouse.metrics.DiskSpaceReservedForMerge', + 'clickhouse.metrics.DistrCacheOpenedConnections', + 'clickhouse.metrics.DistrCacheReadRequests', + 'clickhouse.metrics.DistrCacheServerConnections', + 'clickhouse.metrics.DistrCacheUsedConnections', + 'clickhouse.metrics.DistrCacheWriteRequests', + 'clickhouse.metrics.DistributedBytesToInsert', + 'clickhouse.metrics.DistributedFilesToInsert', + 'clickhouse.metrics.DistributedInsertThreads', + 'clickhouse.metrics.DistributedInsertThreadsActive', + 'clickhouse.metrics.DistributedInsertThreadsScheduled', + 'clickhouse.metrics.DistributedSend', + 'clickhouse.metrics.EphemeralNode', + 'clickhouse.metrics.FilesystemCacheDelayedCleanupElements', + 'clickhouse.metrics.FilesystemCacheDownloadQueueElements', + 'clickhouse.metrics.FilesystemCacheElements', + 'clickhouse.metrics.FilesystemCacheHoldFileSegments', + 'clickhouse.metrics.FilesystemCacheReadBuffers', + 'clickhouse.metrics.FilesystemCacheSize', + 'clickhouse.metrics.FilesystemCacheSizeLimit', + 'clickhouse.metrics.FilteringMarksWithPrimaryKey', + 'clickhouse.metrics.FilteringMarksWithSecondaryKeys', + 'clickhouse.metrics.GlobalThread', + 'clickhouse.metrics.GlobalThreadActive', + 'clickhouse.metrics.GlobalThreadScheduled', + 'clickhouse.metrics.HTTPConnection', + 'clickhouse.metrics.HTTPConnectionsStored', + 'clickhouse.metrics.HTTPConnectionsTotal', + 'clickhouse.metrics.HashedDictionaryThreads', + 'clickhouse.metrics.HashedDictionaryThreadsActive', + 'clickhouse.metrics.HashedDictionaryThreadsScheduled', + 'clickhouse.metrics.IDiskCopierThreads', + 'clickhouse.metrics.IDiskCopierThreadsActive', + 'clickhouse.metrics.IDiskCopierThreadsScheduled', + 'clickhouse.metrics.IOPrefetchThreads', + 'clickhouse.metrics.IOPrefetchThreadsActive', + 'clickhouse.metrics.IOPrefetchThreadsScheduled', + 'clickhouse.metrics.IOThreads', + 'clickhouse.metrics.IOThreadsActive', + 'clickhouse.metrics.IOThreadsScheduled', + 'clickhouse.metrics.IOUringInFlightEvents', + 'clickhouse.metrics.IOUringPendingEvents', + 'clickhouse.metrics.IOWriterThreads', + 'clickhouse.metrics.IOWriterThreadsActive', + 'clickhouse.metrics.IOWriterThreadsScheduled', + 'clickhouse.metrics.InterserverConnection', + 'clickhouse.metrics.KafkaAssignedPartitions', + 'clickhouse.metrics.KafkaBackgroundReads', + 'clickhouse.metrics.KafkaConsumers', + 'clickhouse.metrics.KafkaConsumersInUse', + 'clickhouse.metrics.KafkaConsumersWithAssignment', + 'clickhouse.metrics.KafkaLibrdkafkaThreads', + 'clickhouse.metrics.KafkaProducers', + 'clickhouse.metrics.KafkaWrites', + 'clickhouse.metrics.KeeperAliveConnections', + 'clickhouse.metrics.KeeperOutstandingRequests', + 'clickhouse.metrics.LocalThread', + 'clickhouse.metrics.LocalThreadActive', + 'clickhouse.metrics.LocalThreadScheduled', + 'clickhouse.metrics.MMappedFileBytes', + 'clickhouse.metrics.MMappedFiles', + 'clickhouse.metrics.MarksLoaderThreads', + 'clickhouse.metrics.MarksLoaderThreadsActive', + 'clickhouse.metrics.MarksLoaderThreadsScheduled', + 'clickhouse.metrics.MaxDDLEntryID', + 'clickhouse.metrics.MaxPushedDDLEntryID', + 'clickhouse.metrics.MemoryTracking', + 'clickhouse.metrics.Merge', + 'clickhouse.metrics.MergeTreeAllRangesAnnouncementsSent', + 'clickhouse.metrics.MergeTreeBackgroundExecutorThreads', + 'clickhouse.metrics.MergeTreeBackgroundExecutorThreadsActive', + 'clickhouse.metrics.MergeTreeBackgroundExecutorThreadsScheduled', + 'clickhouse.metrics.MergeTreeDataSelectExecutorThreads', + 'clickhouse.metrics.MergeTreeDataSelectExecutorThreadsActive', + 'clickhouse.metrics.MergeTreeDataSelectExecutorThreadsScheduled', + 'clickhouse.metrics.MergeTreeOutdatedPartsLoaderThreads', + 'clickhouse.metrics.MergeTreeOutdatedPartsLoaderThreadsActive', + 'clickhouse.metrics.MergeTreeOutdatedPartsLoaderThreadsScheduled', + 'clickhouse.metrics.MergeTreePartsCleanerThreads', + 'clickhouse.metrics.MergeTreePartsCleanerThreadsActive', + 'clickhouse.metrics.MergeTreePartsCleanerThreadsScheduled', + 'clickhouse.metrics.MergeTreePartsLoaderThreads', + 'clickhouse.metrics.MergeTreePartsLoaderThreadsActive', + 'clickhouse.metrics.MergeTreePartsLoaderThreadsScheduled', + 'clickhouse.metrics.MergeTreeReadTaskRequestsSent', + 'clickhouse.metrics.MergeTreeUnexpectedPartsLoaderThreads', + 'clickhouse.metrics.MergeTreeUnexpectedPartsLoaderThreadsActive', + 'clickhouse.metrics.MergeTreeUnexpectedPartsLoaderThreadsScheduled', + 'clickhouse.metrics.MergesMutationsMemoryTracking', + 'clickhouse.metrics.Move', + 'clickhouse.metrics.MySQLConnection', + 'clickhouse.metrics.NetworkReceive', + 'clickhouse.metrics.NetworkSend', + 'clickhouse.metrics.ObjectStorageAzureThreads', + 'clickhouse.metrics.ObjectStorageAzureThreadsActive', + 'clickhouse.metrics.ObjectStorageAzureThreadsScheduled', + 'clickhouse.metrics.ObjectStorageS3Threads', + 'clickhouse.metrics.ObjectStorageS3ThreadsActive', + 'clickhouse.metrics.ObjectStorageS3ThreadsScheduled', + 'clickhouse.metrics.OpenFileForRead', + 'clickhouse.metrics.OpenFileForWrite', + 'clickhouse.metrics.OutdatedPartsLoadingThreads', + 'clickhouse.metrics.OutdatedPartsLoadingThreadsActive', + 'clickhouse.metrics.OutdatedPartsLoadingThreadsScheduled', + 'clickhouse.metrics.ParallelFormattingOutputFormatThreads', + 'clickhouse.metrics.ParallelFormattingOutputFormatThreadsActive', + 'clickhouse.metrics.ParallelFormattingOutputFormatThreadsScheduled', + 'clickhouse.metrics.ParquetEncoderThreads', + 'clickhouse.metrics.ParquetEncoderThreadsActive', + 'clickhouse.metrics.ParquetEncoderThreadsScheduled', + 'clickhouse.metrics.PartMutation', + 'clickhouse.metrics.PartsActive', + 'clickhouse.metrics.PartsCommitted', + 'clickhouse.metrics.PartsCompact', + 'clickhouse.metrics.PartsDeleteOnDestroy', + 'clickhouse.metrics.PartsDeleting', + 'clickhouse.metrics.PartsOutdated', + 'clickhouse.metrics.PartsPreActive', + 'clickhouse.metrics.PartsPreCommitted', + 'clickhouse.metrics.PartsTemporary', + 'clickhouse.metrics.PartsWide', + 'clickhouse.metrics.PendingAsyncInsert', + 'clickhouse.metrics.PostgreSQLConnection', + 'clickhouse.metrics.Query', + 'clickhouse.metrics.QueryPipelineExecutorThreads', + 'clickhouse.metrics.QueryPipelineExecutorThreadsActive', + 'clickhouse.metrics.QueryPipelineExecutorThreadsScheduled', + 'clickhouse.metrics.QueryPreempted', + 'clickhouse.metrics.QueryThread', + 'clickhouse.metrics.RWLockActiveReaders', + 'clickhouse.metrics.RWLockActiveWriters', + 'clickhouse.metrics.RWLockWaitingReaders', + 'clickhouse.metrics.RWLockWaitingWriters', + 'clickhouse.metrics.Read', + 'clickhouse.metrics.ReadTaskRequestsSent', + 'clickhouse.metrics.ReadonlyReplica', + 'clickhouse.metrics.RefreshableViews', + 'clickhouse.metrics.RefreshingViews', + 'clickhouse.metrics.RemoteRead', + 'clickhouse.metrics.ReplicatedChecks', + 'clickhouse.metrics.ReplicatedFetch', + 'clickhouse.metrics.ReplicatedSend', + 'clickhouse.metrics.RestartReplicaThreads', + 'clickhouse.metrics.RestartReplicaThreadsActive', + 'clickhouse.metrics.RestartReplicaThreadsScheduled', + 'clickhouse.metrics.RestoreThreads', + 'clickhouse.metrics.RestoreThreadsActive', + 'clickhouse.metrics.RestoreThreadsScheduled', + 'clickhouse.metrics.Revision', + 'clickhouse.metrics.S3Requests', + 'clickhouse.metrics.SendExternalTables', + 'clickhouse.metrics.SendScalars', + 'clickhouse.metrics.SharedMergeTreeFetch', + 'clickhouse.metrics.SharedMergeTreeThreads', + 'clickhouse.metrics.SharedMergeTreeThreadsActive', + 'clickhouse.metrics.SharedMergeTreeThreadsScheduled', + 'clickhouse.metrics.StartupSystemTablesThreads', + 'clickhouse.metrics.StartupSystemTablesThreadsActive', + 'clickhouse.metrics.StartupSystemTablesThreadsScheduled', + 'clickhouse.metrics.StorageBufferBytes', + 'clickhouse.metrics.StorageBufferFlushThreads', + 'clickhouse.metrics.StorageBufferFlushThreadsActive', + 'clickhouse.metrics.StorageBufferFlushThreadsScheduled', + 'clickhouse.metrics.StorageBufferRows', + 'clickhouse.metrics.StorageConnectionsStored', + 'clickhouse.metrics.StorageConnectionsTotal', + 'clickhouse.metrics.StorageDistributedThreads', + 'clickhouse.metrics.StorageDistributedThreadsActive', + 'clickhouse.metrics.StorageDistributedThreadsScheduled', + 'clickhouse.metrics.StorageHiveThreads', + 'clickhouse.metrics.StorageHiveThreadsActive', + 'clickhouse.metrics.StorageHiveThreadsScheduled', + 'clickhouse.metrics.StorageObjectStorageThreads', + 'clickhouse.metrics.StorageObjectStorageThreadsActive', + 'clickhouse.metrics.StorageObjectStorageThreadsScheduled', + 'clickhouse.metrics.StorageS3Threads', + 'clickhouse.metrics.StorageS3ThreadsActive', + 'clickhouse.metrics.StorageS3ThreadsScheduled', + 'clickhouse.metrics.SystemReplicasThreads', + 'clickhouse.metrics.SystemReplicasThreadsActive', + 'clickhouse.metrics.SystemReplicasThreadsScheduled', + 'clickhouse.metrics.TCPConnection', + 'clickhouse.metrics.TablesLoaderBackgroundThreads', + 'clickhouse.metrics.TablesLoaderBackgroundThreadsActive', + 'clickhouse.metrics.TablesLoaderBackgroundThreadsScheduled', + 'clickhouse.metrics.TablesLoaderForegroundThreads', + 'clickhouse.metrics.TablesLoaderForegroundThreadsActive', + 'clickhouse.metrics.TablesLoaderForegroundThreadsScheduled', + 'clickhouse.metrics.TablesToDropQueueSize', + 'clickhouse.metrics.TemporaryFilesForAggregation', + 'clickhouse.metrics.TemporaryFilesForJoin', + 'clickhouse.metrics.TemporaryFilesForSort', + 'clickhouse.metrics.TemporaryFilesUnknown', + 'clickhouse.metrics.ThreadPoolFSReaderThreads', + 'clickhouse.metrics.ThreadPoolFSReaderThreadsActive', + 'clickhouse.metrics.ThreadPoolFSReaderThreadsScheduled', + 'clickhouse.metrics.ThreadPoolRemoteFSReaderThreads', + 'clickhouse.metrics.ThreadPoolRemoteFSReaderThreadsActive', + 'clickhouse.metrics.ThreadPoolRemoteFSReaderThreadsScheduled', + 'clickhouse.metrics.ThreadsInOvercommitTracker', + 'clickhouse.metrics.TotalTemporaryFiles', + 'clickhouse.metrics.VersionInteger', + 'clickhouse.metrics.Write', + 'clickhouse.metrics.ZooKeeperRequest', + 'clickhouse.metrics.ZooKeeperSession', + 'clickhouse.metrics.ZooKeeperWatch', +] + +# These are the common metrics that are not always available. +OPTIONAL_METRICS = [ + 'clickhouse.asynchronous_metrics.AsynchronousHeavyMetricsCalculationTimeSpent', + 'clickhouse.asynchronous_metrics.AsynchronousHeavyMetricsUpdateInterval', + 'clickhouse.asynchronous_metrics.AsynchronousMetricsCalculationTimeSpent', + 'clickhouse.asynchronous_metrics.AsynchronousMetricsUpdateInterval', + 'clickhouse.asynchronous_metrics.CGroupMaxCPU', + 'clickhouse.asynchronous_metrics.CGroupMemoryTotal', + 'clickhouse.asynchronous_metrics.CGroupMemoryUsed', + 'clickhouse.asynchronous_metrics.FilesystemCacheBytes', + 'clickhouse.asynchronous_metrics.FilesystemCacheFiles', + 'clickhouse.asynchronous_metrics.FilesystemLogsPathAvailableBytes', + 'clickhouse.asynchronous_metrics.FilesystemLogsPathAvailableINodes', + 'clickhouse.asynchronous_metrics.FilesystemLogsPathTotalBytes', + 'clickhouse.asynchronous_metrics.FilesystemLogsPathTotalINodes', + 'clickhouse.asynchronous_metrics.FilesystemLogsPathUsedBytes', + 'clickhouse.asynchronous_metrics.FilesystemLogsPathUsedINodes', + 'clickhouse.asynchronous_metrics.FilesystemMainPathAvailableBytes', + 'clickhouse.asynchronous_metrics.FilesystemMainPathAvailableINodes', + 'clickhouse.asynchronous_metrics.FilesystemMainPathTotalBytes', + 'clickhouse.asynchronous_metrics.FilesystemMainPathTotalINodes', + 'clickhouse.asynchronous_metrics.FilesystemMainPathUsedBytes', + 'clickhouse.asynchronous_metrics.FilesystemMainPathUsedINodes', + 'clickhouse.asynchronous_metrics.HashTableStatsCacheEntries', + 'clickhouse.asynchronous_metrics.HashTableStatsCacheHits', + 'clickhouse.asynchronous_metrics.HashTableStatsCacheMisses', + 'clickhouse.asynchronous_metrics.Jitter', + 'clickhouse.asynchronous_metrics.LoadAverage1', + 'clickhouse.asynchronous_metrics.LoadAverage15', + 'clickhouse.asynchronous_metrics.LoadAverage5', + 'clickhouse.asynchronous_metrics.MaxPartCountForPartition', + 'clickhouse.asynchronous_metrics.MemoryCode', + 'clickhouse.asynchronous_metrics.MemoryDataAndStack', + 'clickhouse.asynchronous_metrics.MemoryResident', + 'clickhouse.asynchronous_metrics.MemoryResidentMax', + 'clickhouse.asynchronous_metrics.MemoryShared', + 'clickhouse.asynchronous_metrics.MemoryVirtual', + 'clickhouse.asynchronous_metrics.NumberOfDatabases', + 'clickhouse.asynchronous_metrics.NumberOfDetachedByUserParts', + 'clickhouse.asynchronous_metrics.NumberOfDetachedParts', + 'clickhouse.asynchronous_metrics.NumberOfTables', + 'clickhouse.asynchronous_metrics.NumberOfTablesSystem', + 'clickhouse.asynchronous_metrics.OSContextSwitches', + 'clickhouse.asynchronous_metrics.OSGuestNiceTimeNormalized', + 'clickhouse.asynchronous_metrics.OSGuestTimeNormalized', + 'clickhouse.asynchronous_metrics.OSIOWaitTimeNormalized', + 'clickhouse.asynchronous_metrics.OSIdleTimeNormalized', + 'clickhouse.asynchronous_metrics.OSInterrupts', + 'clickhouse.asynchronous_metrics.OSIrqTimeNormalized', + 'clickhouse.asynchronous_metrics.OSMemoryAvailable', + 'clickhouse.asynchronous_metrics.OSMemoryBuffers', + 'clickhouse.asynchronous_metrics.OSMemoryCached', + 'clickhouse.asynchronous_metrics.OSMemoryFreePlusCached', + 'clickhouse.asynchronous_metrics.OSMemoryFreeWithoutCached', + 'clickhouse.asynchronous_metrics.OSMemorySwapCached', + 'clickhouse.asynchronous_metrics.OSMemoryTotal', + 'clickhouse.asynchronous_metrics.OSNiceTimeNormalized', + 'clickhouse.asynchronous_metrics.OSOpenFiles', + 'clickhouse.asynchronous_metrics.OSProcessesBlocked', + 'clickhouse.asynchronous_metrics.OSProcessesCreated', + 'clickhouse.asynchronous_metrics.OSProcessesRunning', + 'clickhouse.asynchronous_metrics.OSSoftIrqTimeNormalized', + 'clickhouse.asynchronous_metrics.OSStealTimeNormalized', + 'clickhouse.asynchronous_metrics.OSSystemTimeNormalized', + 'clickhouse.asynchronous_metrics.OSThreadsRunnable', + 'clickhouse.asynchronous_metrics.OSThreadsTotal', + 'clickhouse.asynchronous_metrics.OSUptime', + 'clickhouse.asynchronous_metrics.OSUserTimeNormalized', + 'clickhouse.asynchronous_metrics.ReplicasMaxAbsoluteDelay', + 'clickhouse.asynchronous_metrics.ReplicasMaxInsertsInQueue', + 'clickhouse.asynchronous_metrics.ReplicasMaxMergesInQueue', + 'clickhouse.asynchronous_metrics.ReplicasMaxQueueSize', + 'clickhouse.asynchronous_metrics.ReplicasMaxRelativeDelay', + 'clickhouse.asynchronous_metrics.ReplicasSumInsertsInQueue', + 'clickhouse.asynchronous_metrics.ReplicasSumMergesInQueue', + 'clickhouse.asynchronous_metrics.ReplicasSumQueueSize', + 'clickhouse.asynchronous_metrics.TotalBytesOfMergeTreeTables', + 'clickhouse.asynchronous_metrics.TotalBytesOfMergeTreeTablesSystem', + 'clickhouse.asynchronous_metrics.TotalPartsOfMergeTreeTables', + 'clickhouse.asynchronous_metrics.TotalPartsOfMergeTreeTablesSystem', + 'clickhouse.asynchronous_metrics.TotalPrimaryKeyBytesInMemory', + 'clickhouse.asynchronous_metrics.TotalPrimaryKeyBytesInMemoryAllocated', + 'clickhouse.asynchronous_metrics.TotalRowsOfMergeTreeTables', + 'clickhouse.asynchronous_metrics.TotalRowsOfMergeTreeTablesSystem', + 'clickhouse.asynchronous_metrics.Uptime', + 'clickhouse.asynchronous_metrics.VMMaxMapCount', + 'clickhouse.asynchronous_metrics.VMNumMaps', + 'clickhouse.asynchronous_metrics.jemalloc.epoch', + 'clickhouse.events.AIORead.count', + 'clickhouse.events.AIORead.total', + 'clickhouse.events.AIOReadBytes.count', + 'clickhouse.events.AIOReadBytes.total', + 'clickhouse.events.AIOWrite.count', + 'clickhouse.events.AIOWrite.total', + 'clickhouse.events.AIOWriteBytes.count', + 'clickhouse.events.AIOWriteBytes.total', + 'clickhouse.events.AddressesDiscovered.count', + 'clickhouse.events.AddressesDiscovered.total', + 'clickhouse.events.AddressesExpired.count', + 'clickhouse.events.AddressesExpired.total', + 'clickhouse.events.AddressesMarkedAsFailed.count', + 'clickhouse.events.AddressesMarkedAsFailed.total', + 'clickhouse.events.AggregatingSortedMilliseconds', + 'clickhouse.events.AggregationHashTablesInitializedAsTwoLevel.count', + 'clickhouse.events.AggregationHashTablesInitializedAsTwoLevel.total', + 'clickhouse.events.AggregationOptimizedEqualRangesOfKeys.count', + 'clickhouse.events.AggregationOptimizedEqualRangesOfKeys.total', + 'clickhouse.events.AggregationPreallocatedElementsInHashTables.count', + 'clickhouse.events.AggregationPreallocatedElementsInHashTables.total', + 'clickhouse.events.ArenaAllocBytes.count', + 'clickhouse.events.ArenaAllocBytes.total', + 'clickhouse.events.ArenaAllocChunks.count', + 'clickhouse.events.ArenaAllocChunks.total', + 'clickhouse.events.AsyncInsertBytes.count', + 'clickhouse.events.AsyncInsertBytes.total', + 'clickhouse.events.AsyncInsertCacheHits.count', + 'clickhouse.events.AsyncInsertCacheHits.total', + 'clickhouse.events.AsyncInsertQuery.count', + 'clickhouse.events.AsyncInsertQuery.total', + 'clickhouse.events.AsyncInsertRows.count', + 'clickhouse.events.AsyncInsertRows.total', + 'clickhouse.events.AsyncLoaderWaitMicroseconds', + 'clickhouse.events.AsynchronousReadWaitMicroseconds', + 'clickhouse.events.AsynchronousReaderIgnoredBytes.count', + 'clickhouse.events.AsynchronousReaderIgnoredBytes.total', + 'clickhouse.events.AsynchronousRemoteReadWaitMicroseconds', + 'clickhouse.events.AzureCommitBlockList.count', + 'clickhouse.events.AzureCommitBlockList.total', + 'clickhouse.events.AzureCopyObject.count', + 'clickhouse.events.AzureCopyObject.total', + 'clickhouse.events.AzureCreateContainer.count', + 'clickhouse.events.AzureCreateContainer.total', + 'clickhouse.events.AzureDeleteObjects.count', + 'clickhouse.events.AzureDeleteObjects.total', + 'clickhouse.events.AzureGetObject.count', + 'clickhouse.events.AzureGetObject.total', + 'clickhouse.events.AzureGetProperties.count', + 'clickhouse.events.AzureGetProperties.total', + 'clickhouse.events.AzureListObjects.count', + 'clickhouse.events.AzureListObjects.total', + 'clickhouse.events.AzureStageBlock.count', + 'clickhouse.events.AzureStageBlock.total', + 'clickhouse.events.AzureUpload.count', + 'clickhouse.events.AzureUpload.total', + 'clickhouse.events.BackgroundLoadingMarksTasks.count', + 'clickhouse.events.BackgroundLoadingMarksTasks.total', + 'clickhouse.events.BackupEntriesCollectorForTablesDataMicroseconds', + 'clickhouse.events.BackupEntriesCollectorMicroseconds', + 'clickhouse.events.BackupEntriesCollectorRunPostTasksMicroseconds', + 'clickhouse.events.BackupReadMetadataMicroseconds', + 'clickhouse.events.BackupWriteMetadataMicroseconds', + 'clickhouse.events.BackupsOpenedForRead.count', + 'clickhouse.events.BackupsOpenedForRead.total', + 'clickhouse.events.BackupsOpenedForWrite.count', + 'clickhouse.events.BackupsOpenedForWrite.total', + 'clickhouse.events.CacheWarmerBytesDownloaded.count', + 'clickhouse.events.CacheWarmerBytesDownloaded.total', + 'clickhouse.events.CacheWarmerDataPartsDownloaded.count', + 'clickhouse.events.CacheWarmerDataPartsDownloaded.total', + 'clickhouse.events.CachedReadBufferCacheWriteBytes.count', + 'clickhouse.events.CachedReadBufferCacheWriteBytes.total', + 'clickhouse.events.CachedReadBufferCacheWriteMicroseconds', + 'clickhouse.events.CachedReadBufferCreateBufferMicroseconds', + 'clickhouse.events.CachedReadBufferReadFromCacheBytes.count', + 'clickhouse.events.CachedReadBufferReadFromCacheBytes.total', + 'clickhouse.events.CachedReadBufferReadFromCacheHits.count', + 'clickhouse.events.CachedReadBufferReadFromCacheHits.total', + 'clickhouse.events.CachedReadBufferReadFromCacheMicroseconds', + 'clickhouse.events.CachedReadBufferReadFromCacheMisses.count', + 'clickhouse.events.CachedReadBufferReadFromCacheMisses.total', + 'clickhouse.events.CachedReadBufferReadFromSourceBytes.count', + 'clickhouse.events.CachedReadBufferReadFromSourceBytes.total', + 'clickhouse.events.CachedReadBufferReadFromSourceMicroseconds', + 'clickhouse.events.CachedWriteBufferCacheWriteBytes.count', + 'clickhouse.events.CachedWriteBufferCacheWriteBytes.total', + 'clickhouse.events.CachedWriteBufferCacheWriteMicroseconds', + 'clickhouse.events.CannotRemoveEphemeralNode.count', + 'clickhouse.events.CannotRemoveEphemeralNode.total', + 'clickhouse.events.CannotWriteToWriteBufferDiscard.count', + 'clickhouse.events.CannotWriteToWriteBufferDiscard.total', + 'clickhouse.events.CollapsingSortedMilliseconds', + 'clickhouse.events.CompileExpressionsBytes.count', + 'clickhouse.events.CompileExpressionsBytes.total', + 'clickhouse.events.CompileExpressionsMicroseconds', + 'clickhouse.events.CompileFunction.count', + 'clickhouse.events.CompileFunction.total', + 'clickhouse.events.CompiledFunctionExecute.count', + 'clickhouse.events.CompiledFunctionExecute.total', + 'clickhouse.events.CompressedReadBufferBlocks.count', + 'clickhouse.events.CompressedReadBufferBlocks.total', + 'clickhouse.events.CompressedReadBufferBytes.count', + 'clickhouse.events.CompressedReadBufferBytes.total', + 'clickhouse.events.ConnectionPoolIsFullMicroseconds', + 'clickhouse.events.ContextLock.count', + 'clickhouse.events.ContextLock.total', + 'clickhouse.events.ContextLockWaitMicroseconds', + 'clickhouse.events.CreatedLogEntryForMerge.count', + 'clickhouse.events.CreatedLogEntryForMerge.total', + 'clickhouse.events.CreatedLogEntryForMutation.count', + 'clickhouse.events.CreatedLogEntryForMutation.total', + 'clickhouse.events.CreatedReadBufferDirectIO.count', + 'clickhouse.events.CreatedReadBufferDirectIO.total', + 'clickhouse.events.CreatedReadBufferDirectIOFailed.count', + 'clickhouse.events.CreatedReadBufferDirectIOFailed.total', + 'clickhouse.events.CreatedReadBufferMMap.count', + 'clickhouse.events.CreatedReadBufferMMap.total', + 'clickhouse.events.CreatedReadBufferMMapFailed.count', + 'clickhouse.events.CreatedReadBufferMMapFailed.total', + 'clickhouse.events.CreatedReadBufferOrdinary.count', + 'clickhouse.events.CreatedReadBufferOrdinary.total', + 'clickhouse.events.DNSError.count', + 'clickhouse.events.DNSError.total', + 'clickhouse.events.DataAfterMutationDiffersFromReplica.count', + 'clickhouse.events.DataAfterMutationDiffersFromReplica.total', + 'clickhouse.events.DelayedInserts.count', + 'clickhouse.events.DelayedInserts.total', + 'clickhouse.events.DelayedInsertsMilliseconds', + 'clickhouse.events.DelayedMutations.count', + 'clickhouse.events.DelayedMutations.total', + 'clickhouse.events.DelayedMutationsMilliseconds', + 'clickhouse.events.DictCacheKeysExpired.count', + 'clickhouse.events.DictCacheKeysExpired.total', + 'clickhouse.events.DictCacheKeysHit.count', + 'clickhouse.events.DictCacheKeysHit.total', + 'clickhouse.events.DictCacheKeysNotFound.count', + 'clickhouse.events.DictCacheKeysNotFound.total', + 'clickhouse.events.DictCacheKeysRequested.count', + 'clickhouse.events.DictCacheKeysRequested.total', + 'clickhouse.events.DictCacheKeysRequestedFound.count', + 'clickhouse.events.DictCacheKeysRequestedFound.total', + 'clickhouse.events.DictCacheKeysRequestedMiss.count', + 'clickhouse.events.DictCacheKeysRequestedMiss.total', + 'clickhouse.events.DictCacheLockReadNs', + 'clickhouse.events.DictCacheLockWriteNs', + 'clickhouse.events.DictCacheRequestTimeNs', + 'clickhouse.events.DictCacheRequests.count', + 'clickhouse.events.DictCacheRequests.total', + 'clickhouse.events.DirectorySync.count', + 'clickhouse.events.DirectorySync.total', + 'clickhouse.events.DirectorySyncElapsedMicroseconds', + 'clickhouse.events.DiskAzureCommitBlockList.count', + 'clickhouse.events.DiskAzureCommitBlockList.total', + 'clickhouse.events.DiskAzureCopyObject.count', + 'clickhouse.events.DiskAzureCopyObject.total', + 'clickhouse.events.DiskAzureCreateContainer.count', + 'clickhouse.events.DiskAzureCreateContainer.total', + 'clickhouse.events.DiskAzureDeleteObjects.count', + 'clickhouse.events.DiskAzureDeleteObjects.total', + 'clickhouse.events.DiskAzureGetObject.count', + 'clickhouse.events.DiskAzureGetObject.total', + 'clickhouse.events.DiskAzureGetProperties.count', + 'clickhouse.events.DiskAzureGetProperties.total', + 'clickhouse.events.DiskAzureListObjects.count', + 'clickhouse.events.DiskAzureListObjects.total', + 'clickhouse.events.DiskAzureStageBlock.count', + 'clickhouse.events.DiskAzureStageBlock.total', + 'clickhouse.events.DiskAzureUpload.count', + 'clickhouse.events.DiskAzureUpload.total', + 'clickhouse.events.DiskConnectionsCreated.count', + 'clickhouse.events.DiskConnectionsCreated.total', + 'clickhouse.events.DiskConnectionsElapsedMicroseconds', + 'clickhouse.events.DiskConnectionsErrors.count', + 'clickhouse.events.DiskConnectionsErrors.total', + 'clickhouse.events.DiskConnectionsExpired.count', + 'clickhouse.events.DiskConnectionsExpired.total', + 'clickhouse.events.DiskConnectionsPreserved.count', + 'clickhouse.events.DiskConnectionsPreserved.total', + 'clickhouse.events.DiskConnectionsReset.count', + 'clickhouse.events.DiskConnectionsReset.total', + 'clickhouse.events.DiskConnectionsReused.count', + 'clickhouse.events.DiskConnectionsReused.total', + 'clickhouse.events.DiskPlainRewritableAzureDirectoryCreated.count', + 'clickhouse.events.DiskPlainRewritableAzureDirectoryCreated.total', + 'clickhouse.events.DiskPlainRewritableAzureDirectoryRemoved.count', + 'clickhouse.events.DiskPlainRewritableAzureDirectoryRemoved.total', + 'clickhouse.events.DiskPlainRewritableLocalDirectoryCreated.count', + 'clickhouse.events.DiskPlainRewritableLocalDirectoryCreated.total', + 'clickhouse.events.DiskPlainRewritableLocalDirectoryRemoved.count', + 'clickhouse.events.DiskPlainRewritableLocalDirectoryRemoved.total', + 'clickhouse.events.DiskPlainRewritableS3DirectoryCreated.count', + 'clickhouse.events.DiskPlainRewritableS3DirectoryCreated.total', + 'clickhouse.events.DiskPlainRewritableS3DirectoryRemoved.count', + 'clickhouse.events.DiskPlainRewritableS3DirectoryRemoved.total', + 'clickhouse.events.DiskReadElapsedMicroseconds', + 'clickhouse.events.DiskS3AbortMultipartUpload.count', + 'clickhouse.events.DiskS3AbortMultipartUpload.total', + 'clickhouse.events.DiskS3CompleteMultipartUpload.count', + 'clickhouse.events.DiskS3CompleteMultipartUpload.total', + 'clickhouse.events.DiskS3CopyObject.count', + 'clickhouse.events.DiskS3CopyObject.total', + 'clickhouse.events.DiskS3CreateMultipartUpload.count', + 'clickhouse.events.DiskS3CreateMultipartUpload.total', + 'clickhouse.events.DiskS3DeleteObjects.count', + 'clickhouse.events.DiskS3DeleteObjects.total', + 'clickhouse.events.DiskS3GetObject.count', + 'clickhouse.events.DiskS3GetObject.total', + 'clickhouse.events.DiskS3GetObjectAttributes.count', + 'clickhouse.events.DiskS3GetObjectAttributes.total', + 'clickhouse.events.DiskS3GetRequestThrottlerCount.count', + 'clickhouse.events.DiskS3GetRequestThrottlerCount.total', + 'clickhouse.events.DiskS3GetRequestThrottlerSleepMicroseconds', + 'clickhouse.events.DiskS3HeadObject.count', + 'clickhouse.events.DiskS3HeadObject.total', + 'clickhouse.events.DiskS3ListObjects.count', + 'clickhouse.events.DiskS3ListObjects.total', + 'clickhouse.events.DiskS3PutObject.count', + 'clickhouse.events.DiskS3PutObject.total', + 'clickhouse.events.DiskS3PutRequestThrottlerCount.count', + 'clickhouse.events.DiskS3PutRequestThrottlerCount.total', + 'clickhouse.events.DiskS3PutRequestThrottlerSleepMicroseconds', + 'clickhouse.events.DiskS3ReadMicroseconds', + 'clickhouse.events.DiskS3ReadRequestsCount.count', + 'clickhouse.events.DiskS3ReadRequestsCount.total', + 'clickhouse.events.DiskS3ReadRequestsErrors.count', + 'clickhouse.events.DiskS3ReadRequestsErrors.total', + 'clickhouse.events.DiskS3ReadRequestsRedirects.count', + 'clickhouse.events.DiskS3ReadRequestsRedirects.total', + 'clickhouse.events.DiskS3ReadRequestsThrottling.count', + 'clickhouse.events.DiskS3ReadRequestsThrottling.total', + 'clickhouse.events.DiskS3UploadPart.count', + 'clickhouse.events.DiskS3UploadPart.total', + 'clickhouse.events.DiskS3UploadPartCopy.count', + 'clickhouse.events.DiskS3UploadPartCopy.total', + 'clickhouse.events.DiskS3WriteMicroseconds', + 'clickhouse.events.DiskS3WriteRequestsCount.count', + 'clickhouse.events.DiskS3WriteRequestsCount.total', + 'clickhouse.events.DiskS3WriteRequestsErrors.count', + 'clickhouse.events.DiskS3WriteRequestsErrors.total', + 'clickhouse.events.DiskS3WriteRequestsRedirects.count', + 'clickhouse.events.DiskS3WriteRequestsRedirects.total', + 'clickhouse.events.DiskS3WriteRequestsThrottling.count', + 'clickhouse.events.DiskS3WriteRequestsThrottling.total', + 'clickhouse.events.DiskWriteElapsedMicroseconds', + 'clickhouse.events.DistrCacheConnectAttempts.count', + 'clickhouse.events.DistrCacheConnectAttempts.total', + 'clickhouse.events.DistrCacheConnectMicroseconds', + 'clickhouse.events.DistrCacheFallbackReadMicroseconds', + 'clickhouse.events.DistrCacheGetResponseMicroseconds', + 'clickhouse.events.DistrCacheLockRegistryMicroseconds', + 'clickhouse.events.DistrCacheNextImplMicroseconds', + 'clickhouse.events.DistrCacheOpenedConnections.count', + 'clickhouse.events.DistrCacheOpenedConnections.total', + 'clickhouse.events.DistrCachePackets.count', + 'clickhouse.events.DistrCachePackets.total', + 'clickhouse.events.DistrCachePrecomputeRangesMicroseconds', + 'clickhouse.events.DistrCacheReadMicroseconds', + 'clickhouse.events.DistrCacheRegistryUpdateMicroseconds', + 'clickhouse.events.DistrCacheRegistryUpdates.count', + 'clickhouse.events.DistrCacheRegistryUpdates.total', + 'clickhouse.events.DistrCacheReusedConnections.count', + 'clickhouse.events.DistrCacheReusedConnections.total', + 'clickhouse.events.DistrCacheServerProcessRequestMicroseconds', + 'clickhouse.events.DistrCacheServerSwitches.count', + 'clickhouse.events.DistrCacheServerSwitches.total', + 'clickhouse.events.DistrCacheStartRangeMicroseconds', + 'clickhouse.events.DistrCacheUnusedPackets.count', + 'clickhouse.events.DistrCacheUnusedPackets.total', + 'clickhouse.events.DistributedAsyncInsertionFailures.count', + 'clickhouse.events.DistributedAsyncInsertionFailures.total', + 'clickhouse.events.DistributedConnectionFailAtAll.count', + 'clickhouse.events.DistributedConnectionFailAtAll.total', + 'clickhouse.events.DistributedConnectionFailTry.count', + 'clickhouse.events.DistributedConnectionFailTry.total', + 'clickhouse.events.DistributedConnectionMissingTable.count', + 'clickhouse.events.DistributedConnectionMissingTable.total', + 'clickhouse.events.DistributedConnectionSkipReadOnlyReplica.count', + 'clickhouse.events.DistributedConnectionSkipReadOnlyReplica.total', + 'clickhouse.events.DistributedConnectionStaleReplica.count', + 'clickhouse.events.DistributedConnectionStaleReplica.total', + 'clickhouse.events.DistributedConnectionTries.count', + 'clickhouse.events.DistributedConnectionTries.total', + 'clickhouse.events.DistributedConnectionUsable.count', + 'clickhouse.events.DistributedConnectionUsable.total', + 'clickhouse.events.DistributedDelayedInserts.count', + 'clickhouse.events.DistributedDelayedInserts.total', + 'clickhouse.events.DistributedDelayedInsertsMilliseconds', + 'clickhouse.events.DistributedRejectedInserts.count', + 'clickhouse.events.DistributedRejectedInserts.total', + 'clickhouse.events.DistributedSyncInsertionTimeoutExceeded.count', + 'clickhouse.events.DistributedSyncInsertionTimeoutExceeded.total', + 'clickhouse.events.DuplicatedInsertedBlocks.count', + 'clickhouse.events.DuplicatedInsertedBlocks.total', + 'clickhouse.events.EngineFileLikeReadFiles.count', + 'clickhouse.events.EngineFileLikeReadFiles.total', + 'clickhouse.events.ExecuteShellCommand.count', + 'clickhouse.events.ExecuteShellCommand.total', + 'clickhouse.events.ExternalAggregationCompressedBytes.count', + 'clickhouse.events.ExternalAggregationCompressedBytes.total', + 'clickhouse.events.ExternalAggregationMerge.count', + 'clickhouse.events.ExternalAggregationMerge.total', + 'clickhouse.events.ExternalAggregationUncompressedBytes.count', + 'clickhouse.events.ExternalAggregationUncompressedBytes.total', + 'clickhouse.events.ExternalAggregationWritePart.count', + 'clickhouse.events.ExternalAggregationWritePart.total', + 'clickhouse.events.ExternalDataSourceLocalCacheReadBytes.count', + 'clickhouse.events.ExternalDataSourceLocalCacheReadBytes.total', + 'clickhouse.events.ExternalJoinCompressedBytes.count', + 'clickhouse.events.ExternalJoinCompressedBytes.total', + 'clickhouse.events.ExternalJoinMerge.count', + 'clickhouse.events.ExternalJoinMerge.total', + 'clickhouse.events.ExternalJoinUncompressedBytes.count', + 'clickhouse.events.ExternalJoinUncompressedBytes.total', + 'clickhouse.events.ExternalJoinWritePart.count', + 'clickhouse.events.ExternalJoinWritePart.total', + 'clickhouse.events.ExternalProcessingCompressedBytesTotal.count', + 'clickhouse.events.ExternalProcessingCompressedBytesTotal.total', + 'clickhouse.events.ExternalProcessingFilesTotal.count', + 'clickhouse.events.ExternalProcessingFilesTotal.total', + 'clickhouse.events.ExternalProcessingUncompressedBytesTotal.count', + 'clickhouse.events.ExternalProcessingUncompressedBytesTotal.total', + 'clickhouse.events.ExternalSortCompressedBytes.count', + 'clickhouse.events.ExternalSortCompressedBytes.total', + 'clickhouse.events.ExternalSortMerge.count', + 'clickhouse.events.ExternalSortMerge.total', + 'clickhouse.events.ExternalSortUncompressedBytes.count', + 'clickhouse.events.ExternalSortUncompressedBytes.total', + 'clickhouse.events.ExternalSortWritePart.count', + 'clickhouse.events.ExternalSortWritePart.total', + 'clickhouse.events.FailedAsyncInsertQuery.count', + 'clickhouse.events.FailedAsyncInsertQuery.total', + 'clickhouse.events.FailedInsertQuery.count', + 'clickhouse.events.FailedInsertQuery.total', + 'clickhouse.events.FailedQuery.count', + 'clickhouse.events.FailedQuery.total', + 'clickhouse.events.FailedSelectQuery.count', + 'clickhouse.events.FailedSelectQuery.total', + 'clickhouse.events.FileOpen.count', + 'clickhouse.events.FileOpen.total', + 'clickhouse.events.FileSegmentCompleteMicroseconds', + 'clickhouse.events.FileSegmentFailToIncreasePriority.count', + 'clickhouse.events.FileSegmentFailToIncreasePriority.total', + 'clickhouse.events.FileSegmentHolderCompleteMicroseconds', + 'clickhouse.events.FileSegmentLockMicroseconds', + 'clickhouse.events.FileSegmentRemoveMicroseconds', + 'clickhouse.events.FileSegmentUseMicroseconds', + 'clickhouse.events.FileSegmentWaitMicroseconds', + 'clickhouse.events.FileSegmentWriteMicroseconds', + 'clickhouse.events.FileSync.count', + 'clickhouse.events.FileSync.total', + 'clickhouse.events.FileSyncElapsedMicroseconds', + 'clickhouse.events.FilesystemCacheEvictMicroseconds', + 'clickhouse.events.FilesystemCacheEvictedBytes.count', + 'clickhouse.events.FilesystemCacheEvictedBytes.total', + 'clickhouse.events.FilesystemCacheEvictedFileSegments.count', + 'clickhouse.events.FilesystemCacheEvictedFileSegments.total', + 'clickhouse.events.FilesystemCacheEvictionSkippedEvictingFileSegments.count', + 'clickhouse.events.FilesystemCacheEvictionSkippedEvictingFileSegments.total', + 'clickhouse.events.FilesystemCacheEvictionSkippedFileSegments.count', + 'clickhouse.events.FilesystemCacheEvictionSkippedFileSegments.total', + 'clickhouse.events.FilesystemCacheEvictionTries.count', + 'clickhouse.events.FilesystemCacheEvictionTries.total', + 'clickhouse.events.FilesystemCacheFailToReserveSpaceBecauseOfCacheResize.count', + 'clickhouse.events.FilesystemCacheFailToReserveSpaceBecauseOfCacheResize.total', + 'clickhouse.events.FilesystemCacheFailToReserveSpaceBecauseOfLockContention.count', + 'clickhouse.events.FilesystemCacheFailToReserveSpaceBecauseOfLockContention.total', + 'clickhouse.events.FilesystemCacheFreeSpaceKeepingThreadRun.count', + 'clickhouse.events.FilesystemCacheFreeSpaceKeepingThreadRun.total', + 'clickhouse.events.FilesystemCacheFreeSpaceKeepingThreadWorkMilliseconds', + 'clickhouse.events.FilesystemCacheGetMicroseconds', + 'clickhouse.events.FilesystemCacheGetOrSetMicroseconds', + 'clickhouse.events.FilesystemCacheHoldFileSegments.count', + 'clickhouse.events.FilesystemCacheHoldFileSegments.total', + 'clickhouse.events.FilesystemCacheLoadMetadataMicroseconds', + 'clickhouse.events.FilesystemCacheLockCacheMicroseconds', + 'clickhouse.events.FilesystemCacheLockKeyMicroseconds', + 'clickhouse.events.FilesystemCacheLockMetadataMicroseconds', + 'clickhouse.events.FilesystemCacheReserveMicroseconds', + 'clickhouse.events.FilesystemCacheUnusedHoldFileSegments.count', + 'clickhouse.events.FilesystemCacheUnusedHoldFileSegments.total', + 'clickhouse.events.FunctionExecute.count', + 'clickhouse.events.FunctionExecute.total', + 'clickhouse.events.GatheredColumns.count', + 'clickhouse.events.GatheredColumns.total', + 'clickhouse.events.GatheringColumnMilliseconds', + 'clickhouse.events.HTTPConnectionsCreated.count', + 'clickhouse.events.HTTPConnectionsCreated.total', + 'clickhouse.events.HTTPConnectionsElapsedMicroseconds', + 'clickhouse.events.HTTPConnectionsErrors.count', + 'clickhouse.events.HTTPConnectionsErrors.total', + 'clickhouse.events.HTTPConnectionsExpired.count', + 'clickhouse.events.HTTPConnectionsExpired.total', + 'clickhouse.events.HTTPConnectionsPreserved.count', + 'clickhouse.events.HTTPConnectionsPreserved.total', + 'clickhouse.events.HTTPConnectionsReset.count', + 'clickhouse.events.HTTPConnectionsReset.total', + 'clickhouse.events.HTTPConnectionsReused.count', + 'clickhouse.events.HTTPConnectionsReused.total', + 'clickhouse.events.HardPageFaults.count', + 'clickhouse.events.HardPageFaults.total', + 'clickhouse.events.HashJoinPreallocatedElementsInHashTables.count', + 'clickhouse.events.HashJoinPreallocatedElementsInHashTables.total', + 'clickhouse.events.HedgedRequestsChangeReplica.count', + 'clickhouse.events.HedgedRequestsChangeReplica.total', + 'clickhouse.events.IOBufferAllocBytes.count', + 'clickhouse.events.IOBufferAllocBytes.total', + 'clickhouse.events.IOBufferAllocs.count', + 'clickhouse.events.IOBufferAllocs.total', + 'clickhouse.events.IOUringCQEsCompleted.count', + 'clickhouse.events.IOUringCQEsCompleted.total', + 'clickhouse.events.IOUringCQEsFailed.count', + 'clickhouse.events.IOUringCQEsFailed.total', + 'clickhouse.events.IOUringSQEsResubmitsAsync.count', + 'clickhouse.events.IOUringSQEsResubmitsAsync.total', + 'clickhouse.events.IOUringSQEsResubmitsSync.count', + 'clickhouse.events.IOUringSQEsResubmitsSync.total', + 'clickhouse.events.IOUringSQEsSubmitted.count', + 'clickhouse.events.IOUringSQEsSubmitted.total', + 'clickhouse.events.IgnoredColdParts.count', + 'clickhouse.events.IgnoredColdParts.total', + 'clickhouse.events.InitialQuery.count', + 'clickhouse.events.InitialQuery.total', + 'clickhouse.events.InsertQueriesWithSubqueries.count', + 'clickhouse.events.InsertQueriesWithSubqueries.total', + 'clickhouse.events.InsertQuery.count', + 'clickhouse.events.InsertQuery.total', + 'clickhouse.events.InsertQueryTimeMicroseconds', + 'clickhouse.events.InsertedBytes.count', + 'clickhouse.events.InsertedBytes.total', + 'clickhouse.events.InsertedCompactParts.count', + 'clickhouse.events.InsertedCompactParts.total', + 'clickhouse.events.InsertedRows.count', + 'clickhouse.events.InsertedRows.total', + 'clickhouse.events.InsertedWideParts.count', + 'clickhouse.events.InsertedWideParts.total', + 'clickhouse.events.InterfaceHTTPReceiveBytes.count', + 'clickhouse.events.InterfaceHTTPReceiveBytes.total', + 'clickhouse.events.InterfaceHTTPSendBytes.count', + 'clickhouse.events.InterfaceHTTPSendBytes.total', + 'clickhouse.events.InterfaceInterserverReceiveBytes.count', + 'clickhouse.events.InterfaceInterserverReceiveBytes.total', + 'clickhouse.events.InterfaceInterserverSendBytes.count', + 'clickhouse.events.InterfaceInterserverSendBytes.total', + 'clickhouse.events.InterfaceMySQLReceiveBytes.count', + 'clickhouse.events.InterfaceMySQLReceiveBytes.total', + 'clickhouse.events.InterfaceMySQLSendBytes.count', + 'clickhouse.events.InterfaceMySQLSendBytes.total', + 'clickhouse.events.InterfaceNativeReceiveBytes.count', + 'clickhouse.events.InterfaceNativeReceiveBytes.total', + 'clickhouse.events.InterfaceNativeSendBytes.count', + 'clickhouse.events.InterfaceNativeSendBytes.total', + 'clickhouse.events.InterfacePostgreSQLReceiveBytes.count', + 'clickhouse.events.InterfacePostgreSQLReceiveBytes.total', + 'clickhouse.events.InterfacePostgreSQLSendBytes.count', + 'clickhouse.events.InterfacePostgreSQLSendBytes.total', + 'clickhouse.events.InterfacePrometheusReceiveBytes.count', + 'clickhouse.events.InterfacePrometheusReceiveBytes.total', + 'clickhouse.events.InterfacePrometheusSendBytes.count', + 'clickhouse.events.InterfacePrometheusSendBytes.total', + 'clickhouse.events.KafkaBackgroundReads.count', + 'clickhouse.events.KafkaBackgroundReads.total', + 'clickhouse.events.KafkaCommitFailures.count', + 'clickhouse.events.KafkaCommitFailures.total', + 'clickhouse.events.KafkaCommits.count', + 'clickhouse.events.KafkaCommits.total', + 'clickhouse.events.KafkaConsumerErrors.count', + 'clickhouse.events.KafkaConsumerErrors.total', + 'clickhouse.events.KafkaDirectReads.count', + 'clickhouse.events.KafkaDirectReads.total', + 'clickhouse.events.KafkaMessagesFailed.count', + 'clickhouse.events.KafkaMessagesFailed.total', + 'clickhouse.events.KafkaMessagesPolled.count', + 'clickhouse.events.KafkaMessagesPolled.total', + 'clickhouse.events.KafkaMessagesProduced.count', + 'clickhouse.events.KafkaMessagesProduced.total', + 'clickhouse.events.KafkaMessagesRead.count', + 'clickhouse.events.KafkaMessagesRead.total', + 'clickhouse.events.KafkaProducerErrors.count', + 'clickhouse.events.KafkaProducerErrors.total', + 'clickhouse.events.KafkaProducerFlushes.count', + 'clickhouse.events.KafkaProducerFlushes.total', + 'clickhouse.events.KafkaRebalanceAssignments.count', + 'clickhouse.events.KafkaRebalanceAssignments.total', + 'clickhouse.events.KafkaRebalanceErrors.count', + 'clickhouse.events.KafkaRebalanceErrors.total', + 'clickhouse.events.KafkaRebalanceRevocations.count', + 'clickhouse.events.KafkaRebalanceRevocations.total', + 'clickhouse.events.KafkaRowsRead.count', + 'clickhouse.events.KafkaRowsRead.total', + 'clickhouse.events.KafkaRowsRejected.count', + 'clickhouse.events.KafkaRowsRejected.total', + 'clickhouse.events.KafkaRowsWritten.count', + 'clickhouse.events.KafkaRowsWritten.total', + 'clickhouse.events.KafkaWrites.count', + 'clickhouse.events.KafkaWrites.total', + 'clickhouse.events.KeeperBatchMaxCount.count', + 'clickhouse.events.KeeperBatchMaxCount.total', + 'clickhouse.events.KeeperBatchMaxTotalSize.count', + 'clickhouse.events.KeeperBatchMaxTotalSize.total', + 'clickhouse.events.KeeperCheckRequest.count', + 'clickhouse.events.KeeperCheckRequest.total', + 'clickhouse.events.KeeperCommitWaitElapsedMicroseconds', + 'clickhouse.events.KeeperCommits.count', + 'clickhouse.events.KeeperCommits.total', + 'clickhouse.events.KeeperCommitsFailed.count', + 'clickhouse.events.KeeperCommitsFailed.total', + 'clickhouse.events.KeeperCreateRequest.count', + 'clickhouse.events.KeeperCreateRequest.total', + 'clickhouse.events.KeeperExistsRequest.count', + 'clickhouse.events.KeeperExistsRequest.total', + 'clickhouse.events.KeeperGetRequest.count', + 'clickhouse.events.KeeperGetRequest.total', + 'clickhouse.events.KeeperLatency', + 'clickhouse.events.KeeperListRequest.count', + 'clickhouse.events.KeeperListRequest.total', + 'clickhouse.events.KeeperLogsEntryReadFromCommitCache.count', + 'clickhouse.events.KeeperLogsEntryReadFromCommitCache.total', + 'clickhouse.events.KeeperLogsEntryReadFromFile.count', + 'clickhouse.events.KeeperLogsEntryReadFromFile.total', + 'clickhouse.events.KeeperLogsEntryReadFromLatestCache.count', + 'clickhouse.events.KeeperLogsEntryReadFromLatestCache.total', + 'clickhouse.events.KeeperLogsPrefetchedEntries.count', + 'clickhouse.events.KeeperLogsPrefetchedEntries.total', + 'clickhouse.events.KeeperMultiReadRequest.count', + 'clickhouse.events.KeeperMultiReadRequest.total', + 'clickhouse.events.KeeperMultiRequest.count', + 'clickhouse.events.KeeperMultiRequest.total', + 'clickhouse.events.KeeperPacketsReceived.count', + 'clickhouse.events.KeeperPacketsReceived.total', + 'clickhouse.events.KeeperPacketsSent.count', + 'clickhouse.events.KeeperPacketsSent.total', + 'clickhouse.events.KeeperPreprocessElapsedMicroseconds', + 'clickhouse.events.KeeperProcessElapsedMicroseconds', + 'clickhouse.events.KeeperReadSnapshot.count', + 'clickhouse.events.KeeperReadSnapshot.total', + 'clickhouse.events.KeeperReconfigRequest.count', + 'clickhouse.events.KeeperReconfigRequest.total', + 'clickhouse.events.KeeperRemoveRequest.count', + 'clickhouse.events.KeeperRemoveRequest.total', + 'clickhouse.events.KeeperRequestTotal.count', + 'clickhouse.events.KeeperRequestTotal.total', + 'clickhouse.events.KeeperSaveSnapshot.count', + 'clickhouse.events.KeeperSaveSnapshot.total', + 'clickhouse.events.KeeperSetRequest.count', + 'clickhouse.events.KeeperSetRequest.total', + 'clickhouse.events.KeeperSnapshotApplys.count', + 'clickhouse.events.KeeperSnapshotApplys.total', + 'clickhouse.events.KeeperSnapshotApplysFailed.count', + 'clickhouse.events.KeeperSnapshotApplysFailed.total', + 'clickhouse.events.KeeperSnapshotCreations.count', + 'clickhouse.events.KeeperSnapshotCreations.total', + 'clickhouse.events.KeeperSnapshotCreationsFailed.count', + 'clickhouse.events.KeeperSnapshotCreationsFailed.total', + 'clickhouse.events.KeeperStorageLockWaitMicroseconds', + 'clickhouse.events.KeeperTotalElapsedMicroseconds', + 'clickhouse.events.LoadedMarksCount.count', + 'clickhouse.events.LoadedMarksCount.total', + 'clickhouse.events.LoadedMarksMemoryBytes.count', + 'clickhouse.events.LoadedMarksMemoryBytes.total', + 'clickhouse.events.LocalReadThrottlerBytes.count', + 'clickhouse.events.LocalReadThrottlerBytes.total', + 'clickhouse.events.LocalReadThrottlerSleepMicroseconds', + 'clickhouse.events.LocalWriteThrottlerBytes.count', + 'clickhouse.events.LocalWriteThrottlerBytes.total', + 'clickhouse.events.LocalWriteThrottlerSleepMicroseconds', + 'clickhouse.events.LogDebug.count', + 'clickhouse.events.LogDebug.total', + 'clickhouse.events.LogError.count', + 'clickhouse.events.LogError.total', + 'clickhouse.events.LogFatal.count', + 'clickhouse.events.LogFatal.total', + 'clickhouse.events.LogInfo.count', + 'clickhouse.events.LogInfo.total', + 'clickhouse.events.LogTest.count', + 'clickhouse.events.LogTest.total', + 'clickhouse.events.LogTrace.count', + 'clickhouse.events.LogTrace.total', + 'clickhouse.events.LogWarning.count', + 'clickhouse.events.LogWarning.total', + 'clickhouse.events.MMappedFileCacheHits.count', + 'clickhouse.events.MMappedFileCacheHits.total', + 'clickhouse.events.MMappedFileCacheMisses.count', + 'clickhouse.events.MMappedFileCacheMisses.total', + 'clickhouse.events.MainConfigLoads.count', + 'clickhouse.events.MainConfigLoads.total', + 'clickhouse.events.MarkCacheHits.count', + 'clickhouse.events.MarkCacheHits.total', + 'clickhouse.events.MarkCacheMisses.count', + 'clickhouse.events.MarkCacheMisses.total', + 'clickhouse.events.MemoryAllocatorPurge.count', + 'clickhouse.events.MemoryAllocatorPurge.total', + 'clickhouse.events.MemoryAllocatorPurgeTimeMicroseconds', + 'clickhouse.events.MemoryOvercommitWaitTimeMicroseconds', + 'clickhouse.events.Merge.count', + 'clickhouse.events.Merge.total', + 'clickhouse.events.MergeExecuteMilliseconds', + 'clickhouse.events.MergeHorizontalStageExecuteMilliseconds', + 'clickhouse.events.MergeHorizontalStageTotalMilliseconds', + 'clickhouse.events.MergeProjectionStageExecuteMilliseconds', + 'clickhouse.events.MergeProjectionStageTotalMilliseconds', + 'clickhouse.events.MergeTotalMilliseconds', + 'clickhouse.events.MergeTreeAllRangesAnnouncementsSent.count', + 'clickhouse.events.MergeTreeAllRangesAnnouncementsSent.total', + 'clickhouse.events.MergeTreeAllRangesAnnouncementsSentElapsedMicroseconds', + 'clickhouse.events.MergeTreeDataProjectionWriterBlocks.count', + 'clickhouse.events.MergeTreeDataProjectionWriterBlocks.total', + 'clickhouse.events.MergeTreeDataProjectionWriterBlocksAlreadySorted.count', + 'clickhouse.events.MergeTreeDataProjectionWriterBlocksAlreadySorted.total', + 'clickhouse.events.MergeTreeDataProjectionWriterCompressedBytes.count', + 'clickhouse.events.MergeTreeDataProjectionWriterCompressedBytes.total', + 'clickhouse.events.MergeTreeDataProjectionWriterMergingBlocksMicroseconds', + 'clickhouse.events.MergeTreeDataProjectionWriterRows.count', + 'clickhouse.events.MergeTreeDataProjectionWriterRows.total', + 'clickhouse.events.MergeTreeDataProjectionWriterSortingBlocksMicroseconds', + 'clickhouse.events.MergeTreeDataProjectionWriterUncompressedBytes.count', + 'clickhouse.events.MergeTreeDataProjectionWriterUncompressedBytes.total', + 'clickhouse.events.MergeTreeDataWriterBlocks.count', + 'clickhouse.events.MergeTreeDataWriterBlocks.total', + 'clickhouse.events.MergeTreeDataWriterBlocksAlreadySorted.count', + 'clickhouse.events.MergeTreeDataWriterBlocksAlreadySorted.total', + 'clickhouse.events.MergeTreeDataWriterCompressedBytes.count', + 'clickhouse.events.MergeTreeDataWriterCompressedBytes.total', + 'clickhouse.events.MergeTreeDataWriterMergingBlocksMicroseconds', + 'clickhouse.events.MergeTreeDataWriterProjectionsCalculationMicroseconds', + 'clickhouse.events.MergeTreeDataWriterRows.count', + 'clickhouse.events.MergeTreeDataWriterRows.total', + 'clickhouse.events.MergeTreeDataWriterSkipIndicesCalculationMicroseconds', + 'clickhouse.events.MergeTreeDataWriterSortingBlocksMicroseconds', + 'clickhouse.events.MergeTreeDataWriterStatisticsCalculationMicroseconds', + 'clickhouse.events.MergeTreeDataWriterUncompressedBytes.count', + 'clickhouse.events.MergeTreeDataWriterUncompressedBytes.total', + 'clickhouse.events.MergeTreePrefetchedReadPoolInit', + 'clickhouse.events.MergeTreeReadTaskRequestsReceived.count', + 'clickhouse.events.MergeTreeReadTaskRequestsReceived.total', + 'clickhouse.events.MergeTreeReadTaskRequestsSent.count', + 'clickhouse.events.MergeTreeReadTaskRequestsSent.total', + 'clickhouse.events.MergeTreeReadTaskRequestsSentElapsedMicroseconds', + 'clickhouse.events.MergeVerticalStageExecuteMilliseconds', + 'clickhouse.events.MergeVerticalStageTotalMilliseconds', + 'clickhouse.events.MergedColumns.count', + 'clickhouse.events.MergedColumns.total', + 'clickhouse.events.MergedIntoCompactParts.count', + 'clickhouse.events.MergedIntoCompactParts.total', + 'clickhouse.events.MergedIntoWideParts.count', + 'clickhouse.events.MergedIntoWideParts.total', + 'clickhouse.events.MergedRows.count', + 'clickhouse.events.MergedRows.total', + 'clickhouse.events.MergedUncompressedBytes.count', + 'clickhouse.events.MergedUncompressedBytes.total', + 'clickhouse.events.MergingSortedMilliseconds', + 'clickhouse.events.MetadataFromKeeperBackgroundCleanupErrors.count', + 'clickhouse.events.MetadataFromKeeperBackgroundCleanupErrors.total', + 'clickhouse.events.MetadataFromKeeperBackgroundCleanupObjects.count', + 'clickhouse.events.MetadataFromKeeperBackgroundCleanupObjects.total', + 'clickhouse.events.MetadataFromKeeperBackgroundCleanupTransactions.count', + 'clickhouse.events.MetadataFromKeeperBackgroundCleanupTransactions.total', + 'clickhouse.events.MetadataFromKeeperCacheHit.count', + 'clickhouse.events.MetadataFromKeeperCacheHit.total', + 'clickhouse.events.MetadataFromKeeperCacheMiss.count', + 'clickhouse.events.MetadataFromKeeperCacheMiss.total', + 'clickhouse.events.MetadataFromKeeperCacheUpdateMicroseconds', + 'clickhouse.events.MetadataFromKeeperCleanupTransactionCommit.count', + 'clickhouse.events.MetadataFromKeeperCleanupTransactionCommit.total', + 'clickhouse.events.MetadataFromKeeperCleanupTransactionCommitRetry.count', + 'clickhouse.events.MetadataFromKeeperCleanupTransactionCommitRetry.total', + 'clickhouse.events.MetadataFromKeeperIndividualOperations.count', + 'clickhouse.events.MetadataFromKeeperIndividualOperations.total', + 'clickhouse.events.MetadataFromKeeperOperations.count', + 'clickhouse.events.MetadataFromKeeperOperations.total', + 'clickhouse.events.MetadataFromKeeperReconnects.count', + 'clickhouse.events.MetadataFromKeeperReconnects.total', + 'clickhouse.events.MetadataFromKeeperTransactionCommit.count', + 'clickhouse.events.MetadataFromKeeperTransactionCommit.total', + 'clickhouse.events.MetadataFromKeeperTransactionCommitRetry.count', + 'clickhouse.events.MetadataFromKeeperTransactionCommitRetry.total', + 'clickhouse.events.MetadataFromKeeperUpdateCacheOneLevel.count', + 'clickhouse.events.MetadataFromKeeperUpdateCacheOneLevel.total', + 'clickhouse.events.MutateTaskProjectionsCalculationMicroseconds', + 'clickhouse.events.MutatedRows.count', + 'clickhouse.events.MutatedRows.total', + 'clickhouse.events.MutatedUncompressedBytes.count', + 'clickhouse.events.MutatedUncompressedBytes.total', + 'clickhouse.events.MutationAllPartColumns.count', + 'clickhouse.events.MutationAllPartColumns.total', + 'clickhouse.events.MutationExecuteMilliseconds', + 'clickhouse.events.MutationSomePartColumns.count', + 'clickhouse.events.MutationSomePartColumns.total', + 'clickhouse.events.MutationTotalMilliseconds', + 'clickhouse.events.MutationTotalParts.count', + 'clickhouse.events.MutationTotalParts.total', + 'clickhouse.events.MutationUntouchedParts.count', + 'clickhouse.events.MutationUntouchedParts.total', + 'clickhouse.events.NetworkReceiveBytes.count', + 'clickhouse.events.NetworkReceiveBytes.total', + 'clickhouse.events.NetworkReceiveElapsedMicroseconds', + 'clickhouse.events.NetworkSendBytes.count', + 'clickhouse.events.NetworkSendBytes.total', + 'clickhouse.events.NetworkSendElapsedMicroseconds', + 'clickhouse.events.NotCreatedLogEntryForMerge.count', + 'clickhouse.events.NotCreatedLogEntryForMerge.total', + 'clickhouse.events.NotCreatedLogEntryForMutation.count', + 'clickhouse.events.NotCreatedLogEntryForMutation.total', + 'clickhouse.events.OSCPUVirtualTimeMicroseconds', + 'clickhouse.events.OSCPUWaitMicroseconds', + 'clickhouse.events.OSIOWaitMicroseconds', + 'clickhouse.events.OSReadBytes.count', + 'clickhouse.events.OSReadBytes.total', + 'clickhouse.events.OSReadChars.count', + 'clickhouse.events.OSReadChars.total', + 'clickhouse.events.OSWriteBytes.count', + 'clickhouse.events.OSWriteBytes.total', + 'clickhouse.events.OSWriteChars.count', + 'clickhouse.events.OSWriteChars.total', + 'clickhouse.events.ObjectStorageQueueCleanupMaxSetSizeOrTTLMicroseconds', + 'clickhouse.events.ObjectStorageQueueFailedFiles.count', + 'clickhouse.events.ObjectStorageQueueFailedFiles.total', + 'clickhouse.events.ObjectStorageQueueLockLocalFileStatusesMicroseconds', + 'clickhouse.events.ObjectStorageQueueProcessedFiles.count', + 'clickhouse.events.ObjectStorageQueueProcessedFiles.total', + 'clickhouse.events.ObjectStorageQueuePullMicroseconds', + 'clickhouse.events.ObsoleteReplicatedParts.count', + 'clickhouse.events.ObsoleteReplicatedParts.total', + 'clickhouse.events.OpenedFileCacheHits.count', + 'clickhouse.events.OpenedFileCacheHits.total', + 'clickhouse.events.OpenedFileCacheMicroseconds', + 'clickhouse.events.OpenedFileCacheMisses.count', + 'clickhouse.events.OpenedFileCacheMisses.total', + 'clickhouse.events.OtherQueryTimeMicroseconds', + 'clickhouse.events.OverflowAny.count', + 'clickhouse.events.OverflowAny.total', + 'clickhouse.events.OverflowBreak.count', + 'clickhouse.events.OverflowBreak.total', + 'clickhouse.events.OverflowThrow.count', + 'clickhouse.events.OverflowThrow.total', + 'clickhouse.events.ParallelReplicasAvailableCount.count', + 'clickhouse.events.ParallelReplicasAvailableCount.total', + 'clickhouse.events.ParallelReplicasCollectingOwnedSegmentsMicroseconds', + 'clickhouse.events.ParallelReplicasDeniedRequests.count', + 'clickhouse.events.ParallelReplicasDeniedRequests.total', + 'clickhouse.events.ParallelReplicasHandleAnnouncementMicroseconds', + 'clickhouse.events.ParallelReplicasHandleRequestMicroseconds', + 'clickhouse.events.ParallelReplicasNumRequests.count', + 'clickhouse.events.ParallelReplicasNumRequests.total', + 'clickhouse.events.ParallelReplicasProcessingPartsMicroseconds', + 'clickhouse.events.ParallelReplicasReadAssignedForStealingMarks.count', + 'clickhouse.events.ParallelReplicasReadAssignedForStealingMarks.total', + 'clickhouse.events.ParallelReplicasReadAssignedMarks.count', + 'clickhouse.events.ParallelReplicasReadAssignedMarks.total', + 'clickhouse.events.ParallelReplicasReadUnassignedMarks.count', + 'clickhouse.events.ParallelReplicasReadUnassignedMarks.total', + 'clickhouse.events.ParallelReplicasStealingByHashMicroseconds', + 'clickhouse.events.ParallelReplicasStealingLeftoversMicroseconds', + 'clickhouse.events.ParallelReplicasUnavailableCount.count', + 'clickhouse.events.ParallelReplicasUnavailableCount.total', + 'clickhouse.events.ParallelReplicasUsedCount.count', + 'clickhouse.events.ParallelReplicasUsedCount.total', + 'clickhouse.events.PartsLockHoldMicroseconds', + 'clickhouse.events.PartsLockWaitMicroseconds', + 'clickhouse.events.PerfAlignmentFaults.count', + 'clickhouse.events.PerfAlignmentFaults.total', + 'clickhouse.events.PerfBranchInstructions.count', + 'clickhouse.events.PerfBranchInstructions.total', + 'clickhouse.events.PerfBranchMisses.count', + 'clickhouse.events.PerfBranchMisses.total', + 'clickhouse.events.PerfBusCycles.count', + 'clickhouse.events.PerfBusCycles.total', + 'clickhouse.events.PerfCPUClock.count', + 'clickhouse.events.PerfCPUClock.total', + 'clickhouse.events.PerfCPUCycles.count', + 'clickhouse.events.PerfCPUCycles.total', + 'clickhouse.events.PerfCPUMigrations.count', + 'clickhouse.events.PerfCPUMigrations.total', + 'clickhouse.events.PerfCacheMisses.count', + 'clickhouse.events.PerfCacheMisses.total', + 'clickhouse.events.PerfCacheReferences.count', + 'clickhouse.events.PerfCacheReferences.total', + 'clickhouse.events.PerfContextSwitches.count', + 'clickhouse.events.PerfContextSwitches.total', + 'clickhouse.events.PerfDataTLBMisses.count', + 'clickhouse.events.PerfDataTLBMisses.total', + 'clickhouse.events.PerfDataTLBReferences.count', + 'clickhouse.events.PerfDataTLBReferences.total', + 'clickhouse.events.PerfEmulationFaults.count', + 'clickhouse.events.PerfEmulationFaults.total', + 'clickhouse.events.PerfInstructionTLBMisses.count', + 'clickhouse.events.PerfInstructionTLBMisses.total', + 'clickhouse.events.PerfInstructionTLBReferences.count', + 'clickhouse.events.PerfInstructionTLBReferences.total', + 'clickhouse.events.PerfInstructions.count', + 'clickhouse.events.PerfInstructions.total', + 'clickhouse.events.PerfLocalMemoryMisses.count', + 'clickhouse.events.PerfLocalMemoryMisses.total', + 'clickhouse.events.PerfLocalMemoryReferences.count', + 'clickhouse.events.PerfLocalMemoryReferences.total', + 'clickhouse.events.PerfMinEnabledRunningTime.count', + 'clickhouse.events.PerfMinEnabledRunningTime.total', + 'clickhouse.events.PerfMinEnabledTime.count', + 'clickhouse.events.PerfMinEnabledTime.total', + 'clickhouse.events.PerfRefCPUCycles.count', + 'clickhouse.events.PerfRefCPUCycles.total', + 'clickhouse.events.PerfStalledCyclesBackend.count', + 'clickhouse.events.PerfStalledCyclesBackend.total', + 'clickhouse.events.PerfStalledCyclesFrontend.count', + 'clickhouse.events.PerfStalledCyclesFrontend.total', + 'clickhouse.events.PerfTaskClock.count', + 'clickhouse.events.PerfTaskClock.total', + 'clickhouse.events.PolygonsAddedToPool.count', + 'clickhouse.events.PolygonsAddedToPool.total', + 'clickhouse.events.PolygonsInPoolAllocatedBytes.count', + 'clickhouse.events.PolygonsInPoolAllocatedBytes.total', + 'clickhouse.events.PreferredWarmedUnmergedParts.count', + 'clickhouse.events.PreferredWarmedUnmergedParts.total', + 'clickhouse.events.QueriesWithSubqueries.count', + 'clickhouse.events.QueriesWithSubqueries.total', + 'clickhouse.events.Query.count', + 'clickhouse.events.Query.total', + 'clickhouse.events.QueryCacheHits.count', + 'clickhouse.events.QueryCacheHits.total', + 'clickhouse.events.QueryCacheMisses.count', + 'clickhouse.events.QueryCacheMisses.total', + 'clickhouse.events.QueryMaskingRulesMatch.count', + 'clickhouse.events.QueryMaskingRulesMatch.total', + 'clickhouse.events.QueryMemoryLimitExceeded.count', + 'clickhouse.events.QueryMemoryLimitExceeded.total', + 'clickhouse.events.QueryProfilerConcurrencyOverruns.count', + 'clickhouse.events.QueryProfilerConcurrencyOverruns.total', + 'clickhouse.events.QueryProfilerErrors.count', + 'clickhouse.events.QueryProfilerErrors.total', + 'clickhouse.events.QueryProfilerRuns.count', + 'clickhouse.events.QueryProfilerRuns.total', + 'clickhouse.events.QueryProfilerSignalOverruns.count', + 'clickhouse.events.QueryProfilerSignalOverruns.total', + 'clickhouse.events.QueryTimeMicroseconds', + 'clickhouse.events.RWLockAcquiredReadLocks.count', + 'clickhouse.events.RWLockAcquiredReadLocks.total', + 'clickhouse.events.RWLockAcquiredWriteLocks.count', + 'clickhouse.events.RWLockAcquiredWriteLocks.total', + 'clickhouse.events.RWLockReadersWaitMilliseconds', + 'clickhouse.events.RWLockWritersWaitMilliseconds', + 'clickhouse.events.ReadBackoff.count', + 'clickhouse.events.ReadBackoff.total', + 'clickhouse.events.ReadBufferFromAzureBytes.count', + 'clickhouse.events.ReadBufferFromAzureBytes.total', + 'clickhouse.events.ReadBufferFromAzureInitMicroseconds', + 'clickhouse.events.ReadBufferFromAzureMicroseconds', + 'clickhouse.events.ReadBufferFromAzureRequestsErrors.count', + 'clickhouse.events.ReadBufferFromAzureRequestsErrors.total', + 'clickhouse.events.ReadBufferFromFileDescriptorRead.count', + 'clickhouse.events.ReadBufferFromFileDescriptorRead.total', + 'clickhouse.events.ReadBufferFromFileDescriptorReadBytes.count', + 'clickhouse.events.ReadBufferFromFileDescriptorReadBytes.total', + 'clickhouse.events.ReadBufferFromFileDescriptorReadFailed.count', + 'clickhouse.events.ReadBufferFromFileDescriptorReadFailed.total', + 'clickhouse.events.ReadBufferFromS3Bytes.count', + 'clickhouse.events.ReadBufferFromS3Bytes.total', + 'clickhouse.events.ReadBufferFromS3InitMicroseconds', + 'clickhouse.events.ReadBufferFromS3Microseconds', + 'clickhouse.events.ReadBufferFromS3RequestsErrors.count', + 'clickhouse.events.ReadBufferFromS3RequestsErrors.total', + 'clickhouse.events.ReadBufferSeekCancelConnection.count', + 'clickhouse.events.ReadBufferSeekCancelConnection.total', + 'clickhouse.events.ReadCompressedBytes.count', + 'clickhouse.events.ReadCompressedBytes.total', + 'clickhouse.events.ReadTaskRequestsReceived.count', + 'clickhouse.events.ReadTaskRequestsReceived.total', + 'clickhouse.events.ReadTaskRequestsSent.count', + 'clickhouse.events.ReadTaskRequestsSent.total', + 'clickhouse.events.ReadTaskRequestsSentElapsedMicroseconds', + 'clickhouse.events.ReadWriteBufferFromHTTPBytes.count', + 'clickhouse.events.ReadWriteBufferFromHTTPBytes.total', + 'clickhouse.events.ReadWriteBufferFromHTTPRequestsSent.count', + 'clickhouse.events.ReadWriteBufferFromHTTPRequestsSent.total', + 'clickhouse.events.RealTimeMicroseconds', + 'clickhouse.events.RegexpLocalCacheHit.count', + 'clickhouse.events.RegexpLocalCacheHit.total', + 'clickhouse.events.RegexpLocalCacheMiss.count', + 'clickhouse.events.RegexpLocalCacheMiss.total', + 'clickhouse.events.RegexpWithMultipleNeedlesCreated.count', + 'clickhouse.events.RegexpWithMultipleNeedlesCreated.total', + 'clickhouse.events.RegexpWithMultipleNeedlesGlobalCacheHit.count', + 'clickhouse.events.RegexpWithMultipleNeedlesGlobalCacheHit.total', + 'clickhouse.events.RegexpWithMultipleNeedlesGlobalCacheMiss.count', + 'clickhouse.events.RegexpWithMultipleNeedlesGlobalCacheMiss.total', + 'clickhouse.events.RejectedInserts.count', + 'clickhouse.events.RejectedInserts.total', + 'clickhouse.events.RejectedMutations.count', + 'clickhouse.events.RejectedMutations.total', + 'clickhouse.events.RemoteFSBuffers.count', + 'clickhouse.events.RemoteFSBuffers.total', + 'clickhouse.events.RemoteFSCancelledPrefetches.count', + 'clickhouse.events.RemoteFSCancelledPrefetches.total', + 'clickhouse.events.RemoteFSLazySeeks.count', + 'clickhouse.events.RemoteFSLazySeeks.total', + 'clickhouse.events.RemoteFSPrefetchedBytes.count', + 'clickhouse.events.RemoteFSPrefetchedBytes.total', + 'clickhouse.events.RemoteFSPrefetchedReads.count', + 'clickhouse.events.RemoteFSPrefetchedReads.total', + 'clickhouse.events.RemoteFSPrefetches.count', + 'clickhouse.events.RemoteFSPrefetches.total', + 'clickhouse.events.RemoteFSSeeks.count', + 'clickhouse.events.RemoteFSSeeks.total', + 'clickhouse.events.RemoteFSSeeksWithReset.count', + 'clickhouse.events.RemoteFSSeeksWithReset.total', + 'clickhouse.events.RemoteFSUnprefetchedBytes.count', + 'clickhouse.events.RemoteFSUnprefetchedBytes.total', + 'clickhouse.events.RemoteFSUnprefetchedReads.count', + 'clickhouse.events.RemoteFSUnprefetchedReads.total', + 'clickhouse.events.RemoteFSUnusedPrefetches.count', + 'clickhouse.events.RemoteFSUnusedPrefetches.total', + 'clickhouse.events.RemoteReadThrottlerBytes.count', + 'clickhouse.events.RemoteReadThrottlerBytes.total', + 'clickhouse.events.RemoteReadThrottlerSleepMicroseconds', + 'clickhouse.events.RemoteWriteThrottlerBytes.count', + 'clickhouse.events.RemoteWriteThrottlerBytes.total', + 'clickhouse.events.RemoteWriteThrottlerSleepMicroseconds', + 'clickhouse.events.ReplacingSortedMilliseconds', + 'clickhouse.events.ReplicaPartialShutdown.count', + 'clickhouse.events.ReplicaPartialShutdown.total', + 'clickhouse.events.ReplicatedCoveredPartsInZooKeeperOnStart.count', + 'clickhouse.events.ReplicatedCoveredPartsInZooKeeperOnStart.total', + 'clickhouse.events.ReplicatedDataLoss.count', + 'clickhouse.events.ReplicatedDataLoss.total', + 'clickhouse.events.ReplicatedPartChecks.count', + 'clickhouse.events.ReplicatedPartChecks.total', + 'clickhouse.events.ReplicatedPartChecksFailed.count', + 'clickhouse.events.ReplicatedPartChecksFailed.total', + 'clickhouse.events.ReplicatedPartFailedFetches.count', + 'clickhouse.events.ReplicatedPartFailedFetches.total', + 'clickhouse.events.ReplicatedPartFetches.count', + 'clickhouse.events.ReplicatedPartFetches.total', + 'clickhouse.events.ReplicatedPartFetchesOfMerged.count', + 'clickhouse.events.ReplicatedPartFetchesOfMerged.total', + 'clickhouse.events.ReplicatedPartMerges.count', + 'clickhouse.events.ReplicatedPartMerges.total', + 'clickhouse.events.ReplicatedPartMutations.count', + 'clickhouse.events.ReplicatedPartMutations.total', + 'clickhouse.events.RowsReadByMainReader.count', + 'clickhouse.events.RowsReadByMainReader.total', + 'clickhouse.events.RowsReadByPrewhereReaders.count', + 'clickhouse.events.RowsReadByPrewhereReaders.total', + 'clickhouse.events.S3AbortMultipartUpload.count', + 'clickhouse.events.S3AbortMultipartUpload.total', + 'clickhouse.events.S3Clients.count', + 'clickhouse.events.S3Clients.total', + 'clickhouse.events.S3CompleteMultipartUpload.count', + 'clickhouse.events.S3CompleteMultipartUpload.total', + 'clickhouse.events.S3CopyObject.count', + 'clickhouse.events.S3CopyObject.total', + 'clickhouse.events.S3CreateMultipartUpload.count', + 'clickhouse.events.S3CreateMultipartUpload.total', + 'clickhouse.events.S3DeleteObjects.count', + 'clickhouse.events.S3DeleteObjects.total', + 'clickhouse.events.S3GetObject.count', + 'clickhouse.events.S3GetObject.total', + 'clickhouse.events.S3GetObjectAttributes.count', + 'clickhouse.events.S3GetObjectAttributes.total', + 'clickhouse.events.S3GetRequestThrottlerCount.count', + 'clickhouse.events.S3GetRequestThrottlerCount.total', + 'clickhouse.events.S3GetRequestThrottlerSleepMicroseconds', + 'clickhouse.events.S3HeadObject.count', + 'clickhouse.events.S3HeadObject.total', + 'clickhouse.events.S3ListObjects.count', + 'clickhouse.events.S3ListObjects.total', + 'clickhouse.events.S3PutObject.count', + 'clickhouse.events.S3PutObject.total', + 'clickhouse.events.S3PutRequestThrottlerCount.count', + 'clickhouse.events.S3PutRequestThrottlerCount.total', + 'clickhouse.events.S3PutRequestThrottlerSleepMicroseconds', + 'clickhouse.events.S3QueueSetFileFailedMicroseconds', + 'clickhouse.events.S3QueueSetFileProcessedMicroseconds', + 'clickhouse.events.S3QueueSetFileProcessingMicroseconds', + 'clickhouse.events.S3ReadMicroseconds', + 'clickhouse.events.S3ReadRequestsCount.count', + 'clickhouse.events.S3ReadRequestsCount.total', + 'clickhouse.events.S3ReadRequestsErrors.count', + 'clickhouse.events.S3ReadRequestsErrors.total', + 'clickhouse.events.S3ReadRequestsRedirects.count', + 'clickhouse.events.S3ReadRequestsRedirects.total', + 'clickhouse.events.S3ReadRequestsThrottling.count', + 'clickhouse.events.S3ReadRequestsThrottling.total', + 'clickhouse.events.S3UploadPart.count', + 'clickhouse.events.S3UploadPart.total', + 'clickhouse.events.S3UploadPartCopy.count', + 'clickhouse.events.S3UploadPartCopy.total', + 'clickhouse.events.S3WriteMicroseconds', + 'clickhouse.events.S3WriteRequestsCount.count', + 'clickhouse.events.S3WriteRequestsCount.total', + 'clickhouse.events.S3WriteRequestsErrors.count', + 'clickhouse.events.S3WriteRequestsErrors.total', + 'clickhouse.events.S3WriteRequestsRedirects.count', + 'clickhouse.events.S3WriteRequestsRedirects.total', + 'clickhouse.events.S3WriteRequestsThrottling.count', + 'clickhouse.events.S3WriteRequestsThrottling.total', + 'clickhouse.events.ScalarSubqueriesCacheMiss.count', + 'clickhouse.events.ScalarSubqueriesCacheMiss.total', + 'clickhouse.events.ScalarSubqueriesGlobalCacheHit.count', + 'clickhouse.events.ScalarSubqueriesGlobalCacheHit.total', + 'clickhouse.events.ScalarSubqueriesLocalCacheHit.count', + 'clickhouse.events.ScalarSubqueriesLocalCacheHit.total', + 'clickhouse.events.SchemaInferenceCacheEvictions.count', + 'clickhouse.events.SchemaInferenceCacheEvictions.total', + 'clickhouse.events.SchemaInferenceCacheHits.count', + 'clickhouse.events.SchemaInferenceCacheHits.total', + 'clickhouse.events.SchemaInferenceCacheInvalidations.count', + 'clickhouse.events.SchemaInferenceCacheInvalidations.total', + 'clickhouse.events.SchemaInferenceCacheMisses.count', + 'clickhouse.events.SchemaInferenceCacheMisses.total', + 'clickhouse.events.SchemaInferenceCacheNumRowsHits.count', + 'clickhouse.events.SchemaInferenceCacheNumRowsHits.total', + 'clickhouse.events.SchemaInferenceCacheNumRowsMisses.count', + 'clickhouse.events.SchemaInferenceCacheNumRowsMisses.total', + 'clickhouse.events.SchemaInferenceCacheSchemaHits.count', + 'clickhouse.events.SchemaInferenceCacheSchemaHits.total', + 'clickhouse.events.SchemaInferenceCacheSchemaMisses.count', + 'clickhouse.events.SchemaInferenceCacheSchemaMisses.total', + 'clickhouse.events.Seek.count', + 'clickhouse.events.Seek.total', + 'clickhouse.events.SelectQueriesWithPrimaryKeyUsage.count', + 'clickhouse.events.SelectQueriesWithPrimaryKeyUsage.total', + 'clickhouse.events.SelectQueriesWithSubqueries.count', + 'clickhouse.events.SelectQueriesWithSubqueries.total', + 'clickhouse.events.SelectQuery.count', + 'clickhouse.events.SelectQuery.total', + 'clickhouse.events.SelectQueryTimeMicroseconds', + 'clickhouse.events.SelectedBytes.count', + 'clickhouse.events.SelectedBytes.total', + 'clickhouse.events.SelectedMarks.count', + 'clickhouse.events.SelectedMarks.total', + 'clickhouse.events.SelectedMarksTotal.count', + 'clickhouse.events.SelectedMarksTotal.total', + 'clickhouse.events.SelectedParts.count', + 'clickhouse.events.SelectedParts.total', + 'clickhouse.events.SelectedPartsTotal.count', + 'clickhouse.events.SelectedPartsTotal.total', + 'clickhouse.events.SelectedRanges.count', + 'clickhouse.events.SelectedRanges.total', + 'clickhouse.events.SelectedRows.count', + 'clickhouse.events.SelectedRows.total', + 'clickhouse.events.ServerStartupMilliseconds', + 'clickhouse.events.SleepFunctionCalls.count', + 'clickhouse.events.SleepFunctionCalls.total', + 'clickhouse.events.SleepFunctionElapsedMicroseconds', + 'clickhouse.events.SleepFunctionMicroseconds', + 'clickhouse.events.SlowRead.count', + 'clickhouse.events.SlowRead.total', + 'clickhouse.events.SoftPageFaults.count', + 'clickhouse.events.SoftPageFaults.total', + 'clickhouse.events.StorageBufferErrorOnFlush.count', + 'clickhouse.events.StorageBufferErrorOnFlush.total', + 'clickhouse.events.StorageBufferFlush.count', + 'clickhouse.events.StorageBufferFlush.total', + 'clickhouse.events.StorageBufferLayerLockReadersWaitMilliseconds', + 'clickhouse.events.StorageBufferLayerLockWritersWaitMilliseconds', + 'clickhouse.events.StorageBufferPassedAllMinThresholds.count', + 'clickhouse.events.StorageBufferPassedAllMinThresholds.total', + 'clickhouse.events.StorageBufferPassedBytesFlushThreshold.count', + 'clickhouse.events.StorageBufferPassedBytesFlushThreshold.total', + 'clickhouse.events.StorageBufferPassedBytesMaxThreshold.count', + 'clickhouse.events.StorageBufferPassedBytesMaxThreshold.total', + 'clickhouse.events.StorageBufferPassedRowsFlushThreshold.count', + 'clickhouse.events.StorageBufferPassedRowsFlushThreshold.total', + 'clickhouse.events.StorageBufferPassedRowsMaxThreshold.count', + 'clickhouse.events.StorageBufferPassedRowsMaxThreshold.total', + 'clickhouse.events.StorageBufferPassedTimeFlushThreshold.count', + 'clickhouse.events.StorageBufferPassedTimeFlushThreshold.total', + 'clickhouse.events.StorageBufferPassedTimeMaxThreshold.count', + 'clickhouse.events.StorageBufferPassedTimeMaxThreshold.total', + 'clickhouse.events.StorageConnectionsCreated.count', + 'clickhouse.events.StorageConnectionsCreated.total', + 'clickhouse.events.StorageConnectionsElapsedMicroseconds', + 'clickhouse.events.StorageConnectionsErrors.count', + 'clickhouse.events.StorageConnectionsErrors.total', + 'clickhouse.events.StorageConnectionsExpired.count', + 'clickhouse.events.StorageConnectionsExpired.total', + 'clickhouse.events.StorageConnectionsPreserved.count', + 'clickhouse.events.StorageConnectionsPreserved.total', + 'clickhouse.events.StorageConnectionsReset.count', + 'clickhouse.events.StorageConnectionsReset.total', + 'clickhouse.events.StorageConnectionsReused.count', + 'clickhouse.events.StorageConnectionsReused.total', + 'clickhouse.events.SummingSortedMilliseconds', + 'clickhouse.events.SuspendSendingQueryToShard.count', + 'clickhouse.events.SuspendSendingQueryToShard.total', + 'clickhouse.events.SynchronousReadWaitMicroseconds', + 'clickhouse.events.SynchronousRemoteReadWaitMicroseconds', + 'clickhouse.events.SystemTimeMicroseconds', + 'clickhouse.events.TableFunctionExecute.count', + 'clickhouse.events.TableFunctionExecute.total', + 'clickhouse.events.ThreadPoolReaderPageCacheHit.count', + 'clickhouse.events.ThreadPoolReaderPageCacheHit.total', + 'clickhouse.events.ThreadPoolReaderPageCacheHitBytes.count', + 'clickhouse.events.ThreadPoolReaderPageCacheHitBytes.total', + 'clickhouse.events.ThreadPoolReaderPageCacheHitElapsedMicroseconds', + 'clickhouse.events.ThreadPoolReaderPageCacheMiss.count', + 'clickhouse.events.ThreadPoolReaderPageCacheMiss.total', + 'clickhouse.events.ThreadPoolReaderPageCacheMissBytes.count', + 'clickhouse.events.ThreadPoolReaderPageCacheMissBytes.total', + 'clickhouse.events.ThreadPoolReaderPageCacheMissElapsedMicroseconds', + 'clickhouse.events.ThreadpoolReaderPrepareMicroseconds', + 'clickhouse.events.ThreadpoolReaderReadBytes.count', + 'clickhouse.events.ThreadpoolReaderReadBytes.total', + 'clickhouse.events.ThreadpoolReaderSubmit.count', + 'clickhouse.events.ThreadpoolReaderSubmit.total', + 'clickhouse.events.ThreadpoolReaderSubmitLookupInCacheMicroseconds', + 'clickhouse.events.ThreadpoolReaderSubmitReadSynchronously.count', + 'clickhouse.events.ThreadpoolReaderSubmitReadSynchronously.total', + 'clickhouse.events.ThreadpoolReaderSubmitReadSynchronouslyBytes.count', + 'clickhouse.events.ThreadpoolReaderSubmitReadSynchronouslyBytes.total', + 'clickhouse.events.ThreadpoolReaderSubmitReadSynchronouslyMicroseconds', + 'clickhouse.events.ThreadpoolReaderTaskMicroseconds', + 'clickhouse.events.ThrottlerSleepMicroseconds', + 'clickhouse.events.TinyS3Clients.count', + 'clickhouse.events.TinyS3Clients.total', + 'clickhouse.events.USearchAddComputedDistances.count', + 'clickhouse.events.USearchAddComputedDistances.total', + 'clickhouse.events.USearchAddCount.count', + 'clickhouse.events.USearchAddCount.total', + 'clickhouse.events.USearchAddVisitedMembers.count', + 'clickhouse.events.USearchAddVisitedMembers.total', + 'clickhouse.events.USearchSearchComputedDistances.count', + 'clickhouse.events.USearchSearchComputedDistances.total', + 'clickhouse.events.USearchSearchCount.count', + 'clickhouse.events.USearchSearchCount.total', + 'clickhouse.events.USearchSearchVisitedMembers.count', + 'clickhouse.events.USearchSearchVisitedMembers.total', + 'clickhouse.events.UncompressedCacheHits.count', + 'clickhouse.events.UncompressedCacheHits.total', + 'clickhouse.events.UncompressedCacheMisses.count', + 'clickhouse.events.UncompressedCacheMisses.total', + 'clickhouse.events.UncompressedCacheWeightLost.count', + 'clickhouse.events.UncompressedCacheWeightLost.total', + 'clickhouse.events.UserTimeMicroseconds', + 'clickhouse.events.VersionedCollapsingSortedMilliseconds', + 'clickhouse.events.WaitMarksLoadMicroseconds', + 'clickhouse.events.WaitPrefetchTaskMicroseconds', + 'clickhouse.events.WriteBufferFromFileDescriptorWrite.count', + 'clickhouse.events.WriteBufferFromFileDescriptorWrite.total', + 'clickhouse.events.WriteBufferFromFileDescriptorWriteBytes.count', + 'clickhouse.events.WriteBufferFromFileDescriptorWriteBytes.total', + 'clickhouse.events.WriteBufferFromFileDescriptorWriteFailed.count', + 'clickhouse.events.WriteBufferFromFileDescriptorWriteFailed.total', + 'clickhouse.events.WriteBufferFromS3Bytes.count', + 'clickhouse.events.WriteBufferFromS3Bytes.total', + 'clickhouse.events.WriteBufferFromS3Microseconds', + 'clickhouse.events.WriteBufferFromS3RequestsErrors.count', + 'clickhouse.events.WriteBufferFromS3RequestsErrors.total', + 'clickhouse.events.WriteBufferFromS3WaitInflightLimitMicroseconds', + 'clickhouse.events.ZooKeeperBytesReceived.count', + 'clickhouse.events.ZooKeeperBytesReceived.total', + 'clickhouse.events.ZooKeeperBytesSent.count', + 'clickhouse.events.ZooKeeperBytesSent.total', + 'clickhouse.events.ZooKeeperCheck.count', + 'clickhouse.events.ZooKeeperCheck.total', + 'clickhouse.events.ZooKeeperClose.count', + 'clickhouse.events.ZooKeeperClose.total', + 'clickhouse.events.ZooKeeperCreate.count', + 'clickhouse.events.ZooKeeperCreate.total', + 'clickhouse.events.ZooKeeperExists.count', + 'clickhouse.events.ZooKeeperExists.total', + 'clickhouse.events.ZooKeeperGet.count', + 'clickhouse.events.ZooKeeperGet.total', + 'clickhouse.events.ZooKeeperHardwareExceptions.count', + 'clickhouse.events.ZooKeeperHardwareExceptions.total', + 'clickhouse.events.ZooKeeperInit.count', + 'clickhouse.events.ZooKeeperInit.total', + 'clickhouse.events.ZooKeeperList.count', + 'clickhouse.events.ZooKeeperList.total', + 'clickhouse.events.ZooKeeperMulti.count', + 'clickhouse.events.ZooKeeperMulti.total', + 'clickhouse.events.ZooKeeperOtherExceptions.count', + 'clickhouse.events.ZooKeeperOtherExceptions.total', + 'clickhouse.events.ZooKeeperReconfig.count', + 'clickhouse.events.ZooKeeperReconfig.total', + 'clickhouse.events.ZooKeeperRemove.count', + 'clickhouse.events.ZooKeeperRemove.total', + 'clickhouse.events.ZooKeeperSet.count', + 'clickhouse.events.ZooKeeperSet.total', + 'clickhouse.events.ZooKeeperSync.count', + 'clickhouse.events.ZooKeeperSync.total', + 'clickhouse.events.ZooKeeperTransactions.count', + 'clickhouse.events.ZooKeeperTransactions.total', + 'clickhouse.events.ZooKeeperUserExceptions.count', + 'clickhouse.events.ZooKeeperUserExceptions.total', + 'clickhouse.events.ZooKeeperWaitMicroseconds', + 'clickhouse.events.ZooKeeperWatchResponse.count', + 'clickhouse.events.ZooKeeperWatchResponse.total', +] + +V_24_8_METRICS = [ + 'clickhouse.metrics.DWARFReaderThreads', + 'clickhouse.metrics.DWARFReaderThreadsActive', + 'clickhouse.metrics.DWARFReaderThreadsScheduled', + 'clickhouse.metrics.DiskPlainRewritableAzureUniqueFileNamesCount', + 'clickhouse.metrics.DiskPlainRewritableLocalUniqueFileNamesCount', + 'clickhouse.metrics.DiskPlainRewritableS3UniqueFileNamesCount', + 'clickhouse.metrics.ParallelParsingInputFormatThreads', + 'clickhouse.metrics.ParallelParsingInputFormatThreadsActive', + 'clickhouse.metrics.ParallelParsingInputFormatThreadsScheduled', + 'clickhouse.metrics.ParquetDecoderThreads', + 'clickhouse.metrics.ParquetDecoderThreadsActive', + 'clickhouse.metrics.ParquetDecoderThreadsScheduled', +] + +V_25_3_METRICS = [ + 'clickhouse.metrics.AttachedReplicatedTable', + 'clickhouse.metrics.BuildVectorSimilarityIndexThreads', + 'clickhouse.metrics.BuildVectorSimilarityIndexThreadsActive', + 'clickhouse.metrics.BuildVectorSimilarityIndexThreadsScheduled', + 'clickhouse.metrics.Compressing', + 'clickhouse.metrics.CompressionThread', + 'clickhouse.metrics.CompressionThreadActive', + 'clickhouse.metrics.CompressionThreadScheduled', + 'clickhouse.metrics.ConcurrencyControlAcquired', + 'clickhouse.metrics.ConcurrencyControlAcquiredNonCompeting', + 'clickhouse.metrics.ConcurrencyControlSoftLimit', + 'clickhouse.metrics.DWARFReaderThreads', + 'clickhouse.metrics.DWARFReaderThreadsActive', + 'clickhouse.metrics.DWARFReaderThreadsScheduled', + 'clickhouse.metrics.DatabaseBackupThreads', + 'clickhouse.metrics.DatabaseBackupThreadsActive', + 'clickhouse.metrics.DatabaseBackupThreadsScheduled', + 'clickhouse.metrics.Decompressing', + 'clickhouse.metrics.DistrCacheAllocatedConnections', + 'clickhouse.metrics.DistrCacheBorrowedConnections', + 'clickhouse.metrics.DistrCacheRegisteredServers', + 'clickhouse.metrics.DistrCacheRegisteredServersCurrentAZ', + 'clickhouse.metrics.DistrCacheServerS3CachedClients', + 'clickhouse.metrics.FilesystemCacheKeys', + 'clickhouse.metrics.IcebergCatalogThreads', + 'clickhouse.metrics.IcebergCatalogThreadsActive', + 'clickhouse.metrics.IcebergCatalogThreadsScheduled', + 'clickhouse.metrics.IsServerShuttingDown', + 'clickhouse.metrics.LicenseRemainingSeconds', + 'clickhouse.metrics.MemoryTrackingUncorrected', + 'clickhouse.metrics.MergeParts', + 'clickhouse.metrics.MergeTreeFetchPartitionThreads', + 'clickhouse.metrics.MergeTreeFetchPartitionThreadsActive', + 'clickhouse.metrics.MergeTreeFetchPartitionThreadsScheduled', + 'clickhouse.metrics.MergeTreeSubcolumnsReaderThreads', + 'clickhouse.metrics.MergeTreeSubcolumnsReaderThreadsActive', + 'clickhouse.metrics.MergeTreeSubcolumnsReaderThreadsScheduled', + 'clickhouse.metrics.MetadataFromKeeperCacheObjects', + 'clickhouse.metrics.ObjectStorageQueueRegisteredServers', + 'clickhouse.metrics.ParallelCompressedWriteBufferThreads', + 'clickhouse.metrics.ParallelCompressedWriteBufferWait', + 'clickhouse.metrics.ParallelParsingInputFormatThreads', + 'clickhouse.metrics.ParallelParsingInputFormatThreadsActive', + 'clickhouse.metrics.ParallelParsingInputFormatThreadsScheduled', + 'clickhouse.metrics.ParallelWithQueryActiveThreads', + 'clickhouse.metrics.ParallelWithQueryScheduledThreads', + 'clickhouse.metrics.ParallelWithQueryThreads', + 'clickhouse.metrics.ParquetDecoderIOThreads', + 'clickhouse.metrics.ParquetDecoderIOThreadsActive', + 'clickhouse.metrics.ParquetDecoderIOThreadsScheduled', + 'clickhouse.metrics.ParquetDecoderThreads', + 'clickhouse.metrics.ParquetDecoderThreadsActive', + 'clickhouse.metrics.ParquetDecoderThreadsScheduled', + 'clickhouse.metrics.PolygonDictionaryThreads', + 'clickhouse.metrics.PolygonDictionaryThreadsActive', + 'clickhouse.metrics.PolygonDictionaryThreadsScheduled', + 'clickhouse.metrics.SchedulerIOReadScheduled', + 'clickhouse.metrics.SchedulerIOWriteScheduled', + 'clickhouse.metrics.SharedCatalogDropDetachLocalTablesErrors', + 'clickhouse.metrics.SharedCatalogDropLocalThreads', + 'clickhouse.metrics.SharedCatalogDropLocalThreadsActive', + 'clickhouse.metrics.SharedCatalogDropLocalThreadsScheduled', + 'clickhouse.metrics.SharedCatalogDropZooKeeperThreads', + 'clickhouse.metrics.SharedCatalogDropZooKeeperThreadsActive', + 'clickhouse.metrics.SharedCatalogDropZooKeeperThreadsScheduled', + 'clickhouse.metrics.SharedCatalogStateApplicationThreads', + 'clickhouse.metrics.SharedCatalogStateApplicationThreadsActive', + 'clickhouse.metrics.SharedCatalogStateApplicationThreadsScheduled', + 'clickhouse.metrics.SharedDatabaseCatalogTablesInLocalDropDetachQueue', + 'clickhouse.metrics.StartupScriptsExecutionState', + 'clickhouse.metrics.TemporaryFilesForMerge', +] + +V_25_8_METRICS = [ + 'clickhouse.metrics.AttachedReplicatedTable', + 'clickhouse.metrics.AvroSchemaCacheBytes', + 'clickhouse.metrics.AvroSchemaCacheCells', + 'clickhouse.metrics.AvroSchemaRegistryCacheBytes', + 'clickhouse.metrics.AvroSchemaRegistryCacheCells', + 'clickhouse.metrics.AzureRequests', + 'clickhouse.metrics.BrokenDisks', + 'clickhouse.metrics.BuildVectorSimilarityIndexThreads', + 'clickhouse.metrics.BuildVectorSimilarityIndexThreadsActive', + 'clickhouse.metrics.BuildVectorSimilarityIndexThreadsScheduled', + 'clickhouse.metrics.CompiledExpressionCacheBytes', + 'clickhouse.metrics.CompiledExpressionCacheCount', + 'clickhouse.metrics.Compressing', + 'clickhouse.metrics.CompressionThread', + 'clickhouse.metrics.CompressionThreadActive', + 'clickhouse.metrics.CompressionThreadScheduled', + 'clickhouse.metrics.ConcurrencyControlAcquired', + 'clickhouse.metrics.ConcurrencyControlAcquiredNonCompeting', + 'clickhouse.metrics.ConcurrencyControlPreempted', + 'clickhouse.metrics.ConcurrencyControlScheduled', + 'clickhouse.metrics.ConcurrencyControlSoftLimit', + 'clickhouse.metrics.ConcurrentQueryAcquired', + 'clickhouse.metrics.ConcurrentQueryScheduled', + 'clickhouse.metrics.CoordinatedMergesCoordinatorAssignedMerges', + 'clickhouse.metrics.CoordinatedMergesCoordinatorRunningMerges', + 'clickhouse.metrics.CoordinatedMergesWorkerAssignedMerges', + 'clickhouse.metrics.DNSAddressesCacheBytes', + 'clickhouse.metrics.DNSAddressesCacheSize', + 'clickhouse.metrics.DNSHostsCacheBytes', + 'clickhouse.metrics.DNSHostsCacheSize', + 'clickhouse.metrics.DatabaseBackupThreads', + 'clickhouse.metrics.DatabaseBackupThreadsActive', + 'clickhouse.metrics.DatabaseBackupThreadsScheduled', + 'clickhouse.metrics.Decompressing', + 'clickhouse.metrics.DistrCacheAllocatedConnections', + 'clickhouse.metrics.DistrCacheBorrowedConnections', + 'clickhouse.metrics.DistrCacheRegisteredServers', + 'clickhouse.metrics.DistrCacheRegisteredServersCurrentAZ', + 'clickhouse.metrics.DistrCacheServerRegistryConnections', + 'clickhouse.metrics.DistrCacheServerS3CachedClients', + 'clickhouse.metrics.DropDistributedCacheThreads', + 'clickhouse.metrics.DropDistributedCacheThreadsActive', + 'clickhouse.metrics.DropDistributedCacheThreadsScheduled', + 'clickhouse.metrics.FilesystemCacheKeys', + 'clickhouse.metrics.FilesystemCacheReserveThreads', + 'clickhouse.metrics.FormatParsingThreads', + 'clickhouse.metrics.FormatParsingThreadsActive', + 'clickhouse.metrics.FormatParsingThreadsScheduled', + 'clickhouse.metrics.HiveFilesCacheBytes', + 'clickhouse.metrics.HiveFilesCacheFiles', + 'clickhouse.metrics.HiveMetadataFilesCacheBytes', + 'clickhouse.metrics.HiveMetadataFilesCacheFiles', + 'clickhouse.metrics.IcebergCatalogThreads', + 'clickhouse.metrics.IcebergCatalogThreadsActive', + 'clickhouse.metrics.IcebergCatalogThreadsScheduled', + 'clickhouse.metrics.IcebergMetadataFilesCacheBytes', + 'clickhouse.metrics.IcebergMetadataFilesCacheFiles', + 'clickhouse.metrics.IndexMarkCacheBytes', + 'clickhouse.metrics.IndexMarkCacheFiles', + 'clickhouse.metrics.IndexUncompressedCacheBytes', + 'clickhouse.metrics.IndexUncompressedCacheCells', + 'clickhouse.metrics.IsServerShuttingDown', + 'clickhouse.metrics.LicenseRemainingSeconds', + 'clickhouse.metrics.MMapCacheCells', + 'clickhouse.metrics.MarkCacheBytes', + 'clickhouse.metrics.MarkCacheFiles', + 'clickhouse.metrics.MemoryTrackingUncorrected', + 'clickhouse.metrics.MergeJoinBlocksCacheBytes', + 'clickhouse.metrics.MergeJoinBlocksCacheCount', + 'clickhouse.metrics.MergeParts', + 'clickhouse.metrics.MergeTreeFetchPartitionThreads', + 'clickhouse.metrics.MergeTreeFetchPartitionThreadsActive', + 'clickhouse.metrics.MergeTreeFetchPartitionThreadsScheduled', + 'clickhouse.metrics.MergeTreeSubcolumnsReaderThreads', + 'clickhouse.metrics.MergeTreeSubcolumnsReaderThreadsActive', + 'clickhouse.metrics.MergeTreeSubcolumnsReaderThreadsScheduled', + 'clickhouse.metrics.MetadataFromKeeperCacheObjects', + 'clickhouse.metrics.ObjectStorageQueueRegisteredServers', + 'clickhouse.metrics.ObjectStorageQueueShutdownThreads', + 'clickhouse.metrics.ObjectStorageQueueShutdownThreadsActive', + 'clickhouse.metrics.ObjectStorageQueueShutdownThreadsScheduled', + 'clickhouse.metrics.PageCacheBytes', + 'clickhouse.metrics.PageCacheCells', + 'clickhouse.metrics.ParallelCompressedWriteBufferThreads', + 'clickhouse.metrics.ParallelCompressedWriteBufferWait', + 'clickhouse.metrics.ParallelWithQueryActiveThreads', + 'clickhouse.metrics.ParallelWithQueryScheduledThreads', + 'clickhouse.metrics.ParallelWithQueryThreads', + 'clickhouse.metrics.PolygonDictionaryThreads', + 'clickhouse.metrics.PolygonDictionaryThreadsActive', + 'clickhouse.metrics.PolygonDictionaryThreadsScheduled', + 'clickhouse.metrics.PrimaryIndexCacheBytes', + 'clickhouse.metrics.PrimaryIndexCacheFiles', + 'clickhouse.metrics.QueryCacheBytes', + 'clickhouse.metrics.QueryCacheEntries', + 'clickhouse.metrics.QueryConditionCacheBytes', + 'clickhouse.metrics.QueryConditionCacheEntries', + 'clickhouse.metrics.ReadonlyDisks', + 'clickhouse.metrics.SchedulerIOReadScheduled', + 'clickhouse.metrics.SchedulerIOWriteScheduled', + 'clickhouse.metrics.SharedCatalogDropDetachLocalTablesErrors', + 'clickhouse.metrics.SharedCatalogDropLocalThreads', + 'clickhouse.metrics.SharedCatalogDropLocalThreadsActive', + 'clickhouse.metrics.SharedCatalogDropLocalThreadsScheduled', + 'clickhouse.metrics.SharedCatalogDropZooKeeperThreads', + 'clickhouse.metrics.SharedCatalogDropZooKeeperThreadsActive', + 'clickhouse.metrics.SharedCatalogDropZooKeeperThreadsScheduled', + 'clickhouse.metrics.SharedCatalogNumberOfObjectsInState', + 'clickhouse.metrics.SharedCatalogStateApplicationThreads', + 'clickhouse.metrics.SharedCatalogStateApplicationThreadsActive', + 'clickhouse.metrics.SharedCatalogStateApplicationThreadsScheduled', + 'clickhouse.metrics.SharedDatabaseCatalogTablesInLocalDropDetachQueue', + 'clickhouse.metrics.SharedMergeTreeAssignedCurrentParts', + 'clickhouse.metrics.SharedMergeTreeCondemnedPartsInKeeper', + 'clickhouse.metrics.SharedMergeTreeOutdatedPartsInKeeper', + 'clickhouse.metrics.StartupScriptsExecutionState', + 'clickhouse.metrics.StatelessWorkerThreads', + 'clickhouse.metrics.StatelessWorkerThreadsActive', + 'clickhouse.metrics.StatelessWorkerThreadsScheduled', + 'clickhouse.metrics.TaskTrackerThreads', + 'clickhouse.metrics.TaskTrackerThreadsActive', + 'clickhouse.metrics.TaskTrackerThreadsScheduled', + 'clickhouse.metrics.TemporaryFilesForMerge', + 'clickhouse.metrics.UncompressedCacheBytes', + 'clickhouse.metrics.UncompressedCacheCells', + 'clickhouse.metrics.VectorSimilarityIndexCacheBytes', + 'clickhouse.metrics.VectorSimilarityIndexCacheCells', +] + +V_24_8_OPTIONAL = [ + 'clickhouse.asynchronous_metrics.CompiledExpressionCacheBytes', + 'clickhouse.asynchronous_metrics.CompiledExpressionCacheCount', + 'clickhouse.asynchronous_metrics.IndexMarkCacheBytes', + 'clickhouse.asynchronous_metrics.IndexMarkCacheFiles', + 'clickhouse.asynchronous_metrics.IndexUncompressedCacheBytes', + 'clickhouse.asynchronous_metrics.IndexUncompressedCacheCells', + 'clickhouse.asynchronous_metrics.MMapCacheCells', + 'clickhouse.asynchronous_metrics.MarkCacheBytes', + 'clickhouse.asynchronous_metrics.MarkCacheFiles', + 'clickhouse.asynchronous_metrics.PageCacheBytes', + 'clickhouse.asynchronous_metrics.PageCachePinnedBytes', + 'clickhouse.asynchronous_metrics.QueryCacheBytes', + 'clickhouse.asynchronous_metrics.QueryCacheEntries', + 'clickhouse.asynchronous_metrics.UncompressedCacheBytes', + 'clickhouse.asynchronous_metrics.UncompressedCacheCells', + 'clickhouse.asynchronous_metrics.UnreclaimableRSS', + 'clickhouse.events.DistrCacheGetClient', + 'clickhouse.events.DistrCacheHoldConnections', + 'clickhouse.events.DistrCacheUnusedPacketsBytes.count', + 'clickhouse.events.DistrCacheUnusedPacketsBytes.total', + 'clickhouse.events.FileSegmentCacheWriteMicroseconds', + 'clickhouse.events.FileSegmentPredownloadMicroseconds', + 'clickhouse.events.FileSegmentReadMicroseconds', + 'clickhouse.events.FileSegmentUsedBytes.count', + 'clickhouse.events.FileSegmentUsedBytes.total', + 'clickhouse.events.FileSegmentWaitReadBufferMicroseconds', + 'clickhouse.events.GWPAsanAllocateFailed.count', + 'clickhouse.events.GWPAsanAllocateFailed.total', + 'clickhouse.events.GWPAsanAllocateSuccess.count', + 'clickhouse.events.GWPAsanAllocateSuccess.total', + 'clickhouse.events.GWPAsanFree.count', + 'clickhouse.events.GWPAsanFree.total', + 'clickhouse.events.MutationsAppliedOnFlyInAllParts', + 'clickhouse.events.PageCacheBytesUnpinnedRoundedToHugePages', + 'clickhouse.events.PageCacheBytesUnpinnedRoundedToPages', + 'clickhouse.events.PageCacheChunkDataHits', + 'clickhouse.events.PageCacheChunkDataMisses', + 'clickhouse.events.PageCacheChunkDataPartialHits', + 'clickhouse.events.PageCacheChunkMisses', + 'clickhouse.events.PageCacheChunkShared', + 'clickhouse.events.PartsWithAppliedMutationsOnFly', +] + +V_25_3_OPTIONAL = [ + 'clickhouse.asynchronous_metrics.CompiledExpressionCacheBytes', + 'clickhouse.asynchronous_metrics.CompiledExpressionCacheCount', + 'clickhouse.asynchronous_metrics.IndexMarkCacheBytes', + 'clickhouse.asynchronous_metrics.IndexMarkCacheFiles', + 'clickhouse.asynchronous_metrics.IndexUncompressedCacheBytes', + 'clickhouse.asynchronous_metrics.IndexUncompressedCacheCells', + 'clickhouse.asynchronous_metrics.MMapCacheCells', + 'clickhouse.asynchronous_metrics.MarkCacheBytes', + 'clickhouse.asynchronous_metrics.MarkCacheFiles', + 'clickhouse.asynchronous_metrics.NumberOfPendingMutations', + 'clickhouse.asynchronous_metrics.NumberOfStuckMutations', + 'clickhouse.asynchronous_metrics.OSCPUOverload', + 'clickhouse.asynchronous_metrics.PageCacheBytes', + 'clickhouse.asynchronous_metrics.PageCacheCells', + 'clickhouse.asynchronous_metrics.PageCacheMaxBytes', + 'clickhouse.asynchronous_metrics.PrimaryIndexCacheBytes', + 'clickhouse.asynchronous_metrics.PrimaryIndexCacheFiles', + 'clickhouse.asynchronous_metrics.QueryCacheBytes', + 'clickhouse.asynchronous_metrics.QueryCacheEntries', + 'clickhouse.asynchronous_metrics.UncompressedCacheBytes', + 'clickhouse.asynchronous_metrics.UncompressedCacheCells', + 'clickhouse.events.BackupLockFileReads.count', + 'clickhouse.events.BackupLockFileReads.total', + 'clickhouse.events.BackupPreparingFileInfosMicroseconds', + 'clickhouse.events.BackupReadLocalBytesToCalculateChecksums.count', + 'clickhouse.events.BackupReadLocalBytesToCalculateChecksums.total', + 'clickhouse.events.BackupReadLocalFilesToCalculateChecksums.count', + 'clickhouse.events.BackupReadLocalFilesToCalculateChecksums.total', + 'clickhouse.events.BackupReadRemoteBytesToCalculateChecksums.count', + 'clickhouse.events.BackupReadRemoteBytesToCalculateChecksums.total', + 'clickhouse.events.BackupReadRemoteFilesToCalculateChecksums.count', + 'clickhouse.events.BackupReadRemoteFilesToCalculateChecksums.total', + 'clickhouse.events.BackupsOpenedForUnlock.count', + 'clickhouse.events.BackupsOpenedForUnlock.total', + 'clickhouse.events.CachedReadBufferPredownloadedBytes.count', + 'clickhouse.events.CachedReadBufferPredownloadedBytes.total', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatch.count', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatch.total', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatchMicroseconds', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatchSingleBitMismatch.count', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatchSingleBitMismatch.total', + 'clickhouse.events.ConcurrencyControlQueriesDelayed.count', + 'clickhouse.events.ConcurrencyControlQueriesDelayed.total', + 'clickhouse.events.ConcurrencyControlSlotsAcquired.count', + 'clickhouse.events.ConcurrencyControlSlotsAcquired.total', + 'clickhouse.events.ConcurrencyControlSlotsAcquiredNonCompeting.count', + 'clickhouse.events.ConcurrencyControlSlotsAcquiredNonCompeting.total', + 'clickhouse.events.ConcurrencyControlSlotsDelayed.count', + 'clickhouse.events.ConcurrencyControlSlotsDelayed.total', + 'clickhouse.events.ConcurrencyControlSlotsGranted.count', + 'clickhouse.events.ConcurrencyControlSlotsGranted.total', + 'clickhouse.events.DefaultImplementationForNullsRows.count', + 'clickhouse.events.DefaultImplementationForNullsRows.total', + 'clickhouse.events.DefaultImplementationForNullsRowsWithNulls.count', + 'clickhouse.events.DefaultImplementationForNullsRowsWithNulls.total', + 'clickhouse.events.DistrCacheGetClientMicroseconds', + 'clickhouse.events.DistrCacheHashRingRebuilds.count', + 'clickhouse.events.DistrCacheHashRingRebuilds.total', + 'clickhouse.events.DistrCacheIgnoredBytesWhileWaitingProfileEvents.count', + 'clickhouse.events.DistrCacheIgnoredBytesWhileWaitingProfileEvents.total', + 'clickhouse.events.DistrCacheMakeRequestErrors.count', + 'clickhouse.events.DistrCacheMakeRequestErrors.total', + 'clickhouse.events.DistrCacheOpenedConnectionsBypassingPool.count', + 'clickhouse.events.DistrCacheOpenedConnectionsBypassingPool.total', + 'clickhouse.events.DistrCachePacketsBytes.count', + 'clickhouse.events.DistrCachePacketsBytes.total', + 'clickhouse.events.DistrCacheRangeChange.count', + 'clickhouse.events.DistrCacheRangeChange.total', + 'clickhouse.events.DistrCacheRangeResetBackward.count', + 'clickhouse.events.DistrCacheRangeResetBackward.total', + 'clickhouse.events.DistrCacheRangeResetForward.count', + 'clickhouse.events.DistrCacheRangeResetForward.total', + 'clickhouse.events.DistrCacheReadBytesFromCache.count', + 'clickhouse.events.DistrCacheReadBytesFromCache.total', + 'clickhouse.events.DistrCacheReadBytesFromFallbackBuffer.count', + 'clickhouse.events.DistrCacheReadBytesFromFallbackBuffer.total', + 'clickhouse.events.DistrCacheReadErrors.count', + 'clickhouse.events.DistrCacheReadErrors.total', + 'clickhouse.events.DistrCacheReceiveResponseErrors.count', + 'clickhouse.events.DistrCacheReceiveResponseErrors.total', + 'clickhouse.events.DistrCacheReconnectsAfterTimeout.count', + 'clickhouse.events.DistrCacheReconnectsAfterTimeout.total', + 'clickhouse.events.DistrCacheServerAckRequestPackets.count', + 'clickhouse.events.DistrCacheServerAckRequestPackets.total', + 'clickhouse.events.DistrCacheServerContinueRequestPackets.count', + 'clickhouse.events.DistrCacheServerContinueRequestPackets.total', + 'clickhouse.events.DistrCacheServerEndRequestPackets.count', + 'clickhouse.events.DistrCacheServerEndRequestPackets.total', + 'clickhouse.events.DistrCacheServerNewS3CachedClients.count', + 'clickhouse.events.DistrCacheServerNewS3CachedClients.total', + 'clickhouse.events.DistrCacheServerReusedS3CachedClients.count', + 'clickhouse.events.DistrCacheServerReusedS3CachedClients.total', + 'clickhouse.events.DistrCacheServerStartRequestPackets.count', + 'clickhouse.events.DistrCacheServerStartRequestPackets.total', + 'clickhouse.events.DistrCacheUnusedPacketsBufferAllocations.count', + 'clickhouse.events.DistrCacheUnusedPacketsBufferAllocations.total', + 'clickhouse.events.DistrCacheUnusedPacketsBytes.count', + 'clickhouse.events.DistrCacheUnusedPacketsBytes.total', + 'clickhouse.events.FileSegmentCacheWriteMicroseconds', + 'clickhouse.events.FileSegmentPredownloadMicroseconds', + 'clickhouse.events.FileSegmentReadMicroseconds', + 'clickhouse.events.FileSegmentUsedBytes.count', + 'clickhouse.events.FileSegmentUsedBytes.total', + 'clickhouse.events.FileSegmentWaitReadBufferMicroseconds', + 'clickhouse.events.FilesystemCacheBackgroundDownloadQueuePush.count', + 'clickhouse.events.FilesystemCacheBackgroundDownloadQueuePush.total', + 'clickhouse.events.FilesystemCacheCreatedKeyDirectories.count', + 'clickhouse.events.FilesystemCacheCreatedKeyDirectories.total', + 'clickhouse.events.FilesystemCacheFailedEvictionCandidates.count', + 'clickhouse.events.FilesystemCacheFailedEvictionCandidates.total', + 'clickhouse.events.FilterTransformPassedBytes.count', + 'clickhouse.events.FilterTransformPassedBytes.total', + 'clickhouse.events.FilterTransformPassedRows.count', + 'clickhouse.events.FilterTransformPassedRows.total', + 'clickhouse.events.FilteringMarksWithPrimaryKeyMicroseconds', + 'clickhouse.events.FilteringMarksWithSecondaryKeysMicroseconds', + 'clickhouse.events.GWPAsanAllocateFailed.count', + 'clickhouse.events.GWPAsanAllocateFailed.total', + 'clickhouse.events.GWPAsanAllocateSuccess.count', + 'clickhouse.events.GWPAsanAllocateSuccess.total', + 'clickhouse.events.GWPAsanFree.count', + 'clickhouse.events.GWPAsanFree.total', + 'clickhouse.events.GlobalThreadPoolExpansions.count', + 'clickhouse.events.GlobalThreadPoolExpansions.total', + 'clickhouse.events.GlobalThreadPoolJobWaitTimeMicroseconds', + 'clickhouse.events.GlobalThreadPoolJobs.count', + 'clickhouse.events.GlobalThreadPoolJobs.total', + 'clickhouse.events.GlobalThreadPoolLockWaitMicroseconds', + 'clickhouse.events.GlobalThreadPoolShrinks.count', + 'clickhouse.events.GlobalThreadPoolShrinks.total', + 'clickhouse.events.GlobalThreadPoolThreadCreationMicroseconds', + 'clickhouse.events.IcebergPartitionPrunnedFiles.count', + 'clickhouse.events.IcebergPartitionPrunnedFiles.total', + 'clickhouse.events.JoinBuildTableRowCount.count', + 'clickhouse.events.JoinBuildTableRowCount.total', + 'clickhouse.events.JoinProbeTableRowCount.count', + 'clickhouse.events.JoinProbeTableRowCount.total', + 'clickhouse.events.JoinResultRowCount.count', + 'clickhouse.events.JoinResultRowCount.total', + 'clickhouse.events.LoadedDataParts.count', + 'clickhouse.events.LoadedDataParts.total', + 'clickhouse.events.LoadedDataPartsMicroseconds', + 'clickhouse.events.LoadedMarksFiles.count', + 'clickhouse.events.LoadedMarksFiles.total', + 'clickhouse.events.LoadedPrimaryIndexBytes.count', + 'clickhouse.events.LoadedPrimaryIndexBytes.total', + 'clickhouse.events.LoadedPrimaryIndexFiles.count', + 'clickhouse.events.LoadedPrimaryIndexFiles.total', + 'clickhouse.events.LoadedPrimaryIndexRows.count', + 'clickhouse.events.LoadedPrimaryIndexRows.total', + 'clickhouse.events.LoadingMarksTasksCanceled.count', + 'clickhouse.events.LoadingMarksTasksCanceled.total', + 'clickhouse.events.LocalThreadPoolBusyMicroseconds', + 'clickhouse.events.LocalThreadPoolExpansions.count', + 'clickhouse.events.LocalThreadPoolExpansions.total', + 'clickhouse.events.LocalThreadPoolJobWaitTimeMicroseconds', + 'clickhouse.events.LocalThreadPoolJobs', + 'clickhouse.events.LocalThreadPoolLockWaitMicroseconds', + 'clickhouse.events.LocalThreadPoolShrinks.count', + 'clickhouse.events.LocalThreadPoolShrinks.total', + 'clickhouse.events.LocalThreadPoolThreadCreationMicroseconds', + 'clickhouse.events.LoggerElapsedNanoseconds', + 'clickhouse.events.MemoryWorkerRun.count', + 'clickhouse.events.MemoryWorkerRun.total', + 'clickhouse.events.MemoryWorkerRunElapsedMicroseconds', + 'clickhouse.events.MergePrewarmStageExecuteMilliseconds', + 'clickhouse.events.MergePrewarmStageTotalMilliseconds', + 'clickhouse.events.MergeSourceParts.count', + 'clickhouse.events.MergeSourceParts.total', + 'clickhouse.events.MergerMutatorPartsInRangesForMergeCount.count', + 'clickhouse.events.MergerMutatorPartsInRangesForMergeCount.total', + 'clickhouse.events.MergerMutatorPrepareRangesForMergeElapsedMicroseconds', + 'clickhouse.events.MergerMutatorRangesForMergeCount.count', + 'clickhouse.events.MergerMutatorRangesForMergeCount.total', + 'clickhouse.events.MergerMutatorSelectPartsForMergeElapsedMicroseconds', + 'clickhouse.events.MergerMutatorSelectRangePartsCount.count', + 'clickhouse.events.MergerMutatorSelectRangePartsCount.total', + 'clickhouse.events.MergerMutatorsGetPartsForMergeElapsedMicroseconds', + 'clickhouse.events.MutationsAppliedOnFlyInAllReadTasks.count', + 'clickhouse.events.MutationsAppliedOnFlyInAllReadTasks.total', + 'clickhouse.events.ObjectStorageQueueCancelledFiles.count', + 'clickhouse.events.ObjectStorageQueueCancelledFiles.total', + 'clickhouse.events.ObjectStorageQueueCommitRequests.count', + 'clickhouse.events.ObjectStorageQueueCommitRequests.total', + 'clickhouse.events.ObjectStorageQueueExceptionsDuringInsert.count', + 'clickhouse.events.ObjectStorageQueueExceptionsDuringInsert.total', + 'clickhouse.events.ObjectStorageQueueExceptionsDuringRead.count', + 'clickhouse.events.ObjectStorageQueueExceptionsDuringRead.total', + 'clickhouse.events.ObjectStorageQueueFailedToBatchSetProcessing.count', + 'clickhouse.events.ObjectStorageQueueFailedToBatchSetProcessing.total', + 'clickhouse.events.ObjectStorageQueueFilteredFiles.count', + 'clickhouse.events.ObjectStorageQueueFilteredFiles.total', + 'clickhouse.events.ObjectStorageQueueInsertIterations.count', + 'clickhouse.events.ObjectStorageQueueInsertIterations.total', + 'clickhouse.events.ObjectStorageQueueListedFiles.count', + 'clickhouse.events.ObjectStorageQueueListedFiles.total', + 'clickhouse.events.ObjectStorageQueueProcessedRows.count', + 'clickhouse.events.ObjectStorageQueueProcessedRows.total', + 'clickhouse.events.ObjectStorageQueueReadBytes.count', + 'clickhouse.events.ObjectStorageQueueReadBytes.total', + 'clickhouse.events.ObjectStorageQueueReadFiles.count', + 'clickhouse.events.ObjectStorageQueueReadFiles.total', + 'clickhouse.events.ObjectStorageQueueReadRows.count', + 'clickhouse.events.ObjectStorageQueueReadRows.total', + 'clickhouse.events.ObjectStorageQueueRemovedObjects.count', + 'clickhouse.events.ObjectStorageQueueRemovedObjects.total', + 'clickhouse.events.ObjectStorageQueueSuccessfulCommits.count', + 'clickhouse.events.ObjectStorageQueueSuccessfulCommits.total', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingFailed.count', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingFailed.total', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingRequests.count', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingRequests.total', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingSucceeded.count', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingSucceeded.total', + 'clickhouse.events.ObjectStorageQueueUnsuccessfulCommits.count', + 'clickhouse.events.ObjectStorageQueueUnsuccessfulCommits.total', + 'clickhouse.events.PageCacheHits.count', + 'clickhouse.events.PageCacheHits.total', + 'clickhouse.events.PageCacheMisses.count', + 'clickhouse.events.PageCacheMisses.total', + 'clickhouse.events.PageCacheOvercommitResize.count', + 'clickhouse.events.PageCacheOvercommitResize.total', + 'clickhouse.events.PageCacheReadBytes.count', + 'clickhouse.events.PageCacheReadBytes.total', + 'clickhouse.events.PageCacheResized.count', + 'clickhouse.events.PageCacheResized.total', + 'clickhouse.events.PageCacheWeightLost.count', + 'clickhouse.events.PageCacheWeightLost.total', + 'clickhouse.events.ParallelReplicasAnnouncementMicroseconds', + 'clickhouse.events.ParallelReplicasReadMarks.count', + 'clickhouse.events.ParallelReplicasReadMarks.total', + 'clickhouse.events.ParallelReplicasReadRequestMicroseconds', + 'clickhouse.events.ParquetFetchWaitTimeMicroseconds', + 'clickhouse.events.PrimaryIndexCacheHits.count', + 'clickhouse.events.PrimaryIndexCacheHits.total', + 'clickhouse.events.PrimaryIndexCacheMisses.count', + 'clickhouse.events.PrimaryIndexCacheMisses.total', + 'clickhouse.events.QueryConditionCacheHits.count', + 'clickhouse.events.QueryConditionCacheHits.total', + 'clickhouse.events.QueryConditionCacheMisses.count', + 'clickhouse.events.QueryConditionCacheMisses.total', + 'clickhouse.events.QueryPreempted.count', + 'clickhouse.events.QueryPreempted.total', + 'clickhouse.events.ReadTasksWithAppliedMutationsOnFly.count', + 'clickhouse.events.ReadTasksWithAppliedMutationsOnFly.total', + 'clickhouse.events.RestorePartsSkippedBytes.count', + 'clickhouse.events.RestorePartsSkippedBytes.total', + 'clickhouse.events.RestorePartsSkippedFiles.count', + 'clickhouse.events.RestorePartsSkippedFiles.total', + 'clickhouse.events.SchedulerIOReadBytes.count', + 'clickhouse.events.SchedulerIOReadBytes.total', + 'clickhouse.events.SchedulerIOReadRequests.count', + 'clickhouse.events.SchedulerIOReadRequests.total', + 'clickhouse.events.SchedulerIOReadWaitMicroseconds', + 'clickhouse.events.SchedulerIOWriteBytes.count', + 'clickhouse.events.SchedulerIOWriteBytes.total', + 'clickhouse.events.SchedulerIOWriteRequests.count', + 'clickhouse.events.SchedulerIOWriteRequests.total', + 'clickhouse.events.SchedulerIOWriteWaitMicroseconds', + 'clickhouse.events.SharedDatabaseCatalogFailedToApplyState.count', + 'clickhouse.events.SharedDatabaseCatalogFailedToApplyState.total', + 'clickhouse.events.SharedDatabaseCatalogStateApplicationMicroseconds', + 'clickhouse.events.SharedMergeTreeCondemnedPartsKillRequest.count', + 'clickhouse.events.SharedMergeTreeCondemnedPartsKillRequest.total', + 'clickhouse.events.SharedMergeTreeCondemnedPartsLockConfict.count', + 'clickhouse.events.SharedMergeTreeCondemnedPartsLockConfict.total', + 'clickhouse.events.SharedMergeTreeCondemnedPartsRemoved.count', + 'clickhouse.events.SharedMergeTreeCondemnedPartsRemoved.total', + 'clickhouse.events.SharedMergeTreeGetPartsBatchToLoadMicroseconds.count', + 'clickhouse.events.SharedMergeTreeGetPartsBatchToLoadMicroseconds.total', + 'clickhouse.events.SharedMergeTreeHandleBlockingParts.count', + 'clickhouse.events.SharedMergeTreeHandleBlockingParts.total', + 'clickhouse.events.SharedMergeTreeHandleBlockingPartsMicroseconds.count', + 'clickhouse.events.SharedMergeTreeHandleBlockingPartsMicroseconds.total', + 'clickhouse.events.SharedMergeTreeHandleFetchPartsMicroseconds.count', + 'clickhouse.events.SharedMergeTreeHandleFetchPartsMicroseconds.total', + 'clickhouse.events.SharedMergeTreeHandleOutdatedParts.count', + 'clickhouse.events.SharedMergeTreeHandleOutdatedParts.total', + 'clickhouse.events.SharedMergeTreeHandleOutdatedPartsMicroseconds.count', + 'clickhouse.events.SharedMergeTreeHandleOutdatedPartsMicroseconds.total', + 'clickhouse.events.SharedMergeTreeLoadChecksumAndIndexesMicroseconds.count', + 'clickhouse.events.SharedMergeTreeLoadChecksumAndIndexesMicroseconds.total', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentAttempt.count', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentAttempt.total', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithConflict.count', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithConflict.total', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo.count', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo.total', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentSuccessful.count', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentSuccessful.total', + 'clickhouse.events.SharedMergeTreeMergePartsMovedToCondemned.count', + 'clickhouse.events.SharedMergeTreeMergePartsMovedToCondemned.total', + 'clickhouse.events.SharedMergeTreeMergePartsMovedToOudated.count', + 'clickhouse.events.SharedMergeTreeMergePartsMovedToOudated.total', + 'clickhouse.events.SharedMergeTreeMergeSelectingTaskMicroseconds.count', + 'clickhouse.events.SharedMergeTreeMergeSelectingTaskMicroseconds.total', + 'clickhouse.events.SharedMergeTreeMetadataCacheHintLoadedFromCache.count', + 'clickhouse.events.SharedMergeTreeMetadataCacheHintLoadedFromCache.total', + 'clickhouse.events.SharedMergeTreeOptimizeAsync.count', + 'clickhouse.events.SharedMergeTreeOptimizeAsync.total', + 'clickhouse.events.SharedMergeTreeOptimizeSync.count', + 'clickhouse.events.SharedMergeTreeOptimizeSync.total', + 'clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationInvocations.count', + 'clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationInvocations.total', + 'clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationRequest.count', + 'clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationRequest.total', + 'clickhouse.events.SharedMergeTreeOutdatedPartsHTTPRequest.count', + 'clickhouse.events.SharedMergeTreeOutdatedPartsHTTPRequest.total', + 'clickhouse.events.SharedMergeTreeOutdatedPartsHTTPResponse.count', + 'clickhouse.events.SharedMergeTreeOutdatedPartsHTTPResponse.total', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJob.count', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJob.total', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJobMicroseconds.count', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJobMicroseconds.total', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJobNothingToScheduled.count', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJobNothingToScheduled.total', + 'clickhouse.events.SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds.count', + 'clickhouse.events.SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdateMicroseconds', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdates.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdates.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesByLeader.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesByLeader.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromPeer.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromPeer.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeper.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeper.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesPeerNotFound.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesPeerNotFound.total', + 'clickhouse.events.SystemLogErrorOnFlush.count', + 'clickhouse.events.SystemLogErrorOnFlush.total', +] + +V_25_8_OPTIONAL = [ + 'clickhouse.asynchronous_metrics.CGroupSystemTime', + 'clickhouse.asynchronous_metrics.CGroupSystemTimeNormalized', + 'clickhouse.asynchronous_metrics.CGroupUserTime', + 'clickhouse.asynchronous_metrics.CGroupUserTimeNormalized', + 'clickhouse.asynchronous_metrics.DictionaryTotalFailedUpdates', + 'clickhouse.asynchronous_metrics.FilesystemCacheCapacity', + 'clickhouse.asynchronous_metrics.NetworkTCPReceiveQueue', + 'clickhouse.asynchronous_metrics.NetworkTCPSocketRemoteAddresses', + 'clickhouse.asynchronous_metrics.NetworkTCPSockets', + 'clickhouse.asynchronous_metrics.NetworkTCPTransmitQueue', + 'clickhouse.asynchronous_metrics.NetworkTCPUnrecoveredRetransmits', + 'clickhouse.asynchronous_metrics.NumberOfPendingMutations', + 'clickhouse.asynchronous_metrics.NumberOfPendingMutationsOverExecutionTime', + 'clickhouse.asynchronous_metrics.OSCPUOverload', + 'clickhouse.asynchronous_metrics.TotalIndexGranularityBytesInMemory', + 'clickhouse.asynchronous_metrics.TotalIndexGranularityBytesInMemoryAllocated', + 'clickhouse.asynchronous_metrics.TrackedMemory', + 'clickhouse.events.AnalyzePatchRangesMicroseconds.count', + 'clickhouse.events.AnalyzePatchRangesMicroseconds.total', + 'clickhouse.events.ApplyPatchesMicroseconds.count', + 'clickhouse.events.ApplyPatchesMicroseconds.total', + 'clickhouse.events.AsyncLoggingConsoleDroppedMessages.count', + 'clickhouse.events.AsyncLoggingConsoleDroppedMessages.total', + 'clickhouse.events.AsyncLoggingConsoleTotalMessages.count', + 'clickhouse.events.AsyncLoggingConsoleTotalMessages.total', + 'clickhouse.events.AsyncLoggingErrorFileLogDroppedMessages.count', + 'clickhouse.events.AsyncLoggingErrorFileLogDroppedMessages.total', + 'clickhouse.events.AsyncLoggingErrorFileLogTotalMessages.count', + 'clickhouse.events.AsyncLoggingErrorFileLogTotalMessages.total', + 'clickhouse.events.AsyncLoggingFileLogDroppedMessages.count', + 'clickhouse.events.AsyncLoggingFileLogDroppedMessages.total', + 'clickhouse.events.AsyncLoggingFileLogTotalMessages.count', + 'clickhouse.events.AsyncLoggingFileLogTotalMessages.total', + 'clickhouse.events.AsyncLoggingSyslogDroppedMessages.count', + 'clickhouse.events.AsyncLoggingSyslogDroppedMessages.total', + 'clickhouse.events.AsyncLoggingSyslogTotalMessages.count', + 'clickhouse.events.AsyncLoggingSyslogTotalMessages.total', + 'clickhouse.events.AsyncLoggingTextLogDroppedMessages.count', + 'clickhouse.events.AsyncLoggingTextLogDroppedMessages.total', + 'clickhouse.events.AsyncLoggingTextLogTotalMessages.count', + 'clickhouse.events.AsyncLoggingTextLogTotalMessages.total', + 'clickhouse.events.AzureGetRequestThrottlerCount.count', + 'clickhouse.events.AzureGetRequestThrottlerCount.total', + 'clickhouse.events.AzureGetRequestThrottlerSleepMicroseconds', + 'clickhouse.events.AzurePutRequestThrottlerCount.count', + 'clickhouse.events.AzurePutRequestThrottlerCount.total', + 'clickhouse.events.AzurePutRequestThrottlerSleepMicroseconds', + 'clickhouse.events.AzureReadMicroseconds', + 'clickhouse.events.AzureReadRequestsCount.count', + 'clickhouse.events.AzureReadRequestsCount.total', + 'clickhouse.events.AzureReadRequestsErrors.count', + 'clickhouse.events.AzureReadRequestsErrors.total', + 'clickhouse.events.AzureReadRequestsRedirects.count', + 'clickhouse.events.AzureReadRequestsRedirects.total', + 'clickhouse.events.AzureReadRequestsThrottling.count', + 'clickhouse.events.AzureReadRequestsThrottling.total', + 'clickhouse.events.AzureWriteMicroseconds', + 'clickhouse.events.AzureWriteRequestsCount.count', + 'clickhouse.events.AzureWriteRequestsCount.total', + 'clickhouse.events.AzureWriteRequestsErrors.count', + 'clickhouse.events.AzureWriteRequestsErrors.total', + 'clickhouse.events.AzureWriteRequestsRedirects.count', + 'clickhouse.events.AzureWriteRequestsRedirects.total', + 'clickhouse.events.AzureWriteRequestsThrottling.count', + 'clickhouse.events.AzureWriteRequestsThrottling.total', + 'clickhouse.events.BackupLockFileReads.count', + 'clickhouse.events.BackupLockFileReads.total', + 'clickhouse.events.BackupPreparingFileInfosMicroseconds', + 'clickhouse.events.BackupReadLocalBytesToCalculateChecksums.count', + 'clickhouse.events.BackupReadLocalBytesToCalculateChecksums.total', + 'clickhouse.events.BackupReadLocalFilesToCalculateChecksums.count', + 'clickhouse.events.BackupReadLocalFilesToCalculateChecksums.total', + 'clickhouse.events.BackupReadRemoteBytesToCalculateChecksums.count', + 'clickhouse.events.BackupReadRemoteBytesToCalculateChecksums.total', + 'clickhouse.events.BackupReadRemoteFilesToCalculateChecksums.count', + 'clickhouse.events.BackupReadRemoteFilesToCalculateChecksums.total', + 'clickhouse.events.BackupThrottlerBytes.count', + 'clickhouse.events.BackupThrottlerBytes.total', + 'clickhouse.events.BackupThrottlerSleepMicroseconds', + 'clickhouse.events.BackupsOpenedForUnlock.count', + 'clickhouse.events.BackupsOpenedForUnlock.total', + 'clickhouse.events.BuildPatchesJoinMicroseconds.count', + 'clickhouse.events.BuildPatchesJoinMicroseconds.total', + 'clickhouse.events.BuildPatchesMergeMicroseconds.count', + 'clickhouse.events.BuildPatchesMergeMicroseconds.total', + 'clickhouse.events.CachedReadBufferPredownloadedBytes.count', + 'clickhouse.events.CachedReadBufferPredownloadedBytes.total', + 'clickhouse.events.CachedReadBufferWaitReadBufferMicroseconds', + 'clickhouse.events.CoalescingSortedMilliseconds', + 'clickhouse.events.CommonBackgroundExecutorTaskCancelMicroseconds', + 'clickhouse.events.CommonBackgroundExecutorTaskExecuteStepMicroseconds', + 'clickhouse.events.CommonBackgroundExecutorTaskResetMicroseconds', + 'clickhouse.events.CommonBackgroundExecutorWaitMicroseconds', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatch.count', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatch.total', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatchMicroseconds', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatchSingleBitMismatch.count', + 'clickhouse.events.CompressedReadBufferChecksumDoesntMatchSingleBitMismatch.total', + 'clickhouse.events.ConcurrencyControlDownscales.count', + 'clickhouse.events.ConcurrencyControlDownscales.total', + 'clickhouse.events.ConcurrencyControlPreemptedMicroseconds', + 'clickhouse.events.ConcurrencyControlPreemptions.count', + 'clickhouse.events.ConcurrencyControlPreemptions.total', + 'clickhouse.events.ConcurrencyControlQueriesDelayed.count', + 'clickhouse.events.ConcurrencyControlQueriesDelayed.total', + 'clickhouse.events.ConcurrencyControlSlotsAcquired.count', + 'clickhouse.events.ConcurrencyControlSlotsAcquired.total', + 'clickhouse.events.ConcurrencyControlSlotsAcquiredNonCompeting.count', + 'clickhouse.events.ConcurrencyControlSlotsAcquiredNonCompeting.total', + 'clickhouse.events.ConcurrencyControlSlotsDelayed.count', + 'clickhouse.events.ConcurrencyControlSlotsDelayed.total', + 'clickhouse.events.ConcurrencyControlSlotsGranted.count', + 'clickhouse.events.ConcurrencyControlSlotsGranted.total', + 'clickhouse.events.ConcurrencyControlUpscales.count', + 'clickhouse.events.ConcurrencyControlUpscales.total', + 'clickhouse.events.ConcurrencyControlWaitMicroseconds', + 'clickhouse.events.ConcurrentQuerySlotsAcquired.count', + 'clickhouse.events.ConcurrentQuerySlotsAcquired.total', + 'clickhouse.events.ConcurrentQueryWaitMicroseconds', + 'clickhouse.events.CoordinatedMergesMergeAssignmentRequest.count', + 'clickhouse.events.CoordinatedMergesMergeAssignmentRequest.total', + 'clickhouse.events.CoordinatedMergesMergeAssignmentRequestMicroseconds', + 'clickhouse.events.CoordinatedMergesMergeAssignmentResponse.count', + 'clickhouse.events.CoordinatedMergesMergeAssignmentResponse.total', + 'clickhouse.events.CoordinatedMergesMergeAssignmentResponseMicroseconds', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorFetchMetadataMicroseconds', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorFilterMicroseconds', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount.count', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateExclusivelyCount.total', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateExclusivelyMicroseconds', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateForShareCount.count', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateForShareCount.total', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorLockStateForShareMicroseconds', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorSelectMergesMicroseconds', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorUpdateCount.count', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorUpdateCount.total', + 'clickhouse.events.CoordinatedMergesMergeCoordinatorUpdateMicroseconds', + 'clickhouse.events.CoordinatedMergesMergeWorkerUpdateCount.count', + 'clickhouse.events.CoordinatedMergesMergeWorkerUpdateCount.total', + 'clickhouse.events.CoordinatedMergesMergeWorkerUpdateMicroseconds', + 'clickhouse.events.DefaultImplementationForNullsRows.count', + 'clickhouse.events.DefaultImplementationForNullsRows.total', + 'clickhouse.events.DefaultImplementationForNullsRowsWithNulls.count', + 'clickhouse.events.DefaultImplementationForNullsRowsWithNulls.total', + 'clickhouse.events.DeltaLakePartitionPrunedFiles.count', + 'clickhouse.events.DeltaLakePartitionPrunedFiles.total', + 'clickhouse.events.DiskAzureGetRequestThrottlerCount.count', + 'clickhouse.events.DiskAzureGetRequestThrottlerCount.total', + 'clickhouse.events.DiskAzureGetRequestThrottlerSleepMicroseconds', + 'clickhouse.events.DiskAzurePutRequestThrottlerCount.count', + 'clickhouse.events.DiskAzurePutRequestThrottlerCount.total', + 'clickhouse.events.DiskAzurePutRequestThrottlerSleepMicroseconds', + 'clickhouse.events.DiskAzureReadMicroseconds', + 'clickhouse.events.DiskAzureReadRequestsCount.count', + 'clickhouse.events.DiskAzureReadRequestsCount.total', + 'clickhouse.events.DiskAzureReadRequestsErrors.count', + 'clickhouse.events.DiskAzureReadRequestsErrors.total', + 'clickhouse.events.DiskAzureReadRequestsRedirects.count', + 'clickhouse.events.DiskAzureReadRequestsRedirects.total', + 'clickhouse.events.DiskAzureReadRequestsThrottling.count', + 'clickhouse.events.DiskAzureReadRequestsThrottling.total', + 'clickhouse.events.DiskAzureWriteMicroseconds', + 'clickhouse.events.DiskAzureWriteRequestsCount.count', + 'clickhouse.events.DiskAzureWriteRequestsCount.total', + 'clickhouse.events.DiskAzureWriteRequestsErrors.count', + 'clickhouse.events.DiskAzureWriteRequestsErrors.total', + 'clickhouse.events.DiskAzureWriteRequestsRedirects.count', + 'clickhouse.events.DiskAzureWriteRequestsRedirects.total', + 'clickhouse.events.DiskAzureWriteRequestsThrottling.count', + 'clickhouse.events.DiskAzureWriteRequestsThrottling.total', + 'clickhouse.events.DiskPlainRewritableLegacyLayoutDiskCount.count', + 'clickhouse.events.DiskPlainRewritableLegacyLayoutDiskCount.total', + 'clickhouse.events.DiskS3ReadRequestAttempts.count', + 'clickhouse.events.DiskS3ReadRequestAttempts.total', + 'clickhouse.events.DiskS3ReadRequestRetryableErrors.count', + 'clickhouse.events.DiskS3ReadRequestRetryableErrors.total', + 'clickhouse.events.DiskS3WriteRequestAttempts.count', + 'clickhouse.events.DiskS3WriteRequestAttempts.total', + 'clickhouse.events.DiskS3WriteRequestRetryableErrors.count', + 'clickhouse.events.DiskS3WriteRequestRetryableErrors.total', + 'clickhouse.events.DistrCacheDataPacketsBytes.count', + 'clickhouse.events.DistrCacheDataPacketsBytes.total', + 'clickhouse.events.DistrCacheGetClientMicroseconds', + 'clickhouse.events.DistrCacheHashRingRebuilds.count', + 'clickhouse.events.DistrCacheHashRingRebuilds.total', + 'clickhouse.events.DistrCacheMakeRequestErrors.count', + 'clickhouse.events.DistrCacheMakeRequestErrors.total', + 'clickhouse.events.DistrCacheOpenedConnectionsBypassingPool.count', + 'clickhouse.events.DistrCacheOpenedConnectionsBypassingPool.total', + 'clickhouse.events.DistrCacheRangeChange.count', + 'clickhouse.events.DistrCacheRangeChange.total', + 'clickhouse.events.DistrCacheRangeResetBackward.count', + 'clickhouse.events.DistrCacheRangeResetBackward.total', + 'clickhouse.events.DistrCacheRangeResetForward.count', + 'clickhouse.events.DistrCacheRangeResetForward.total', + 'clickhouse.events.DistrCacheReadBytesFromFallbackBuffer.count', + 'clickhouse.events.DistrCacheReadBytesFromFallbackBuffer.total', + 'clickhouse.events.DistrCacheReadErrors.count', + 'clickhouse.events.DistrCacheReadErrors.total', + 'clickhouse.events.DistrCacheReceiveResponseErrors.count', + 'clickhouse.events.DistrCacheReceiveResponseErrors.total', + 'clickhouse.events.DistrCacheReconnectsAfterTimeout.count', + 'clickhouse.events.DistrCacheReconnectsAfterTimeout.total', + 'clickhouse.events.DistrCacheServerAckRequestPackets.count', + 'clickhouse.events.DistrCacheServerAckRequestPackets.total', + 'clickhouse.events.DistrCacheServerCachedReadBufferCacheHits.count', + 'clickhouse.events.DistrCacheServerCachedReadBufferCacheHits.total', + 'clickhouse.events.DistrCacheServerCachedReadBufferCacheMisses.count', + 'clickhouse.events.DistrCacheServerCachedReadBufferCacheMisses.total', + 'clickhouse.events.DistrCacheServerContinueRequestPackets.count', + 'clickhouse.events.DistrCacheServerContinueRequestPackets.total', + 'clickhouse.events.DistrCacheServerCredentialsRefresh.count', + 'clickhouse.events.DistrCacheServerCredentialsRefresh.total', + 'clickhouse.events.DistrCacheServerEndRequestPackets.count', + 'clickhouse.events.DistrCacheServerEndRequestPackets.total', + 'clickhouse.events.DistrCacheServerNewS3CachedClients.count', + 'clickhouse.events.DistrCacheServerNewS3CachedClients.total', + 'clickhouse.events.DistrCacheServerReceivedCredentialsRefreshPackets.count', + 'clickhouse.events.DistrCacheServerReceivedCredentialsRefreshPackets.total', + 'clickhouse.events.DistrCacheServerReusedS3CachedClients.count', + 'clickhouse.events.DistrCacheServerReusedS3CachedClients.total', + 'clickhouse.events.DistrCacheServerStartRequestPackets.count', + 'clickhouse.events.DistrCacheServerStartRequestPackets.total', + 'clickhouse.events.DistrCacheServerUpdates.count', + 'clickhouse.events.DistrCacheServerUpdates.total', + 'clickhouse.events.DistrCacheUnusedDataPacketsBytes.count', + 'clickhouse.events.DistrCacheUnusedDataPacketsBytes.total', + 'clickhouse.events.DistrCacheUnusedPacketsBufferAllocations.count', + 'clickhouse.events.DistrCacheUnusedPacketsBufferAllocations.total', + 'clickhouse.events.DistributedConnectionReconnectCount.count', + 'clickhouse.events.DistributedConnectionReconnectCount.total', + 'clickhouse.events.FetchBackgroundExecutorTaskCancelMicroseconds', + 'clickhouse.events.FetchBackgroundExecutorTaskExecuteStepMicroseconds', + 'clickhouse.events.FetchBackgroundExecutorTaskResetMicroseconds', + 'clickhouse.events.FetchBackgroundExecutorWaitMicroseconds', + 'clickhouse.events.FilesystemCacheBackgroundDownloadQueuePush.count', + 'clickhouse.events.FilesystemCacheBackgroundDownloadQueuePush.total', + 'clickhouse.events.FilesystemCacheBackgroundEvictedBytes.count', + 'clickhouse.events.FilesystemCacheBackgroundEvictedBytes.total', + 'clickhouse.events.FilesystemCacheBackgroundEvictedFileSegments.count', + 'clickhouse.events.FilesystemCacheBackgroundEvictedFileSegments.total', + 'clickhouse.events.FilesystemCacheCreatedKeyDirectories.count', + 'clickhouse.events.FilesystemCacheCreatedKeyDirectories.total', + 'clickhouse.events.FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease.count', + 'clickhouse.events.FilesystemCacheEvictedFileSegmentsDuringPriorityIncrease.total', + 'clickhouse.events.FilesystemCacheEvictionReusedIterator.count', + 'clickhouse.events.FilesystemCacheEvictionReusedIterator.total', + 'clickhouse.events.FilesystemCacheFailedEvictionCandidates.count', + 'clickhouse.events.FilesystemCacheFailedEvictionCandidates.total', + 'clickhouse.events.FilesystemCacheReserveAttempts.count', + 'clickhouse.events.FilesystemCacheReserveAttempts.total', + 'clickhouse.events.FilterTransformPassedBytes.count', + 'clickhouse.events.FilterTransformPassedBytes.total', + 'clickhouse.events.FilterTransformPassedRows.count', + 'clickhouse.events.FilterTransformPassedRows.total', + 'clickhouse.events.FilteringMarksWithPrimaryKeyMicroseconds', + 'clickhouse.events.FilteringMarksWithSecondaryKeysMicroseconds', + 'clickhouse.events.GlobalThreadPoolExpansions.count', + 'clickhouse.events.GlobalThreadPoolExpansions.total', + 'clickhouse.events.GlobalThreadPoolJobWaitTimeMicroseconds', + 'clickhouse.events.GlobalThreadPoolJobs.count', + 'clickhouse.events.GlobalThreadPoolJobs.total', + 'clickhouse.events.GlobalThreadPoolLockWaitMicroseconds', + 'clickhouse.events.GlobalThreadPoolShrinks.count', + 'clickhouse.events.GlobalThreadPoolShrinks.total', + 'clickhouse.events.GlobalThreadPoolThreadCreationMicroseconds', + 'clickhouse.events.HTTPServerConnectionsClosed.count', + 'clickhouse.events.HTTPServerConnectionsClosed.total', + 'clickhouse.events.HTTPServerConnectionsCreated.count', + 'clickhouse.events.HTTPServerConnectionsCreated.total', + 'clickhouse.events.HTTPServerConnectionsExpired.count', + 'clickhouse.events.HTTPServerConnectionsExpired.total', + 'clickhouse.events.HTTPServerConnectionsPreserved.count', + 'clickhouse.events.HTTPServerConnectionsPreserved.total', + 'clickhouse.events.HTTPServerConnectionsReset.count', + 'clickhouse.events.HTTPServerConnectionsReset.total', + 'clickhouse.events.HTTPServerConnectionsReused.count', + 'clickhouse.events.HTTPServerConnectionsReused.total', + 'clickhouse.events.IcebergIteratorInitializationMicroseconds', + 'clickhouse.events.IcebergMetadataFilesCacheHits.count', + 'clickhouse.events.IcebergMetadataFilesCacheHits.total', + 'clickhouse.events.IcebergMetadataFilesCacheMisses.count', + 'clickhouse.events.IcebergMetadataFilesCacheMisses.total', + 'clickhouse.events.IcebergMetadataFilesCacheWeightLost.count', + 'clickhouse.events.IcebergMetadataFilesCacheWeightLost.total', + 'clickhouse.events.IcebergMetadataReadWaitTimeMicroseconds', + 'clickhouse.events.IcebergMetadataReturnedObjectInfos.count', + 'clickhouse.events.IcebergMetadataReturnedObjectInfos.total', + 'clickhouse.events.IcebergMetadataUpdateMicroseconds', + 'clickhouse.events.IcebergMinMaxIndexPrunedFiles.count', + 'clickhouse.events.IcebergMinMaxIndexPrunedFiles.total', + 'clickhouse.events.IcebergPartitionPrunedFiles.count', + 'clickhouse.events.IcebergPartitionPrunedFiles.total', + 'clickhouse.events.IcebergTrivialCountOptimizationApplied.count', + 'clickhouse.events.IcebergTrivialCountOptimizationApplied.total', + 'clickhouse.events.IcebergVersionHintUsed.count', + 'clickhouse.events.IcebergVersionHintUsed.total', + 'clickhouse.events.IndexBinarySearchAlgorithm.count', + 'clickhouse.events.IndexBinarySearchAlgorithm.total', + 'clickhouse.events.IndexGenericExclusionSearchAlgorithm.count', + 'clickhouse.events.IndexGenericExclusionSearchAlgorithm.total', + 'clickhouse.events.JoinBuildTableRowCount.count', + 'clickhouse.events.JoinBuildTableRowCount.total', + 'clickhouse.events.JoinProbeTableRowCount.count', + 'clickhouse.events.JoinProbeTableRowCount.total', + 'clickhouse.events.JoinResultRowCount.count', + 'clickhouse.events.JoinResultRowCount.total', + 'clickhouse.events.KeeperRequestRejectedDueToSoftMemoryLimitCount.count', + 'clickhouse.events.KeeperRequestRejectedDueToSoftMemoryLimitCount.total', + 'clickhouse.events.LoadedDataParts.count', + 'clickhouse.events.LoadedDataParts.total', + 'clickhouse.events.LoadedDataPartsMicroseconds', + 'clickhouse.events.LoadedMarksFiles.count', + 'clickhouse.events.LoadedMarksFiles.total', + 'clickhouse.events.LoadedPrimaryIndexBytes.count', + 'clickhouse.events.LoadedPrimaryIndexBytes.total', + 'clickhouse.events.LoadedPrimaryIndexFiles.count', + 'clickhouse.events.LoadedPrimaryIndexFiles.total', + 'clickhouse.events.LoadedPrimaryIndexRows.count', + 'clickhouse.events.LoadedPrimaryIndexRows.total', + 'clickhouse.events.LoadingMarksTasksCanceled.count', + 'clickhouse.events.LoadingMarksTasksCanceled.total', + 'clickhouse.events.LocalThreadPoolBusyMicroseconds', + 'clickhouse.events.LocalThreadPoolExpansions.count', + 'clickhouse.events.LocalThreadPoolExpansions.total', + 'clickhouse.events.LocalThreadPoolJobWaitTimeMicroseconds', + 'clickhouse.events.LocalThreadPoolJobs', + 'clickhouse.events.LocalThreadPoolLockWaitMicroseconds', + 'clickhouse.events.LocalThreadPoolShrinks.count', + 'clickhouse.events.LocalThreadPoolShrinks.total', + 'clickhouse.events.LocalThreadPoolThreadCreationMicroseconds', + 'clickhouse.events.LoggerElapsedNanoseconds', + 'clickhouse.events.MarkCacheEvictedBytes.count', + 'clickhouse.events.MarkCacheEvictedBytes.total', + 'clickhouse.events.MarkCacheEvictedFiles.count', + 'clickhouse.events.MarkCacheEvictedFiles.total', + 'clickhouse.events.MarkCacheEvictedMarks.count', + 'clickhouse.events.MarkCacheEvictedMarks.total', + 'clickhouse.events.MemoryWorkerRun.count', + 'clickhouse.events.MemoryWorkerRun.total', + 'clickhouse.events.MemoryWorkerRunElapsedMicroseconds', + 'clickhouse.events.MergeMutateBackgroundExecutorTaskCancelMicroseconds', + 'clickhouse.events.MergeMutateBackgroundExecutorTaskExecuteStepMicroseconds', + 'clickhouse.events.MergeMutateBackgroundExecutorTaskResetMicroseconds', + 'clickhouse.events.MergeMutateBackgroundExecutorWaitMicroseconds', + 'clickhouse.events.MergePrewarmStageExecuteMilliseconds', + 'clickhouse.events.MergePrewarmStageTotalMilliseconds', + 'clickhouse.events.MergeSourceParts.count', + 'clickhouse.events.MergeSourceParts.total', + 'clickhouse.events.MergerMutatorPartsInRangesForMergeCount.count', + 'clickhouse.events.MergerMutatorPartsInRangesForMergeCount.total', + 'clickhouse.events.MergerMutatorPrepareRangesForMergeElapsedMicroseconds', + 'clickhouse.events.MergerMutatorRangesForMergeCount.count', + 'clickhouse.events.MergerMutatorRangesForMergeCount.total', + 'clickhouse.events.MergerMutatorSelectPartsForMergeElapsedMicroseconds', + 'clickhouse.events.MergerMutatorSelectRangePartsCount.count', + 'clickhouse.events.MergerMutatorSelectRangePartsCount.total', + 'clickhouse.events.MergerMutatorsGetPartsForMergeElapsedMicroseconds', + 'clickhouse.events.MergesThrottlerBytes.count', + 'clickhouse.events.MergesThrottlerBytes.total', + 'clickhouse.events.MergesThrottlerSleepMicroseconds', + 'clickhouse.events.MetadataFromKeeperIndividualOperationsMicroseconds', + 'clickhouse.events.MoveBackgroundExecutorTaskCancelMicroseconds', + 'clickhouse.events.MoveBackgroundExecutorTaskExecuteStepMicroseconds', + 'clickhouse.events.MoveBackgroundExecutorTaskResetMicroseconds', + 'clickhouse.events.MoveBackgroundExecutorWaitMicroseconds', + 'clickhouse.events.MutationAffectedRowsUpperBound.count', + 'clickhouse.events.MutationAffectedRowsUpperBound.total', + 'clickhouse.events.MutationCreatedEmptyParts.count', + 'clickhouse.events.MutationCreatedEmptyParts.total', + 'clickhouse.events.MutationsAppliedOnFlyInAllReadTasks.count', + 'clickhouse.events.MutationsAppliedOnFlyInAllReadTasks.total', + 'clickhouse.events.MutationsThrottlerBytes.count', + 'clickhouse.events.MutationsThrottlerBytes.total', + 'clickhouse.events.MutationsThrottlerSleepMicroseconds', + 'clickhouse.events.ObjectStorageQueueCancelledFiles.count', + 'clickhouse.events.ObjectStorageQueueCancelledFiles.total', + 'clickhouse.events.ObjectStorageQueueCommitRequests.count', + 'clickhouse.events.ObjectStorageQueueCommitRequests.total', + 'clickhouse.events.ObjectStorageQueueExceptionsDuringInsert.count', + 'clickhouse.events.ObjectStorageQueueExceptionsDuringInsert.total', + 'clickhouse.events.ObjectStorageQueueExceptionsDuringRead.count', + 'clickhouse.events.ObjectStorageQueueExceptionsDuringRead.total', + 'clickhouse.events.ObjectStorageQueueFailedToBatchSetProcessing.count', + 'clickhouse.events.ObjectStorageQueueFailedToBatchSetProcessing.total', + 'clickhouse.events.ObjectStorageQueueFilteredFiles.count', + 'clickhouse.events.ObjectStorageQueueFilteredFiles.total', + 'clickhouse.events.ObjectStorageQueueInsertIterations.count', + 'clickhouse.events.ObjectStorageQueueInsertIterations.total', + 'clickhouse.events.ObjectStorageQueueListedFiles.count', + 'clickhouse.events.ObjectStorageQueueListedFiles.total', + 'clickhouse.events.ObjectStorageQueueProcessedRows.count', + 'clickhouse.events.ObjectStorageQueueProcessedRows.total', + 'clickhouse.events.ObjectStorageQueueReadBytes.count', + 'clickhouse.events.ObjectStorageQueueReadBytes.total', + 'clickhouse.events.ObjectStorageQueueReadFiles.count', + 'clickhouse.events.ObjectStorageQueueReadFiles.total', + 'clickhouse.events.ObjectStorageQueueReadRows.count', + 'clickhouse.events.ObjectStorageQueueReadRows.total', + 'clickhouse.events.ObjectStorageQueueRemovedObjects.count', + 'clickhouse.events.ObjectStorageQueueRemovedObjects.total', + 'clickhouse.events.ObjectStorageQueueSuccessfulCommits.count', + 'clickhouse.events.ObjectStorageQueueSuccessfulCommits.total', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingFailed.count', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingFailed.total', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingRequests.count', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingRequests.total', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingSucceeded.count', + 'clickhouse.events.ObjectStorageQueueTrySetProcessingSucceeded.total', + 'clickhouse.events.ObjectStorageQueueUnsuccessfulCommits.count', + 'clickhouse.events.ObjectStorageQueueUnsuccessfulCommits.total', + 'clickhouse.events.PageCacheHits.count', + 'clickhouse.events.PageCacheHits.total', + 'clickhouse.events.PageCacheMisses.count', + 'clickhouse.events.PageCacheMisses.total', + 'clickhouse.events.PageCacheOvercommitResize.count', + 'clickhouse.events.PageCacheOvercommitResize.total', + 'clickhouse.events.PageCacheReadBytes.count', + 'clickhouse.events.PageCacheReadBytes.total', + 'clickhouse.events.PageCacheResized.count', + 'clickhouse.events.PageCacheResized.total', + 'clickhouse.events.PageCacheWeightLost.count', + 'clickhouse.events.PageCacheWeightLost.total', + 'clickhouse.events.ParallelReplicasAnnouncementMicroseconds', + 'clickhouse.events.ParallelReplicasQueryCount.count', + 'clickhouse.events.ParallelReplicasQueryCount.total', + 'clickhouse.events.ParallelReplicasReadMarks.count', + 'clickhouse.events.ParallelReplicasReadMarks.total', + 'clickhouse.events.ParallelReplicasReadRequestMicroseconds', + 'clickhouse.events.ParquetDecodingTaskBatches.count', + 'clickhouse.events.ParquetDecodingTaskBatches.total', + 'clickhouse.events.ParquetDecodingTasks.count', + 'clickhouse.events.ParquetDecodingTasks.total', + 'clickhouse.events.ParquetFetchWaitTimeMicroseconds', + 'clickhouse.events.ParquetPrunedRowGroups.count', + 'clickhouse.events.ParquetPrunedRowGroups.total', + 'clickhouse.events.ParquetReadRowGroups.count', + 'clickhouse.events.ParquetReadRowGroups.total', + 'clickhouse.events.PatchesAcquireLockMicroseconds.count', + 'clickhouse.events.PatchesAcquireLockMicroseconds.total', + 'clickhouse.events.PatchesAcquireLockTries.count', + 'clickhouse.events.PatchesAcquireLockTries.total', + 'clickhouse.events.PatchesAppliedInAllReadTasks.count', + 'clickhouse.events.PatchesAppliedInAllReadTasks.total', + 'clickhouse.events.PatchesJoinAppliedInAllReadTasks.count', + 'clickhouse.events.PatchesJoinAppliedInAllReadTasks.total', + 'clickhouse.events.PatchesMergeAppliedInAllReadTasks.count', + 'clickhouse.events.PatchesMergeAppliedInAllReadTasks.total', + 'clickhouse.events.PatchesReadUncompressedBytes.count', + 'clickhouse.events.PatchesReadUncompressedBytes.total', + 'clickhouse.events.PrimaryIndexCacheHits.count', + 'clickhouse.events.PrimaryIndexCacheHits.total', + 'clickhouse.events.PrimaryIndexCacheMisses.count', + 'clickhouse.events.PrimaryIndexCacheMisses.total', + 'clickhouse.events.QueryBackupThrottlerBytes.count', + 'clickhouse.events.QueryBackupThrottlerBytes.total', + 'clickhouse.events.QueryBackupThrottlerSleepMicroseconds', + 'clickhouse.events.QueryConditionCacheHits.count', + 'clickhouse.events.QueryConditionCacheHits.total', + 'clickhouse.events.QueryConditionCacheMisses.count', + 'clickhouse.events.QueryConditionCacheMisses.total', + 'clickhouse.events.QueryLocalReadThrottlerBytes.count', + 'clickhouse.events.QueryLocalReadThrottlerBytes.total', + 'clickhouse.events.QueryLocalReadThrottlerSleepMicroseconds', + 'clickhouse.events.QueryLocalWriteThrottlerBytes.count', + 'clickhouse.events.QueryLocalWriteThrottlerBytes.total', + 'clickhouse.events.QueryLocalWriteThrottlerSleepMicroseconds', + 'clickhouse.events.QueryPreempted.count', + 'clickhouse.events.QueryPreempted.total', + 'clickhouse.events.QueryRemoteReadThrottlerBytes.count', + 'clickhouse.events.QueryRemoteReadThrottlerBytes.total', + 'clickhouse.events.QueryRemoteReadThrottlerSleepMicroseconds', + 'clickhouse.events.QueryRemoteWriteThrottlerBytes.count', + 'clickhouse.events.QueryRemoteWriteThrottlerBytes.total', + 'clickhouse.events.QueryRemoteWriteThrottlerSleepMicroseconds', + 'clickhouse.events.ReadPatchesMicroseconds.count', + 'clickhouse.events.ReadPatchesMicroseconds.total', + 'clickhouse.events.ReadTasksWithAppliedMutationsOnFly.count', + 'clickhouse.events.ReadTasksWithAppliedMutationsOnFly.total', + 'clickhouse.events.ReadTasksWithAppliedPatches.count', + 'clickhouse.events.ReadTasksWithAppliedPatches.total', + 'clickhouse.events.RefreshableViewLockTableRetry.count', + 'clickhouse.events.RefreshableViewLockTableRetry.total', + 'clickhouse.events.RefreshableViewRefreshFailed.count', + 'clickhouse.events.RefreshableViewRefreshFailed.total', + 'clickhouse.events.RefreshableViewRefreshSuccess.count', + 'clickhouse.events.RefreshableViewRefreshSuccess.total', + 'clickhouse.events.RefreshableViewSyncReplicaRetry.count', + 'clickhouse.events.RefreshableViewSyncReplicaRetry.total', + 'clickhouse.events.RefreshableViewSyncReplicaSuccess.count', + 'clickhouse.events.RefreshableViewSyncReplicaSuccess.total', + 'clickhouse.events.RejectedLightweightUpdates.count', + 'clickhouse.events.RejectedLightweightUpdates.total', + 'clickhouse.events.RestorePartsSkippedBytes.count', + 'clickhouse.events.RestorePartsSkippedBytes.total', + 'clickhouse.events.RestorePartsSkippedFiles.count', + 'clickhouse.events.RestorePartsSkippedFiles.total', + 'clickhouse.events.S3ReadRequestAttempts.count', + 'clickhouse.events.S3ReadRequestAttempts.total', + 'clickhouse.events.S3ReadRequestRetryableErrors.count', + 'clickhouse.events.S3ReadRequestRetryableErrors.total', + 'clickhouse.events.S3WriteRequestAttempts.count', + 'clickhouse.events.S3WriteRequestAttempts.total', + 'clickhouse.events.S3WriteRequestRetryableErrors.count', + 'clickhouse.events.S3WriteRequestRetryableErrors.total', + 'clickhouse.events.SchedulerIOReadBytes.count', + 'clickhouse.events.SchedulerIOReadBytes.total', + 'clickhouse.events.SchedulerIOReadRequests.count', + 'clickhouse.events.SchedulerIOReadRequests.total', + 'clickhouse.events.SchedulerIOReadWaitMicroseconds', + 'clickhouse.events.SchedulerIOWriteBytes.count', + 'clickhouse.events.SchedulerIOWriteBytes.total', + 'clickhouse.events.SchedulerIOWriteRequests.count', + 'clickhouse.events.SchedulerIOWriteRequests.total', + 'clickhouse.events.SchedulerIOWriteWaitMicroseconds', + 'clickhouse.events.SharedDatabaseCatalogFailedToApplyState.count', + 'clickhouse.events.SharedDatabaseCatalogFailedToApplyState.total', + 'clickhouse.events.SharedDatabaseCatalogStateApplicationMicroseconds', + 'clickhouse.events.SharedMergeTreeCondemnedPartsKillRequest.count', + 'clickhouse.events.SharedMergeTreeCondemnedPartsKillRequest.total', + 'clickhouse.events.SharedMergeTreeCondemnedPartsLockConfict.count', + 'clickhouse.events.SharedMergeTreeCondemnedPartsLockConfict.total', + 'clickhouse.events.SharedMergeTreeCondemnedPartsRemoved.count', + 'clickhouse.events.SharedMergeTreeCondemnedPartsRemoved.total', + 'clickhouse.events.SharedMergeTreeDataPartsFetchAttempt.count', + 'clickhouse.events.SharedMergeTreeDataPartsFetchAttempt.total', + 'clickhouse.events.SharedMergeTreeDataPartsFetchFromPeer.count', + 'clickhouse.events.SharedMergeTreeDataPartsFetchFromPeer.total', + 'clickhouse.events.SharedMergeTreeDataPartsFetchFromPeerMicroseconds.count', + 'clickhouse.events.SharedMergeTreeDataPartsFetchFromPeerMicroseconds.total', + 'clickhouse.events.SharedMergeTreeDataPartsFetchFromS3.count', + 'clickhouse.events.SharedMergeTreeDataPartsFetchFromS3.total', + 'clickhouse.events.SharedMergeTreeGetPartsBatchToLoadMicroseconds.count', + 'clickhouse.events.SharedMergeTreeGetPartsBatchToLoadMicroseconds.total', + 'clickhouse.events.SharedMergeTreeHandleBlockingParts.count', + 'clickhouse.events.SharedMergeTreeHandleBlockingParts.total', + 'clickhouse.events.SharedMergeTreeHandleBlockingPartsMicroseconds.count', + 'clickhouse.events.SharedMergeTreeHandleBlockingPartsMicroseconds.total', + 'clickhouse.events.SharedMergeTreeHandleFetchPartsMicroseconds.count', + 'clickhouse.events.SharedMergeTreeHandleFetchPartsMicroseconds.total', + 'clickhouse.events.SharedMergeTreeHandleOutdatedParts.count', + 'clickhouse.events.SharedMergeTreeHandleOutdatedParts.total', + 'clickhouse.events.SharedMergeTreeHandleOutdatedPartsMicroseconds.count', + 'clickhouse.events.SharedMergeTreeHandleOutdatedPartsMicroseconds.total', + 'clickhouse.events.SharedMergeTreeLoadChecksumAndIndexesMicroseconds.count', + 'clickhouse.events.SharedMergeTreeLoadChecksumAndIndexesMicroseconds.total', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentAttempt.count', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentAttempt.total', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithConflict.count', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithConflict.total', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo.count', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentFailedWithNothingToDo.total', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentSuccessful.count', + 'clickhouse.events.SharedMergeTreeMergeMutationAssignmentSuccessful.total', + 'clickhouse.events.SharedMergeTreeMergePartsMovedToCondemned.count', + 'clickhouse.events.SharedMergeTreeMergePartsMovedToCondemned.total', + 'clickhouse.events.SharedMergeTreeMergePartsMovedToOudated.count', + 'clickhouse.events.SharedMergeTreeMergePartsMovedToOudated.total', + 'clickhouse.events.SharedMergeTreeMergeSelectingTaskMicroseconds.count', + 'clickhouse.events.SharedMergeTreeMergeSelectingTaskMicroseconds.total', + 'clickhouse.events.SharedMergeTreeMetadataCacheHintLoadedFromCache.count', + 'clickhouse.events.SharedMergeTreeMetadataCacheHintLoadedFromCache.total', + 'clickhouse.events.SharedMergeTreeOptimizeAsync.count', + 'clickhouse.events.SharedMergeTreeOptimizeAsync.total', + 'clickhouse.events.SharedMergeTreeOptimizeSync.count', + 'clickhouse.events.SharedMergeTreeOptimizeSync.total', + 'clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationInvocations.count', + 'clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationInvocations.total', + 'clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationRequest.count', + 'clickhouse.events.SharedMergeTreeOutdatedPartsConfirmationRequest.total', + 'clickhouse.events.SharedMergeTreeOutdatedPartsHTTPRequest.count', + 'clickhouse.events.SharedMergeTreeOutdatedPartsHTTPRequest.total', + 'clickhouse.events.SharedMergeTreeOutdatedPartsHTTPResponse.count', + 'clickhouse.events.SharedMergeTreeOutdatedPartsHTTPResponse.total', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJob.count', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJob.total', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJobMicroseconds.count', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJobMicroseconds.total', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJobNothingToScheduled.count', + 'clickhouse.events.SharedMergeTreeScheduleDataProcessingJobNothingToScheduled.total', + 'clickhouse.events.SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds.count', + 'clickhouse.events.SharedMergeTreeTryUpdateDiskMetadataCacheForPartMicroseconds.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdateMicroseconds', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdates.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdates.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesByLeader.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesByLeader.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesForMergesOrStatus.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromPeer.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromPeer.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromPeerMicroseconds', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeper.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeper.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesFromZooKeeperMicroseconds', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderFailedElection.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesLeaderSuccessfulElection.total', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesPeerNotFound.count', + 'clickhouse.events.SharedMergeTreeVirtualPartsUpdatesPeerNotFound.total', + 'clickhouse.events.SystemLogErrorOnFlush.count', + 'clickhouse.events.SystemLogErrorOnFlush.total', + 'clickhouse.events.VectorSimilarityIndexCacheHits.count', + 'clickhouse.events.VectorSimilarityIndexCacheHits.total', + 'clickhouse.events.VectorSimilarityIndexCacheMisses.count', + 'clickhouse.events.VectorSimilarityIndexCacheMisses.total', + 'clickhouse.events.VectorSimilarityIndexCacheWeightLost.count', + 'clickhouse.events.VectorSimilarityIndexCacheWeightLost.total', + 'clickhouse.events.WriteBufferFromHTTPBytes.count', + 'clickhouse.events.WriteBufferFromHTTPBytes.total', + 'clickhouse.events.WriteBufferFromHTTPRequestsSent.count', + 'clickhouse.events.WriteBufferFromHTTPRequestsSent.total', + 'clickhouse.events.ZooKeeperGetACL.count', + 'clickhouse.events.ZooKeeperGetACL.total', + 'clickhouse.events.ZooKeeperMultiRead.count', + 'clickhouse.events.ZooKeeperMultiRead.total', + 'clickhouse.events.ZooKeeperMultiWrite.count', + 'clickhouse.events.ZooKeeperMultiWrite.total', +] + +BASE_VERSION_MAPPER = {'24.8': V_24_8_METRICS, '25.3': V_25_3_METRICS, '25.8': V_25_8_METRICS} + +OPTIONAL_VERSION_MAPPER = {'24.8': V_24_8_OPTIONAL, '25.3': V_25_3_OPTIONAL, '25.8': V_25_8_OPTIONAL} + + +def get_metrics(version: str) -> list[str]: + return BASE_METRICS + BASE_VERSION_MAPPER.get(version, []) + + +def get_optional_metrics(version: str) -> list[str]: + return OPTIONAL_METRICS + OPTIONAL_VERSION_MAPPER.get(version, []) diff --git a/clickhouse/tests/common.py b/clickhouse/tests/common.py index a96939775e797..5cbd5c2829850 100644 --- a/clickhouse/tests/common.py +++ b/clickhouse/tests/common.py @@ -3,21 +3,28 @@ # Licensed under a 3-clause BSD style license (see LICENSE) import os +from datadog_checks.base import is_affirmative from datadog_checks.dev import get_docker_hostname, get_here +from . import advanced_metrics, metrics + HERE = get_here() -COMPOSE_FILE_PATH = os.path.join(HERE, 'docker', 'docker-compose.yaml') SERVER_CERT_PATH = os.path.join(HERE, 'docker', 'certs', 'server.crt') HOST = get_docker_hostname() HTTP_START_PORT = 8128 TCP_START_PORT = 9001 HTTPS_PORT = 8134 + CLICKHOUSE_VERSION = os.environ['CLICKHOUSE_VERSION'] +COMPOSE_FILE = os.path.join(HERE, 'docker', 'compose.yaml') +COMPOSE_LOGS_FILE = os.path.join(HERE, 'docker', 'compose-logs.yaml') +COMPOSE_LEGACY_FILE = os.path.join(HERE, 'docker', 'compose-legacy.yaml') + CONFIG = { - 'server': HOST, - 'port': HTTP_START_PORT, + 'server': get_docker_hostname(), + 'port': 8123, 'username': 'datadog', 'password': 'Datadog123!', 'tags': ['foo:bar'], @@ -31,3 +38,31 @@ 'tls_verify': True, 'tags': ['foo:bar'], } + + +def get_compose_file() -> tuple[str, bool]: + if is_legacy(CLICKHOUSE_VERSION): + return COMPOSE_LEGACY_FILE, False + + if is_affirmative(os.getenv('MOUNT_LOGS', False)): + return COMPOSE_LOGS_FILE, True + + return COMPOSE_FILE, False + + +def get_metrics(version: str) -> list[str]: + if is_legacy(version): + return metrics.get_metrics(version) + + return advanced_metrics.get_metrics(version) + + +def get_optional_metrics(version: str) -> list[str]: + if is_legacy(version): + return metrics.OPTIONAL_METRICS + + return advanced_metrics.get_optional_metrics(version) + + +def is_legacy(version: str) -> bool: + return version in ["18", "19", "20", "21.8", "22.7", "23.2", "23.8"] diff --git a/clickhouse/tests/conftest.py b/clickhouse/tests/conftest.py index 003b415312452..730ad4e569ea7 100644 --- a/clickhouse/tests/conftest.py +++ b/clickhouse/tests/conftest.py @@ -14,46 +14,48 @@ @pytest.fixture(scope='session') def dd_environment(): - conditions = [] - - for i in range(6): - conditions.append(CheckEndpoints(['http://{}:{}'.format(common.HOST, common.HTTP_START_PORT + i)])) - conditions.append( - CheckDockerLogs( - 'clickhouse-0{}'.format(i + 1), 'Logging errors to /var/log/clickhouse-server/clickhouse-server.err.log' - ) - ) - - conditions.append( + config = get_instance_config() + + conditions = [ + CheckDockerLogs( + identifier='clickhouse', + patterns='Logging errors to /var/log/clickhouse-server/clickhouse-server.err.log', + wait=5, + ), + CheckEndpoints(endpoints=['http://{}:{}'.format(config['server'], config['port'])], wait=5), WaitFor( - ping_clickhouse( - common.CONFIG['server'], - common.CONFIG['port'], - common.CONFIG['username'], - common.CONFIG['password'], - ) - ) - ) + func=ping_clickhouse(config['server'], config['port'], config['username'], config['password']), + wait=5, + ), + ] conditions.append( WaitFor( - ping_clickhouse( + func=ping_clickhouse( common.TLS_CONFIG['server'], common.TLS_CONFIG['port'], common.TLS_CONFIG['username'], common.TLS_CONFIG['password'], secure=True, - ) + ), + wait=5, ) ) - with docker_run(common.COMPOSE_FILE_PATH, conditions=conditions, sleep=10, attempts=2): - yield common.CONFIG + compose_file, mount_logs = common.get_compose_file() + with docker_run(compose_file, conditions=conditions, sleep=10, attempts=2, mount_logs=mount_logs): + yield config @pytest.fixture def instance(): - return deepcopy(common.CONFIG) + config = get_instance_config() + if common.is_legacy(common.CLICKHOUSE_VERSION): + config['use_advanced_queries'] = False + else: + config['use_legacy_queries'] = False + + return config @pytest.fixture @@ -63,7 +65,7 @@ def tls_instance(): def ping_clickhouse(host, port, username, password, secure=False): def _ping_clickhouse(): - client = clickhouse_connect.get_client( + client = get_clickhouse_client( host=host, port=port, username=username, @@ -74,3 +76,18 @@ def _ping_clickhouse(): return client.ping() return _ping_clickhouse + + +def get_clickhouse_client(host, port, username, password, secure=False, verify=False): + return clickhouse_connect.get_client( + host=host, + port=port, + username=username, + password=password, + secure=secure, + verify=verify, + ) + + +def get_instance_config() -> dict: + return deepcopy(common.CONFIG) diff --git a/clickhouse/tests/docker/compose-legacy.yaml b/clickhouse/tests/docker/compose-legacy.yaml new file mode 100644 index 0000000000000..39a2ac1ded4cc --- /dev/null +++ b/clickhouse/tests/docker/compose-legacy.yaml @@ -0,0 +1,65 @@ +# https://hub.docker.com/r/yandex/clickhouse-server + +services: + clickhouse: + image: ${CLICKHOUSE_REPOSITORY}:${CLICKHOUSE_VERSION} + container_name: clickhouse + hostname: clickhouse + networks: + - clickhouse-network + cap_add: + - IPC_LOCK + - NET_ADMIN + ulimits: + nproc: 65536 + nofile: + soft: 262144 + hard: 262144 + ports: + - '8123:8123' + - '8134:8443' + - '9000:9000' + volumes: + - ./volumes/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d + - ./volumes/legacy/clickhouse.xml:/etc/clickhouse-server/config.d/config.xml + - ./volumes/legacy/users.xml:/etc/clickhouse-server/users.d/users.xml + - ./volumes/legacy/dictionary.xml:/etc/clickhouse-server/test_dictionary.xml + - ./volumes/legacy/dictionary.csv:/opt/dictionaries/test.csv + - ./tls_config.xml:/etc/clickhouse-server/config.d/tls.xml + - ./certs/server.crt:/etc/clickhouse-server/ssl/server.crt + - ./certs/server.key:/etc/clickhouse-server/ssl/server.key + - ./certs/dhparam.pem:/etc/clickhouse-server/dhparam.pem + depends_on: + clickhouse-zookeeper: + condition: service_healthy + + clickhouse-zookeeper: + # Using zookeeper `3.6.0` is raising this error: + # Connection request from old client /172.30.0.7:51646; will be dropped if server is in r-o mode + # For now, we use zookeeper `3.5.8` instead + # Similar case: https://stackoverflow.com/a/22884698 + image: zookeeper:3.5.8 + hostname: clickhouse-zookeeper + container_name: clickhouse-zookeeper + ports: + - "2181:2181" + - "2182:2182" + networks: + - clickhouse-network + environment: + KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 + # "You need to set advertised.listeners (or KAFKA_ADVERTISED_LISTENERS if you’re using Docker images) to + # the external address (host/IP) so that clients can correctly connect to it. Otherwise they’ll try to + # connect to the internal host address–and if that’s not reachable then problems ensue." + # Source: https://rmoff.net/2018/08/02/kafka-listeners-explained/ + KAFKA_ADVERTISED_LISTENERS: CLICKHOUSE01://127.0.0.1:8124 + ALLOW_PLAINTEXT_LISTENER: "yes" + healthcheck: + test: nc -vz localhost 2181 || exit -1 + start_period: 5s + interval: 5s + timeout: 5s + retries: 10 + +networks: + clickhouse-network: {} diff --git a/clickhouse/tests/docker/compose-logs.yaml b/clickhouse/tests/docker/compose-logs.yaml new file mode 100644 index 0000000000000..34ecdba67a446 --- /dev/null +++ b/clickhouse/tests/docker/compose-logs.yaml @@ -0,0 +1,21 @@ +# https://datadoghq.dev/integrations-core/ddev/test/#logs + +# To start an environment with log collection enabled you can use the `MOUNT_LOGS=true` env variable. +# Example: `MOUNT_LOGS=true ddev env start clickhouse "py3.13-25.8"` + +services: + clickhouse: + extends: + file: compose.yaml + service: clickhouse + volumes: + - ${DD_LOG_1}:/var/log/clickhouse-server/clickhouse-server.log + - ${DD_LOG_2}:/var/log/clickhouse-server/clickhouse-server.err.log + + clickhouse-keeper: + extends: + file: compose.yaml + service: clickhouse-keeper + +networks: + clickhouse-network: {} diff --git a/clickhouse/tests/docker/compose.yaml b/clickhouse/tests/docker/compose.yaml new file mode 100644 index 0000000000000..91f63261e055d --- /dev/null +++ b/clickhouse/tests/docker/compose.yaml @@ -0,0 +1,46 @@ +# https://github.com/ClickHouse/examples/tree/main/docker-compose-recipes + +services: + clickhouse: + image: clickhouse/clickhouse-server:${CLICKHOUSE_VERSION} + user: '101:101' + container_name: clickhouse + hostname: clickhouse + networks: + - clickhouse-network + volumes: + - ./volumes/clickhouse.xml:/etc/clickhouse-server/config.d/config.xml + - ./volumes/users.xml:/etc/clickhouse-server/users.d/users.xml + - ./volumes/docker-entrypoint-initdb.d:/docker-entrypoint-initdb.d + - ./tls_config.xml:/etc/clickhouse-server/config.d/tls.xml + - ./certs/server.crt:/etc/clickhouse-server/ssl/server.crt + - ./certs/server.key:/etc/clickhouse-server/ssl/server.key + - ./certs/dhparam.pem:/etc/clickhouse-server/dhparam.pem + ports: + - '8123:8123' + - '8134:8443' + - '9000:9000' + depends_on: + clickhouse-keeper: + condition: service_healthy + + clickhouse-keeper: + image: clickhouse/clickhouse-keeper:${KEEPER_VERSION:-25.8} + user: '101:101' + container_name: clickhouse-keeper + hostname: clickhouse-keeper + networks: + - clickhouse-network + volumes: + - ./volumes/keeper.xml:/etc/clickhouse-keeper/keeper_config.xml + ports: + - '9181:9181' + healthcheck: + test: echo ruok | nc 0.0.0.0 9181 || exit -1 + start_period: 5s + interval: 5s + timeout: 5s + retries: 10 + +networks: + clickhouse-network: {} diff --git a/clickhouse/tests/docker/docker-compose.yaml b/clickhouse/tests/docker/docker-compose.yaml deleted file mode 100644 index b9cdec5d22746..0000000000000 --- a/clickhouse/tests/docker/docker-compose.yaml +++ /dev/null @@ -1,176 +0,0 @@ -# https://clickhouse.yandex/docs/en/operations/table_engines/distributed/ -# https://clickhouse.yandex/docs/en/operations/table_engines/replication/#creating-replicated-tables -services: - clickhouse-01: &ch-node - image: ${CLICKHOUSE_REPOSITORY}:${CLICKHOUSE_VERSION} - hostname: clickhouse-01 - container_name: clickhouse-01 - cap_add: - - IPC_LOCK - - NET_ADMIN - ulimits: - nproc: 65536 - nofile: - soft: 262144 - hard: 262144 - ports: - - "8128:8123" - - "8134:8443" - - "9001:9000" - volumes: - - ./override_configs/zookeeper.xml:/etc/clickhouse-server/config.d/zookeeper.xml - - ./override_configs/remote_servers.xml:/etc/clickhouse-server/config.d/remote_servers.xml - - ./override_configs/compression.xml:/etc/clickhouse-server/config.d/compression.xml - - ./metrika.xml:/etc/metrika.xml - - ./macros/macros-01.xml:/etc/clickhouse-server/config.d/macros.xml - - ./users.xml:/etc/clickhouse-server/users.d/users.xml - - ./init.sql:/docker-entrypoint-initdb.d/init.sql - - ./test_dictionary.xml:/etc/clickhouse-server/test_dictionary.xml - - ./test.csv:/opt/dictionaries/test.csv - - ./tls_config.xml:/etc/clickhouse-server/config.d/tls.xml - - ./certs/server.crt:/etc/clickhouse-server/ssl/server.crt - - ./certs/server.key:/etc/clickhouse-server/ssl/server.key - - ./certs/dhparam.pem:/etc/clickhouse-server/dhparam.pem - depends_on: - clickhouse-zookeeper: - condition: service_healthy - networks: - - clickhouse-network - - clickhouse-02: - << : *ch-node - hostname: clickhouse-02 - container_name: clickhouse-02 - ports: - - "8129:8123" - - "9002:9000" - volumes: - - ./override_configs/zookeeper.xml:/etc/clickhouse-server/config.d/zookeeper.xml - - ./override_configs/remote_servers.xml:/etc/clickhouse-server/config.d/remote_servers.xml - - ./override_configs/compression.xml:/etc/clickhouse-server/config.d/compression.xml - - ./metrika.xml:/etc/metrika.xml - - ./macros/macros-02.xml:/etc/clickhouse-server/config.d/macros.xml - - ./users.xml:/etc/clickhouse-server/users.d/users.xml - - ./init.sql:/docker-entrypoint-initdb.d/init.sql - - ./test_dictionary.xml:/etc/clickhouse-server/test_dictionary.xml - - ./test.csv:/opt/dictionaries/test.csv - - clickhouse-03: - << : *ch-node - hostname: clickhouse-03 - container_name: clickhouse-03 - ports: - - "8130:8123" - - "9003:9000" - volumes: - - ./override_configs/zookeeper.xml:/etc/clickhouse-server/config.d/zookeeper.xml - - ./override_configs/remote_servers.xml:/etc/clickhouse-server/config.d/remote_servers.xml - - ./override_configs/compression.xml:/etc/clickhouse-server/config.d/compression.xml - - ./metrika.xml:/etc/metrika.xml - - ./macros/macros-03.xml:/etc/clickhouse-server/config.d/macros.xml - - ./users.xml:/etc/clickhouse-server/users.d/users.xml - - ./init.sql:/docker-entrypoint-initdb.d/init.sql - - ./test_dictionary.xml:/etc/clickhouse-server/test_dictionary.xml - - ./test.csv:/opt/dictionaries/test.csv - - clickhouse-04: - << : *ch-node - hostname: clickhouse-04 - container_name: clickhouse-04 - ports: - - "8131:8123" - - "9004:9000" - volumes: - - ./override_configs/zookeeper.xml:/etc/clickhouse-server/config.d/zookeeper.xml - - ./override_configs/remote_servers.xml:/etc/clickhouse-server/config.d/remote_servers.xml - - ./override_configs/compression.xml:/etc/clickhouse-server/config.d/compression.xml - - ./metrika.xml:/etc/metrika.xml - - ./macros/macros-04.xml:/etc/clickhouse-server/config.d/macros.xml - - ./users.xml:/etc/clickhouse-server/users.d/users.xml - - ./init.sql:/docker-entrypoint-initdb.d/init.sql - - ./test_dictionary.xml:/etc/clickhouse-server/test_dictionary.xml - - ./test.csv:/opt/dictionaries/test.csv - - clickhouse-05: - << : *ch-node - hostname: clickhouse-05 - container_name: clickhouse-05 - ports: - - "8132:8123" - - "9005:9000" - volumes: - - ./override_configs/zookeeper.xml:/etc/clickhouse-server/config.d/zookeeper.xml - - ./override_configs/remote_servers.xml:/etc/clickhouse-server/config.d/remote_servers.xml - - ./override_configs/compression.xml:/etc/clickhouse-server/config.d/compression.xml - - ./metrika.xml:/etc/metrika.xml - - ./macros/macros-05.xml:/etc/clickhouse-server/config.d/macros.xml - - ./users.xml:/etc/clickhouse-server/users.d/users.xml - - ./init.sql:/docker-entrypoint-initdb.d/init.sql - - ./test_dictionary.xml:/etc/clickhouse-server/test_dictionary.xml - - ./test.csv:/opt/dictionaries/test.csv - - clickhouse-06: - << : *ch-node - hostname: clickhouse-06 - container_name: clickhouse-06 - ports: - - "8133:8123" - - "9006:9000" - volumes: - - ./override_configs/zookeeper.xml:/etc/clickhouse-server/config.d/zookeeper.xml - - ./override_configs/remote_servers.xml:/etc/clickhouse-server/config.d/remote_servers.xml - - ./override_configs/compression.xml:/etc/clickhouse-server/config.d/compression.xml - - ./metrika.xml:/etc/metrika.xml - - ./macros/macros-06.xml:/etc/clickhouse-server/config.d/macros.xml - - ./users.xml:/etc/clickhouse-server/users.d/users.xml - - ./init.sql:/docker-entrypoint-initdb.d/init.sql - - ./test_dictionary.xml:/etc/clickhouse-server/test_dictionary.xml - - ./test.csv:/opt/dictionaries/test.csv - - clickhouse-zookeeper: - # Using zookeeper `3.6.0` is raising this error: - # Connection request from old client /172.30.0.7:51646; will be dropped if server is in r-o mode - # For now, we use zookeeper `3.5.7` instead - # Similar case: https://stackoverflow.com/a/22884698 - image: zookeeper:3.5.7 - hostname: clickhouse-zookeeper - container_name: clickhouse-zookeeper - ports: - - "2181:2181" - - "2182:2182" - networks: - - clickhouse-network - environment: - KAFKA_ZOOKEEPER_CONNECT: zookeeper:2181 - # "You need to set advertised.listeners (or KAFKA_ADVERTISED_LISTENERS if you’re using Docker images) to - # the external address (host/IP) so that clients can correctly connect to it. Otherwise they’ll try to - # connect to the internal host address–and if that’s not reachable then problems ensue." - # Source: https://rmoff.net/2018/08/02/kafka-listeners-explained/ - KAFKA_ADVERTISED_LISTENERS: CLICKHOUSE01://127.0.0.1:8124,CLICKHOUSE02://127.0.0.1:8125,CLICKHOUSE03://127.0.0.1:8126,CLICKHOUSE04://127.0.0.1:8127,CLICKHOUSE05://127.0.0.1:8128,CLICKHOUSE06://127.0.0.1:8129 - ALLOW_PLAINTEXT_LISTENER: "yes" - healthcheck: - test: nc -vz localhost 2181 || exit -1 - start_period: 5s - interval: 5s - timeout: 5s - retries: 10 - # The client is useful for debugging or running arbitrary commands. - # - # clickhouse-client: - # image: yandex/clickhouse-client:${CLICKHOUSE_VERSION} - # entrypoint: - # - /bin/sleep - # command: - # - infinity - # depends_on: - # - clickhouse-01 - # - clickhouse-02 - # - clickhouse-03 - # - clickhouse-04 - # - clickhouse-05 - # - clickhouse-06 - # networks: - # - clickhouse-network - -networks: - clickhouse-network: {} diff --git a/clickhouse/tests/docker/init.sql b/clickhouse/tests/docker/init.sql deleted file mode 100644 index fab69ba6018db..0000000000000 --- a/clickhouse/tests/docker/init.sql +++ /dev/null @@ -1,3 +0,0 @@ -CREATE TABLE IF NOT EXISTS tableau (id Int64) ENGINE = ReplicatedMergeTree('/clickhouse/tables/{layer}-{shard}/tableau', '{replica}') PARTITION BY id ORDER BY id; -CREATE TABLE IF NOT EXISTS tableau_distributed as tableau ENGINE = Distributed(cluster_1, default, tableau, rand()); -INSERT INTO tableau VALUES (123),(456),(789); diff --git a/clickhouse/tests/docker/macros/macros-01.xml b/clickhouse/tests/docker/macros/macros-01.xml deleted file mode 100644 index 21cd20b65da04..0000000000000 --- a/clickhouse/tests/docker/macros/macros-01.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - clickhouse-01 - 01 - 01 - - diff --git a/clickhouse/tests/docker/macros/macros-02.xml b/clickhouse/tests/docker/macros/macros-02.xml deleted file mode 100644 index 14e30f975dc65..0000000000000 --- a/clickhouse/tests/docker/macros/macros-02.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - clickhouse-02 - 02 - 01 - - diff --git a/clickhouse/tests/docker/macros/macros-03.xml b/clickhouse/tests/docker/macros/macros-03.xml deleted file mode 100644 index 5d2086f0a53d6..0000000000000 --- a/clickhouse/tests/docker/macros/macros-03.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - clickhouse-03 - 02 - 01 - - diff --git a/clickhouse/tests/docker/macros/macros-04.xml b/clickhouse/tests/docker/macros/macros-04.xml deleted file mode 100644 index 396a19a3ea631..0000000000000 --- a/clickhouse/tests/docker/macros/macros-04.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - clickhouse-04 - 03 - 01 - - diff --git a/clickhouse/tests/docker/macros/macros-05.xml b/clickhouse/tests/docker/macros/macros-05.xml deleted file mode 100644 index e715ffa7c6115..0000000000000 --- a/clickhouse/tests/docker/macros/macros-05.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - clickhouse-05 - 03 - 01 - - diff --git a/clickhouse/tests/docker/macros/macros-06.xml b/clickhouse/tests/docker/macros/macros-06.xml deleted file mode 100644 index 7e0bf2bd1b586..0000000000000 --- a/clickhouse/tests/docker/macros/macros-06.xml +++ /dev/null @@ -1,7 +0,0 @@ - - - clickhouse-06 - 01 - 01 - - diff --git a/clickhouse/tests/docker/metrika.xml b/clickhouse/tests/docker/metrika.xml deleted file mode 100644 index 7ccb8494980bd..0000000000000 --- a/clickhouse/tests/docker/metrika.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - - ::/0 - - diff --git a/clickhouse/tests/docker/override_configs/compression.xml b/clickhouse/tests/docker/override_configs/compression.xml deleted file mode 100644 index 2a1f8b13c9176..0000000000000 --- a/clickhouse/tests/docker/override_configs/compression.xml +++ /dev/null @@ -1,9 +0,0 @@ - - - - 10000000000 - 0.01 - lz4 - - - \ No newline at end of file diff --git a/clickhouse/tests/docker/override_configs/remote_servers.xml b/clickhouse/tests/docker/override_configs/remote_servers.xml deleted file mode 100644 index e90ab819def73..0000000000000 --- a/clickhouse/tests/docker/override_configs/remote_servers.xml +++ /dev/null @@ -1,42 +0,0 @@ - - - - - 1 - true - - clickhouse-01 - 9000 - - - clickhouse-06 - 9000 - - - - 1 - true - - clickhouse-02 - 9000 - - - clickhouse-03 - 9000 - - - - 1 - true - - clickhouse-04 - 9000 - - - clickhouse-05 - 9000 - - - - - \ No newline at end of file diff --git a/clickhouse/tests/docker/override_configs/zookeeper.xml b/clickhouse/tests/docker/override_configs/zookeeper.xml deleted file mode 100644 index 6d1d854943c33..0000000000000 --- a/clickhouse/tests/docker/override_configs/zookeeper.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - clickhouse-zookeeper - 2181 - - - \ No newline at end of file diff --git a/clickhouse/tests/docker/volumes/clickhouse.xml b/clickhouse/tests/docker/volumes/clickhouse.xml new file mode 100644 index 0000000000000..47c7dd0dac352 --- /dev/null +++ b/clickhouse/tests/docker/volumes/clickhouse.xml @@ -0,0 +1,33 @@ + + + trace + /var/log/clickhouse-server/clickhouse-server.log + /var/log/clickhouse-server/clickhouse-server.err.log + 100M + 3 + + clickhouse + 0.0.0.0 + 8123 + 9000 + + + users.xml + + + /var/lib/clickhouse/access/ + + + + /clickhouse/task_queue/ddl + + + + clickhouse-keeper + 9181 + + + + clickhouse + + diff --git a/clickhouse/tests/docker/volumes/docker-entrypoint-initdb.d/01_init_db.sh b/clickhouse/tests/docker/volumes/docker-entrypoint-initdb.d/01_init_db.sh new file mode 100644 index 0000000000000..11dc1fb7efa40 --- /dev/null +++ b/clickhouse/tests/docker/volumes/docker-entrypoint-initdb.d/01_init_db.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +set -e + +clickhouse client -n <<-EOSQL +CREATE TABLE IF NOT EXISTS test +( + id UInt64, + updated_at DateTime DEFAULT now() +) +ENGINE = ReplicatedMergeTree('/clickhouse/tables/test', '{replica}') +PARTITION BY id +ORDER BY id; +EOSQL diff --git a/clickhouse/tests/docker/volumes/docker-entrypoint-initdb.d/02_insert.sh b/clickhouse/tests/docker/volumes/docker-entrypoint-initdb.d/02_insert.sh new file mode 100644 index 0000000000000..35ffacdfe41c2 --- /dev/null +++ b/clickhouse/tests/docker/volumes/docker-entrypoint-initdb.d/02_insert.sh @@ -0,0 +1,7 @@ +#!/bin/bash + +set -e + +clickhouse client -n <<-EOSQL +INSERT INTO test (id) VALUES (1),(2),(3); +EOSQL diff --git a/clickhouse/tests/docker/volumes/keeper.xml b/clickhouse/tests/docker/volumes/keeper.xml new file mode 100644 index 0000000000000..cc5477bba97cb --- /dev/null +++ b/clickhouse/tests/docker/volumes/keeper.xml @@ -0,0 +1,28 @@ + + + information + /var/log/clickhouse-keeper/clickhouse-keeper.log + /var/log/clickhouse-keeper/clickhouse-keeper.err.log + 100M + 3 + + 0.0.0.0 + + 9181 + 1 + /var/lib/clickhouse/coordination/log + /var/lib/clickhouse/coordination/snapshots + + 10000 + 30000 + information + + + + 1 + clickhouse-keeper + 9234 + + + + diff --git a/clickhouse/tests/docker/volumes/legacy/clickhouse.xml b/clickhouse/tests/docker/volumes/legacy/clickhouse.xml new file mode 100644 index 0000000000000..434b2347e212d --- /dev/null +++ b/clickhouse/tests/docker/volumes/legacy/clickhouse.xml @@ -0,0 +1,33 @@ + + + trace + /var/log/clickhouse-server/clickhouse-server.log + /var/log/clickhouse-server/clickhouse-server.err.log + 100M + 3 + + clickhouse + 0.0.0.0 + 8123 + 9000 + + + users.xml + + + /var/lib/clickhouse/access/ + + + + /clickhouse/task_queue/ddl + + + + clickhouse-zookeeper + 2181 + + + + clickhouse + + diff --git a/clickhouse/tests/docker/test.csv b/clickhouse/tests/docker/volumes/legacy/dictionary.csv similarity index 100% rename from clickhouse/tests/docker/test.csv rename to clickhouse/tests/docker/volumes/legacy/dictionary.csv diff --git a/clickhouse/tests/docker/test_dictionary.xml b/clickhouse/tests/docker/volumes/legacy/dictionary.xml similarity index 100% rename from clickhouse/tests/docker/test_dictionary.xml rename to clickhouse/tests/docker/volumes/legacy/dictionary.xml diff --git a/clickhouse/tests/docker/users.xml b/clickhouse/tests/docker/volumes/legacy/users.xml similarity index 83% rename from clickhouse/tests/docker/users.xml rename to clickhouse/tests/docker/volumes/legacy/users.xml index 126a00708799e..19f8e1ab7f75c 100644 --- a/clickhouse/tests/docker/users.xml +++ b/clickhouse/tests/docker/volumes/legacy/users.xml @@ -1,9 +1,9 @@ - + c851fedffc16075006179f5c6563369af48e2170e6d070758238c570bd5ebd32 - + ::/0 default diff --git a/clickhouse/tests/docker/volumes/users.xml b/clickhouse/tests/docker/volumes/users.xml new file mode 100644 index 0000000000000..535333c27245b --- /dev/null +++ b/clickhouse/tests/docker/volumes/users.xml @@ -0,0 +1,13 @@ + + + + + c851fedffc16075006179f5c6563369af48e2170e6d070758238c570bd5ebd32 + + ::/0 + + default + default + + + diff --git a/clickhouse/tests/test_clickhouse.py b/clickhouse/tests/test_clickhouse.py index dd4afad1488a9..ba211455cbe13 100644 --- a/clickhouse/tests/test_clickhouse.py +++ b/clickhouse/tests/test_clickhouse.py @@ -6,8 +6,8 @@ from datadog_checks.clickhouse import ClickhouseCheck from datadog_checks.dev.utils import get_metadata_metrics +from . import common from .common import CLICKHOUSE_VERSION -from .metrics import OPTIONAL_METRICS, get_metrics pytestmark = [pytest.mark.integration, pytest.mark.usefixtures('dd_environment')] @@ -17,23 +17,16 @@ def test_check(aggregator, instance, dd_run_check): dd_run_check(check) server_tag = 'server:{}'.format(instance['server']) port_tag = 'port:{}'.format(instance['port']) + metrics = common.get_metrics(CLICKHOUSE_VERSION) db_hostname_tag = 'database_hostname:{}'.format(instance['server']) db_instance_tag = 'database_instance:{}:{}:default'.format(instance['server'], instance['port']) - metrics = get_metrics(CLICKHOUSE_VERSION) for metric in metrics: - aggregator.assert_metric_has_tag(metric, port_tag, at_least=1) - aggregator.assert_metric_has_tag(metric, server_tag, at_least=1) - aggregator.assert_metric_has_tag(metric, 'db:default', at_least=1) - aggregator.assert_metric_has_tag(metric, 'foo:bar', at_least=1) + aggregator.assert_metric_has_tags( + metric, [port_tag, server_tag, 'db:default', 'foo:bar', db_hostname_tag, db_instance_tag], at_least=1 + ) - aggregator.assert_metric( - 'clickhouse.dictionary.item.current', - tags=[server_tag, port_tag, 'db:default', 'foo:bar', 'dictionary:test', db_hostname_tag, db_instance_tag], - at_least=1, - ) - - for metric in OPTIONAL_METRICS: + for metric in common.get_optional_metrics(CLICKHOUSE_VERSION): aggregator.assert_metric(metric, at_least=0) aggregator.assert_service_check("clickhouse.can_connect", count=1) @@ -68,6 +61,33 @@ def test_custom_queries(aggregator, instance, dd_run_check): ) +@pytest.mark.skipif( + common.is_legacy(CLICKHOUSE_VERSION), + reason='`system.errors` is collected only via advanced queries, which legacy ClickHouse versions do not support', +) +def test_errors_raised_metric(aggregator, instance, dd_run_check): + from .conftest import get_clickhouse_client + + client = get_clickhouse_client( + host=instance['server'], + port=instance['port'], + username=instance['username'], + password=instance['password'], + ) + try: + client.query('SELECT something FROM system.tables') + except Exception: + pass + + check = ClickhouseCheck('clickhouse', {}, [instance]) + dd_run_check(check) + + aggregator.assert_metric('clickhouse.errors.raised', at_least=1) + for sample in aggregator.metrics('clickhouse.errors.raised'): + tag_keys = {t.split(':', 1)[0] for t in sample.tags} + assert {'error_name', 'error_code', 'remote'}.issubset(tag_keys), sample.tags + + @pytest.mark.skipif(CLICKHOUSE_VERSION == 'latest', reason='Version `latest` is ever-changing, skipping') def test_version_metadata(instance, datadog_agent, dd_run_check): check = ClickhouseCheck('clickhouse', {}, [instance]) diff --git a/clickhouse/tests/test_config_defaults.py b/clickhouse/tests/test_config_defaults.py index f212847198fe5..5d28994bf2999 100644 --- a/clickhouse/tests/test_config_defaults.py +++ b/clickhouse/tests/test_config_defaults.py @@ -91,6 +91,9 @@ 'custom_queries': None, 'only_custom_queries': False, 'use_global_custom_queries': 'true', + # === Query set selection (legacy vs advanced) === + 'use_legacy_queries': True, + 'use_advanced_queries': True, # === Agent standard fields === 'min_collection_interval': 15, 'empty_default_hostname': False, diff --git a/clickhouse/tests/test_dbm_integration.py b/clickhouse/tests/test_dbm_integration.py index 106becf43bfbf..c5cf785e9a832 100644 --- a/clickhouse/tests/test_dbm_integration.py +++ b/clickhouse/tests/test_dbm_integration.py @@ -494,7 +494,7 @@ def test_explain_plan_not_collected_for_insert(aggregator, instance, dd_run_chec # Run a SELECT alongside the INSERT so we can confirm the pipeline collected queries client.command("SELECT count() FROM system.tables") - client.command("INSERT INTO tableau VALUES (222)") + client.command("INSERT INTO test (id) VALUES (222)") client.command('SYSTEM FLUSH LOGS') dd_run_check(check) @@ -608,9 +608,16 @@ def test_query_errors_data(aggregator, instance, dd_run_check): assert len(all_errors) > 0, "Expected at least one error record in payload" - details = all_errors[0]['query_details'] + details = next( + ( + e['query_details'] + for e in all_errors + if 'nonexistent_table_query_error_test' in e['query_details'].get('exception', '') + ), + None, + ) + assert details is not None, "Expected an error record for `nonexistent_table_query_error_test` in payload" assert details['query_signature'] is not None - assert 'nonexistent_table_query_error_test' in details['exception'] assert 'UNKNOWN_TABLE' in details['exception'] assert details['exception_code'] == 60 assert 'stack_trace' in details diff --git a/clickhouse/tests/test_e2e.py b/clickhouse/tests/test_e2e.py index 97e2c5c6a4bfa..75051c154a787 100644 --- a/clickhouse/tests/test_e2e.py +++ b/clickhouse/tests/test_e2e.py @@ -5,36 +5,24 @@ from datadog_checks.dev.utils import get_metadata_metrics +from . import common from .common import CLICKHOUSE_VERSION -from .metrics import OPTIONAL_METRICS, get_metrics - -pytestmark = pytest.mark.e2e +@pytest.mark.e2e def test_check(dd_agent_check, instance): aggregator = dd_agent_check(instance, rate=True) server_tag = 'server:{}'.format(instance['server']) port_tag = 'port:{}'.format(instance['port']) db_hostname_tag = 'database_hostname:{}'.format(instance['server']) db_instance_tag = 'database_instance:{}:{}:default'.format(instance['server'], instance['port']) - metrics = get_metrics(CLICKHOUSE_VERSION) - - for metric in metrics: - aggregator.assert_metric_has_tag(metric, server_tag, at_least=1) - aggregator.assert_metric_has_tag(metric, port_tag, at_least=1) - aggregator.assert_metric_has_tag(metric, 'db:default', at_least=1) - aggregator.assert_metric_has_tag(metric, 'foo:bar', at_least=1) - - for metric in OPTIONAL_METRICS: - aggregator.assert_metric(metric, at_least=0) - aggregator.assert_metric( - 'clickhouse.dictionary.item.current', - tags=[server_tag, port_tag, 'db:default', 'foo:bar', 'dictionary:test', db_hostname_tag, db_instance_tag], - at_least=1, - ) + for metric in common.get_metrics(CLICKHOUSE_VERSION): + aggregator.assert_metric_has_tags( + metric, [port_tag, server_tag, 'db:default', 'foo:bar', db_hostname_tag, db_instance_tag], at_least=1 + ) - for metric in OPTIONAL_METRICS: + for metric in common.get_optional_metrics(CLICKHOUSE_VERSION): aggregator.assert_metric(metric, at_least=0) aggregator.assert_all_metrics_covered() diff --git a/clickhouse/tests/test_unit.py b/clickhouse/tests/test_unit.py index 059c2c00a1932..8a3789732e0c8 100644 --- a/clickhouse/tests/test_unit.py +++ b/clickhouse/tests/test_unit.py @@ -6,7 +6,7 @@ from clickhouse_connect.driver.exceptions import Error, OperationalError from datadog_checks.base import ConfigurationError -from datadog_checks.clickhouse import ClickhouseCheck, queries +from datadog_checks.clickhouse import ClickhouseCheck, advanced_queries from .utils import ensure_csv_safe, parse_described_metrics, raise_error @@ -69,7 +69,7 @@ def test_config_tls_ca_cert_forwarded_to_pool_manager(instance): def test_error_query(instance, dd_run_check): check = ClickhouseCheck('clickhouse', {}, [instance]) check.log = mock.MagicMock() - del check.check_initializations[-2] + check.get_queries = lambda _: [] client = mock.MagicMock() client.execute_iter = raise_error @@ -83,12 +83,12 @@ def test_error_query(instance, dd_run_check): 'metrics, ignored_columns, metric_source_url', [ ( - queries.SystemMetrics['columns'][1]['items'], + advanced_queries.SystemMetrics['columns'][1]['items'], {'Revision', 'VersionInteger'}, 'https://raw.githubusercontent.com/ClickHouse/ClickHouse/master/src/Common/CurrentMetrics.cpp', ), ( - queries.SystemEvents['columns'][1]['items'], + advanced_queries.SystemEvents['columns'][1]['items'], set(), 'https://raw.githubusercontent.com/ClickHouse/ClickHouse/master/src/Common/ProfileEvents.cpp', ), @@ -265,6 +265,40 @@ def test_connect_no_password_uses_empty_string(): assert kwargs['password'] == '', "connect() must pass password='' not password=None to clickhouse_connect" +@pytest.mark.parametrize( + ['ch_version', 'comparable', 'expected'], + [ + ('25', 'latest', True), + ('25', '25', False), + ('25.1', '25.2', True), + ('25.1.2.3', '25.1.2.10', True), + ('25.1', '25.3', True), + ('23.1', '25.1', True), + ], +) +def test_version_lt(instance, ch_version, comparable, expected): + check = ClickhouseCheck('clickhouse', {}, [instance]) + check._server_version = ch_version + assert check.version_lt(comparable) == expected + + +@pytest.mark.parametrize( + ['ch_version', 'comparable', 'expected'], + [ + ('25', 'latest', False), + ('25', '25', True), + ('25.1.2.3', '25.1.2', True), + ('25.1.2.3', '25.1.2.3', True), + ('25.1', '25.3', False), + ('23.1', '25.1', False), + ], +) +def test_version_ge(instance, ch_version, comparable, expected): + check = ClickhouseCheck('clickhouse', {}, [instance]) + check._server_version = ch_version + assert check.version_ge(comparable) == expected + + @pytest.mark.parametrize("bad_value", [0, -1, -100]) def test_query_errors_zero_samples_per_hour_defaults(bad_value): """Zero or negative samples_per_hour_per_query must not crash the constructor via ZeroDivisionError.""" diff --git a/clickhouse/tests/test_utils.py b/clickhouse/tests/test_utils.py index 665ff04506849..206d158c83d70 100644 --- a/clickhouse/tests/test_utils.py +++ b/clickhouse/tests/test_utils.py @@ -3,21 +3,34 @@ # Licensed under a 3-clause BSD style license (see LICENSE) import pytest -from datadog_checks.clickhouse.utils import ErrorSanitizer - -pytestmark = pytest.mark.unit +from datadog_checks.clickhouse import utils +@pytest.mark.unit class TestErrorSanitizer: def test_clean(self): - assert ErrorSanitizer.clean('error.. Stack trace: \n\n') == 'error.' + assert utils.ErrorSanitizer.clean('error.. Stack trace: \n\n') == 'error.' def test_scrub(self): - sanitizer = ErrorSanitizer('foo') + sanitizer = utils.ErrorSanitizer('foo') assert sanitizer.scrub('foobar') == '**********bar' def test_scrub_no_password(self): - sanitizer = ErrorSanitizer('') + sanitizer = utils.ErrorSanitizer('') assert sanitizer.scrub('foobar') == 'foobar' + + +@pytest.mark.unit +@pytest.mark.parametrize( + ['version', 'expected'], + [ + ('25', [25]), + ('25.1', [25, 1]), + ('25.1.2', [25, 1, 2]), + ('25.1.2.3', [25, 1, 2, 3]), + ], +) +def test_parse_version(version: str, expected: list[int]): + expected == utils.parse_version(version) diff --git a/cloudgen_firewall/manifest.json b/cloudgen_firewall/manifest.json index f8f44c61820f0..d43ccb47e9851 100644 --- a/cloudgen_firewall/manifest.json +++ b/cloudgen_firewall/manifest.json @@ -34,6 +34,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Queried Data Type::Logs", "Submitted Data Type::Logs" diff --git a/cyberark_endpoint_privilege_manager/manifest.json b/cyberark_endpoint_privilege_manager/manifest.json index 1032902d3c0b5..0b06a6bedd706 100644 --- a/cyberark_endpoint_privilege_manager/manifest.json +++ b/cyberark_endpoint_privilege_manager/manifest.json @@ -59,6 +59,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/ddev/changelog.d/23742.added b/ddev/changelog.d/23742.added new file mode 100644 index 0000000000000..86f6fa360c570 --- /dev/null +++ b/ddev/changelog.d/23742.added @@ -0,0 +1 @@ +Add --explicit-package-bases to default mypy_args diff --git a/ddev/src/ddev/plugin/external/hatch/environment_collector.py b/ddev/src/ddev/plugin/external/hatch/environment_collector.py index d2f8c07fee767..61914ce2e6013 100644 --- a/ddev/src/ddev/plugin/external/hatch/environment_collector.py +++ b/ddev/src/ddev/plugin/external/hatch/environment_collector.py @@ -63,7 +63,9 @@ def on_config(self, name: str, on_true: Any, on_false: Any) -> Any: @cached_property def mypy_args(self): - return self.config.get('mypy-args', []) + ['--install-types', '--non-interactive'] + return ( + ['--explicit-package-bases'] + self.config.get('mypy-args', []) + ['--install-types', '--non-interactive'] + ) @cached_property def mypy_files(self): diff --git a/delinea_privilege_manager/manifest.json b/delinea_privilege_manager/manifest.json index e0238809c0eaf..118f46b08d50b 100644 --- a/delinea_privilege_manager/manifest.json +++ b/delinea_privilege_manager/manifest.json @@ -34,6 +34,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/delinea_secret_server/manifest.json b/delinea_secret_server/manifest.json index b6c4c97c4d051..3c95a72e42e15 100644 --- a/delinea_secret_server/manifest.json +++ b/delinea_secret_server/manifest.json @@ -38,6 +38,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/dnsfilter/manifest.json b/dnsfilter/manifest.json index f2c9c2a99d4db..04ee828254197 100644 --- a/dnsfilter/manifest.json +++ b/dnsfilter/manifest.json @@ -31,6 +31,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/eset_protect/manifest.json b/eset_protect/manifest.json index 5c2b0d047481c..d2a9448af4a9d 100644 --- a/eset_protect/manifest.json +++ b/eset_protect/manifest.json @@ -44,6 +44,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/extrahop/manifest.json b/extrahop/manifest.json index 591e41a28c3f1..f3e8b5e00c11e 100644 --- a/extrahop/manifest.json +++ b/extrahop/manifest.json @@ -27,6 +27,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/falco/manifest.json b/falco/manifest.json index 8d87f99a9505a..1464480a782ff 100644 --- a/falco/manifest.json +++ b/falco/manifest.json @@ -26,6 +26,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Supported OS::Linux", "Supported OS::Windows", diff --git a/forcepoint_secure_web_gateway/manifest.json b/forcepoint_secure_web_gateway/manifest.json index 3ed2a0b9f24ec..2fc34cb4d75b6 100644 --- a/forcepoint_secure_web_gateway/manifest.json +++ b/forcepoint_secure_web_gateway/manifest.json @@ -31,6 +31,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/forcepoint_security_service_edge/manifest.json b/forcepoint_security_service_edge/manifest.json index 79c46abcd2601..4c7497eeb1773 100644 --- a/forcepoint_security_service_edge/manifest.json +++ b/forcepoint_security_service_edge/manifest.json @@ -41,6 +41,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/forescout/manifest.json b/forescout/manifest.json index cd3635a1ed3d9..0e76e1f47a7c6 100644 --- a/forescout/manifest.json +++ b/forescout/manifest.json @@ -60,6 +60,7 @@ "Category::Security", "Category::Network", "Category::Log Collection", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/greenhouse/manifest.json b/greenhouse/manifest.json index 43989f988c2db..73b4dc2a96af1 100644 --- a/greenhouse/manifest.json +++ b/greenhouse/manifest.json @@ -26,6 +26,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/guarddog/manifest.json b/guarddog/manifest.json index a54cfac2f1bee..8ac35bbd06913 100644 --- a/guarddog/manifest.json +++ b/guarddog/manifest.json @@ -34,6 +34,7 @@ "Category::Developer Tools", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/have_i_been_pwned/manifest.json b/have_i_been_pwned/manifest.json index 678dda798c5e3..315ddaef03e17 100644 --- a/have_i_been_pwned/manifest.json +++ b/have_i_been_pwned/manifest.json @@ -26,6 +26,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/ibm_spectrum_lsf/hatch.toml b/ibm_spectrum_lsf/hatch.toml index e9df604e9bc17..e687ad0769f10 100644 --- a/ibm_spectrum_lsf/hatch.toml +++ b/ibm_spectrum_lsf/hatch.toml @@ -1,8 +1,5 @@ [env.collectors.datadog-checks] check-types = true -mypy-args = [ - "--explicit-package-bases", -] mypy-files = [ "datadog_checks/ibm_spectrum_lsf", "tests/", diff --git a/iboss/manifest.json b/iboss/manifest.json index 346cdd24e9dc0..aa201c6d1a936 100644 --- a/iboss/manifest.json +++ b/iboss/manifest.json @@ -60,6 +60,7 @@ "Category::Security", "Category::Metrics", "Category::Log Collection", + "Category::SIEM", "Submitted Data Type::Metrics", "Submitted Data Type::Logs", "Offering::Integration" diff --git a/iis/manifest.json b/iis/manifest.json index a1a59bf319c34..ba717f2b3dac5 100644 --- a/iis/manifest.json +++ b/iis/manifest.json @@ -15,6 +15,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Windows", + "Category::SIEM", "Supported OS::Windows", "Offering::Integration" ] @@ -65,4 +66,4 @@ "response_time_overview": "assets/saved_views/response_time.json" } } -} \ No newline at end of file +} diff --git a/ivanti_connect_secure/manifest.json b/ivanti_connect_secure/manifest.json index 6e46669a1df4d..6f5707b59111f 100644 --- a/ivanti_connect_secure/manifest.json +++ b/ivanti_connect_secure/manifest.json @@ -50,6 +50,7 @@ "Category::Log Collection", "Category::Security", "Category::Network", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/ivanti_nzta/manifest.json b/ivanti_nzta/manifest.json index b9f88aa67d6f0..9948af68770d0 100644 --- a/ivanti_nzta/manifest.json +++ b/ivanti_nzta/manifest.json @@ -41,6 +41,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] @@ -72,4 +73,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/jamf_pro/manifest.json b/jamf_pro/manifest.json index 34d8845dfdab2..56590e7d9741d 100644 --- a/jamf_pro/manifest.json +++ b/jamf_pro/manifest.json @@ -46,6 +46,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/juniper_srx_firewall/manifest.json b/juniper_srx_firewall/manifest.json index 0ace3d655748e..986819405c81f 100644 --- a/juniper_srx_firewall/manifest.json +++ b/juniper_srx_firewall/manifest.json @@ -55,6 +55,7 @@ "Category::Log Collection", "Category::Security", "Category::Network", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -87,4 +88,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/kandji/manifest.json b/kandji/manifest.json index b1da9559b2707..82c9ab49db950 100644 --- a/kandji/manifest.json +++ b/kandji/manifest.json @@ -59,6 +59,7 @@ "Category::Security", "Category::OS & System", "Category::Automation", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -88,4 +89,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/keeper/manifest.json b/keeper/manifest.json index 25af8d499cc66..2a49c2fc21551 100644 --- a/keeper/manifest.json +++ b/keeper/manifest.json @@ -36,6 +36,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/keycloak/manifest.json b/keycloak/manifest.json index 56c6cbf40a2eb..69f75b7ed0c7a 100644 --- a/keycloak/manifest.json +++ b/keycloak/manifest.json @@ -34,6 +34,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/kubernetes/manifest.json b/kubernetes/manifest.json index d3e88f30e973f..816a3508b7c1d 100644 --- a/kubernetes/manifest.json +++ b/kubernetes/manifest.json @@ -18,6 +18,7 @@ "Category::Log Collection", "Category::Network", "Category::Orchestration", + "Category::SIEM", "Supported OS::Linux", "Supported OS::macOS", "Offering::Integration" diff --git a/lastpass/manifest.json b/lastpass/manifest.json index 134ea7e5a3237..d6452d1fe8292 100644 --- a/lastpass/manifest.json +++ b/lastpass/manifest.json @@ -31,6 +31,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/linux_audit_logs/manifest.json b/linux_audit_logs/manifest.json index e6f07f23d4fc6..2dd6ae2cc9bb2 100644 --- a/linux_audit_logs/manifest.json +++ b/linux_audit_logs/manifest.json @@ -38,6 +38,7 @@ "Category::Log Collection", "Category::Security", "Category::Network", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/mac_audit_logs/manifest.json b/mac_audit_logs/manifest.json index bdf965242cdaa..254f973435c2d 100755 --- a/mac_audit_logs/manifest.json +++ b/mac_audit_logs/manifest.json @@ -38,6 +38,7 @@ "Category::Log Collection", "Category::Security", "Category::Network", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/microsoft_dns/manifest.json b/microsoft_dns/manifest.json index 274551a194a4e..ef9da4622db14 100644 --- a/microsoft_dns/manifest.json +++ b/microsoft_dns/manifest.json @@ -47,6 +47,7 @@ "Supported OS::Windows", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/microsoft_sysmon/manifest.json b/microsoft_sysmon/manifest.json index 81ebc159eeb21..018faffcb0d4b 100644 --- a/microsoft_sysmon/manifest.json +++ b/microsoft_sysmon/manifest.json @@ -52,6 +52,7 @@ "Supported OS::Windows", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/mimecast/manifest.json b/mimecast/manifest.json index 2ac0caf85125f..dfcccb90d2ce1 100644 --- a/mimecast/manifest.json +++ b/mimecast/manifest.json @@ -46,6 +46,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/mongo/changelog.d/23661.fixed b/mongo/changelog.d/23661.fixed new file mode 100644 index 0000000000000..7d65d1bc442f2 --- /dev/null +++ b/mongo/changelog.d/23661.fixed @@ -0,0 +1 @@ +Raise exceptions from the hostname property, so permission and connectivity errors surface as check failures. diff --git a/mongo/datadog_checks/mongo/api.py b/mongo/datadog_checks/mongo/api.py index 7d2694d7f48a1..92cee107722ec 100644 --- a/mongo/datadog_checks/mongo/api.py +++ b/mongo/datadog_checks/mongo/api.py @@ -272,4 +272,4 @@ def hostname(self): return self.__hostname except Exception as e: self._log.error('Unable to get hostname: %s', e) - return None + raise diff --git a/n8n/tests/docker/docker-compose.yaml b/n8n/tests/docker/docker-compose.yaml index 554114d2819a2..5eb20e396d177 100644 --- a/n8n/tests/docker/docker-compose.yaml +++ b/n8n/tests/docker/docker-compose.yaml @@ -8,6 +8,19 @@ services: timeout: 3s retries: 5 + postgres: + image: postgres:16-alpine + container_name: n8n-test-postgres + environment: + - POSTGRES_USER=n8n + - POSTGRES_PASSWORD=n8n + - POSTGRES_DB=n8n + healthcheck: + test: ["CMD-SHELL", "pg_isready -U n8n -d n8n"] + interval: 5s + timeout: 3s + retries: 5 + n8n: image: n8nio/n8n:${N8N_VERSION:-1.118.1} container_name: n8n-test @@ -17,6 +30,13 @@ services: - EXECUTIONS_MODE=queue - QUEUE_BULL_REDIS_HOST=redis - QUEUE_BULL_REDIS_PORT=6379 + - DB_TYPE=postgresdb + - DB_POSTGRESDB_HOST=postgres + - DB_POSTGRESDB_PORT=5432 + - DB_POSTGRESDB_DATABASE=n8n + - DB_POSTGRESDB_USER=n8n + - DB_POSTGRESDB_PASSWORD=n8n + - N8N_ENCRYPTION_KEY=test-encryption-key-not-a-secret - N8N_LOG_LEVEL=debug - N8N_LOG_OUTPUT=console - N8N_HOST=0.0.0.0 @@ -45,6 +65,8 @@ services: depends_on: redis: condition: service_healthy + postgres: + condition: service_healthy healthcheck: test: ["CMD", "wget", "-q", "--spider", "http://localhost:5678/healthz"] interval: 10s @@ -62,6 +84,13 @@ services: - EXECUTIONS_MODE=queue - QUEUE_BULL_REDIS_HOST=redis - QUEUE_BULL_REDIS_PORT=6379 + - DB_TYPE=postgresdb + - DB_POSTGRESDB_HOST=postgres + - DB_POSTGRESDB_PORT=5432 + - DB_POSTGRESDB_DATABASE=n8n + - DB_POSTGRESDB_USER=n8n + - DB_POSTGRESDB_PASSWORD=n8n + - N8N_ENCRYPTION_KEY=test-encryption-key-not-a-secret - N8N_LOG_LEVEL=info - N8N_LOG_OUTPUT=console - N8N_RUNNERS_ENABLED=false @@ -75,8 +104,6 @@ services: - N8N_METRICS_INCLUDE_WORKFLOW_STATISTICS=true - QUEUE_HEALTH_CHECK_ACTIVE=true - QUEUE_HEALTH_CHECK_PORT=5680 - volumes: - - n8n_data:/home/node/.n8n depends_on: n8n: condition: service_healthy diff --git a/nginx/manifest.json b/nginx/manifest.json index c992a1f251129..2bee68dd6c515 100644 --- a/nginx/manifest.json +++ b/nginx/manifest.json @@ -15,6 +15,7 @@ "classifier_tags": [ "Category::Configuration & Deployment", "Category::Log Collection", + "Category::SIEM", "Supported OS::Linux", "Supported OS::Windows", "Supported OS::macOS", @@ -89,4 +90,4 @@ "nginx_processes": "assets/saved_views/nginx_processes.json" } } -} \ No newline at end of file +} diff --git a/obsidian_security/manifest.json b/obsidian_security/manifest.json index 58e5a2d183f00..df1ad6ef03f2d 100644 --- a/obsidian_security/manifest.json +++ b/obsidian_security/manifest.json @@ -57,6 +57,7 @@ "Category::Log Collection", "Category::Security", "Category::Cloud", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/openvpn/manifest.json b/openvpn/manifest.json index 8b83afd78d3d6..c5b29c38b6edd 100644 --- a/openvpn/manifest.json +++ b/openvpn/manifest.json @@ -29,6 +29,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/orca_security/manifest.json b/orca_security/manifest.json index 4807a1cba8f29..76a2be3c467f6 100644 --- a/orca_security/manifest.json +++ b/orca_security/manifest.json @@ -21,6 +21,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/ossec_security/manifest.json b/ossec_security/manifest.json index bb057e2d4a78d..35ae445243ff6 100644 --- a/ossec_security/manifest.json +++ b/ossec_security/manifest.json @@ -60,6 +60,7 @@ "Category::Alerting", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -100,4 +101,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/palo_alto_cortex_xdr/manifest.json b/palo_alto_cortex_xdr/manifest.json index a9f23720735f0..00e364b9e44ee 100644 --- a/palo_alto_cortex_xdr/manifest.json +++ b/palo_alto_cortex_xdr/manifest.json @@ -26,6 +26,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/palo_alto_panorama/manifest.json b/palo_alto_panorama/manifest.json index f3d693b526720..9f31cb649323f 100644 --- a/palo_alto_panorama/manifest.json +++ b/palo_alto_panorama/manifest.json @@ -59,6 +59,7 @@ "Supported OS::macOS", "Category::Security", "Category::Network", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/pan_firewall/manifest.json b/pan_firewall/manifest.json index d12d0f3e7f148..a5793225b6039 100644 --- a/pan_firewall/manifest.json +++ b/pan_firewall/manifest.json @@ -17,6 +17,7 @@ "Category::Network", "Category::OS & System", "Category::Security", + "Category::SIEM", "Supported OS::Linux", "Supported OS::Windows", "Supported OS::macOS", @@ -62,4 +63,4 @@ "Authentication Protocol": "assets/saved_views/top_ips_flagged_in_high_severity_threats.json" } } -} \ No newline at end of file +} diff --git a/ping_federate/manifest.json b/ping_federate/manifest.json index 37b2764a20bf6..03e4ce8eb4b40 100644 --- a/ping_federate/manifest.json +++ b/ping_federate/manifest.json @@ -29,6 +29,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/ping_one/manifest.json b/ping_one/manifest.json index be3c4ca0baae1..32b00282453f3 100644 --- a/ping_one/manifest.json +++ b/ping_one/manifest.json @@ -21,6 +21,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/ping_one_aic/manifest.json b/ping_one_aic/manifest.json index 84a35e7285dba..aa9398515ecac 100644 --- a/ping_one_aic/manifest.json +++ b/ping_one_aic/manifest.json @@ -15,6 +15,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/prefect/hatch.toml b/prefect/hatch.toml index 533b14f69639a..d4f57eddb98f1 100644 --- a/prefect/hatch.toml +++ b/prefect/hatch.toml @@ -1,8 +1,5 @@ [env.collectors.datadog-checks] check-types = true -mypy-args = [ - "--explicit-package-bases", -] [[envs.default.matrix]] python = ["3.13"] diff --git a/proofpoint_on_demand/manifest.json b/proofpoint_on_demand/manifest.json index a3628a6e15fed..3513927207932 100644 --- a/proofpoint_on_demand/manifest.json +++ b/proofpoint_on_demand/manifest.json @@ -21,6 +21,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/proofpoint_tap/manifest.json b/proofpoint_tap/manifest.json index 43006aed5e0fc..65b19ddecf4ad 100644 --- a/proofpoint_tap/manifest.json +++ b/proofpoint_tap/manifest.json @@ -31,6 +31,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/push_security/manifest.json b/push_security/manifest.json index 947cb6c46aa1c..ddead7adc1c02 100644 --- a/push_security/manifest.json +++ b/push_security/manifest.json @@ -51,6 +51,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/sonicwall_firewall/manifest.json b/sonicwall_firewall/manifest.json index 044db6fb13ea2..d3db02579b804 100644 --- a/sonicwall_firewall/manifest.json +++ b/sonicwall_firewall/manifest.json @@ -54,6 +54,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/sophos_central_cloud/manifest.json b/sophos_central_cloud/manifest.json index c7597739cd50c..6708310c83aa7 100644 --- a/sophos_central_cloud/manifest.json +++ b/sophos_central_cloud/manifest.json @@ -26,6 +26,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/squid/manifest.json b/squid/manifest.json index 2ba2f1f2679af..a7105024407e8 100644 --- a/squid/manifest.json +++ b/squid/manifest.json @@ -26,6 +26,7 @@ "classifier_tags": [ "Category::Caching", "Category::Log Collection", + "Category::SIEM", "Supported OS::Linux", "Supported OS::Windows", "Supported OS::macOS", diff --git a/supply_chain_firewall/manifest.json b/supply_chain_firewall/manifest.json index 3473b8d20bbea..1c7286f6a0d0c 100644 --- a/supply_chain_firewall/manifest.json +++ b/supply_chain_firewall/manifest.json @@ -28,6 +28,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -54,4 +55,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/suricata/manifest.json b/suricata/manifest.json index d827fc8aa325b..5af9d001755ce 100644 --- a/suricata/manifest.json +++ b/suricata/manifest.json @@ -60,6 +60,7 @@ "Category::Log Collection", "Category::Security", "Category::Network", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -99,4 +100,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/symantec_endpoint_protection/manifest.json b/symantec_endpoint_protection/manifest.json index 15600131b1666..31fe034248f1c 100644 --- a/symantec_endpoint_protection/manifest.json +++ b/symantec_endpoint_protection/manifest.json @@ -54,6 +54,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/symantec_vip/manifest.json b/symantec_vip/manifest.json index a65fd10ad625e..03fa8909d02ff 100644 --- a/symantec_vip/manifest.json +++ b/symantec_vip/manifest.json @@ -21,6 +21,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/tanium/manifest.json b/tanium/manifest.json index ab765ad5c2779..c74d7b3d3f8c5 100644 --- a/tanium/manifest.json +++ b/tanium/manifest.json @@ -31,6 +31,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/trend_micro_email_security/manifest.json b/trend_micro_email_security/manifest.json index 56d1be5292b44..84b9ee4217ef5 100644 --- a/trend_micro_email_security/manifest.json +++ b/trend_micro_email_security/manifest.json @@ -36,6 +36,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/trend_micro_vision_one_endpoint_security/manifest.json b/trend_micro_vision_one_endpoint_security/manifest.json index 92b9d3e90db8a..32caf8d18c82e 100644 --- a/trend_micro_vision_one_endpoint_security/manifest.json +++ b/trend_micro_vision_one_endpoint_security/manifest.json @@ -56,6 +56,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/trend_micro_vision_one_xdr/manifest.json b/trend_micro_vision_one_xdr/manifest.json index ac5f79c90512e..77bf9df2a8967 100644 --- a/trend_micro_vision_one_xdr/manifest.json +++ b/trend_micro_vision_one_xdr/manifest.json @@ -46,6 +46,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -76,4 +77,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/twistlock/manifest.json b/twistlock/manifest.json index 7e9fba8d48aea..97e7ba66b658a 100644 --- a/twistlock/manifest.json +++ b/twistlock/manifest.json @@ -18,6 +18,7 @@ "Category::Log Collection", "Category::Network", "Category::Security", + "Category::SIEM", "Supported OS::Linux", "Supported OS::Windows", "Supported OS::macOS", @@ -54,4 +55,4 @@ "Twistlock": "assets/dashboards/overview.json" } } -} \ No newline at end of file +} diff --git a/valence_security/manifest.json b/valence_security/manifest.json index be2567c6b1479..fb7844d903c76 100644 --- a/valence_security/manifest.json +++ b/valence_security/manifest.json @@ -56,6 +56,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Category::Cloud", "Offering::Integration", "Submitted Data Type::Logs" diff --git a/vault/manifest.json b/vault/manifest.json index 64d751121529e..9d3c6a56f604f 100644 --- a/vault/manifest.json +++ b/vault/manifest.json @@ -15,6 +15,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Supported OS::Linux", "Supported OS::Windows", "Supported OS::macOS", diff --git a/vectra/manifest.json b/vectra/manifest.json index 2fd1283e49483..6017926728fc5 100644 --- a/vectra/manifest.json +++ b/vectra/manifest.json @@ -56,6 +56,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Category::Cloud", "Offering::Integration", "Submitted Data Type::Logs" diff --git a/watchguard_firebox/manifest.json b/watchguard_firebox/manifest.json index 0a01b7138dfe7..d33fa96f0f75c 100644 --- a/watchguard_firebox/manifest.json +++ b/watchguard_firebox/manifest.json @@ -54,6 +54,7 @@ "Supported OS::macOS", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -88,4 +89,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/wazuh/manifest.json b/wazuh/manifest.json index 223f20f28b038..500cdb0192929 100644 --- a/wazuh/manifest.json +++ b/wazuh/manifest.json @@ -60,6 +60,7 @@ "Category::Alerting", "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] @@ -99,4 +100,4 @@ "homepage": "https://www.datadoghq.com", "sales_email": "info@datadoghq.com" } -} \ No newline at end of file +} diff --git a/win32_event_log/manifest.json b/win32_event_log/manifest.json index c202fbe34cf43..e6a682d2dc488 100644 --- a/win32_event_log/manifest.json +++ b/win32_event_log/manifest.json @@ -17,6 +17,7 @@ "Category::OS & System", "Category::Log Collection", "Category::Windows", + "Category::SIEM", "Offering::Integration" ], "resources": [ diff --git a/zeek/manifest.json b/zeek/manifest.json index 2bd735254279b..d3e2934c195c2 100644 --- a/zeek/manifest.json +++ b/zeek/manifest.json @@ -59,6 +59,7 @@ "Category::Log Collection", "Category::Security", "Category::Network", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/zero_networks/manifest.json b/zero_networks/manifest.json index cfaf3b7feb161..00c3bd2f87f42 100644 --- a/zero_networks/manifest.json +++ b/zero_networks/manifest.json @@ -56,6 +56,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Submitted Data Type::Logs", "Offering::Integration" ] diff --git a/zerofox_cloud_platform/manifest.json b/zerofox_cloud_platform/manifest.json index 1c9b31d206479..d3e7381111228 100644 --- a/zerofox_cloud_platform/manifest.json +++ b/zerofox_cloud_platform/manifest.json @@ -31,6 +31,7 @@ "classifier_tags": [ "Category::Log Collection", "Category::Security", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ] diff --git a/zscaler_private_access/manifest.json b/zscaler_private_access/manifest.json index 873e3b43a9f35..08c95affe0995 100644 --- a/zscaler_private_access/manifest.json +++ b/zscaler_private_access/manifest.json @@ -60,6 +60,7 @@ "Category::Security", "Category::Cloud", "Category::Network", + "Category::SIEM", "Offering::Integration", "Submitted Data Type::Logs" ]