diff --git a/NOTICE b/NOTICE index 5dc82066b..e9ee26f6e 100644 --- a/NOTICE +++ b/NOTICE @@ -6,3 +6,7 @@ SoundCloud Ltd. (https://soundcloud.com/). This product includes software developed by the Caffeine Authors (https://github.com/ben-manes/caffeine/). + +This product includes software developed by The Legion of the Bouncy Castle Inc. +(https://www.bouncycastle.org/). Bouncy Castle is licensed under the MIT License +(https://www.bouncycastle.org/licence.html). diff --git a/integration_test_suite/integration_tests/src/main/java/io/prometheus/jmx/test/support/filter/PBKDF2WithHmacExporterTestEnvironmentFilter.java b/integration_test_suite/integration_tests/src/main/java/io/prometheus/jmx/test/support/filter/PBKDF2WithHmacExporterTestEnvironmentFilter.java index 5e5a44a02..ec28d693e 100644 --- a/integration_test_suite/integration_tests/src/main/java/io/prometheus/jmx/test/support/filter/PBKDF2WithHmacExporterTestEnvironmentFilter.java +++ b/integration_test_suite/integration_tests/src/main/java/io/prometheus/jmx/test/support/filter/PBKDF2WithHmacExporterTestEnvironmentFilter.java @@ -26,7 +26,7 @@ */ public class PBKDF2WithHmacExporterTestEnvironmentFilter implements Predicate { - private final Set filteredDockerImages = + private static final Set filteredDockerImages = Set.of("ibmjava:8", "ibmjava:8-jre", "ibmjava:8-sdk", "ibmjava:8-sfj"); /** diff --git a/integration_test_suite/integration_tests/src/main/java/io/prometheus/jmx/test/support/filter/PKCS12KeyStoreExporterTestEnvironmentFilter.java b/integration_test_suite/integration_tests/src/main/java/io/prometheus/jmx/test/support/filter/PKCS12KeyStoreExporterTestEnvironmentFilter.java index 7876cb488..3f62c5e29 100644 --- a/integration_test_suite/integration_tests/src/main/java/io/prometheus/jmx/test/support/filter/PKCS12KeyStoreExporterTestEnvironmentFilter.java +++ b/integration_test_suite/integration_tests/src/main/java/io/prometheus/jmx/test/support/filter/PKCS12KeyStoreExporterTestEnvironmentFilter.java @@ -26,7 +26,7 @@ */ public class PKCS12KeyStoreExporterTestEnvironmentFilter implements Predicate { - private final Set filteredDockerImages = Set.of( + private static final Set filteredDockerImages = Set.of( "eclipse-temurin:8-alpine", "ghcr.io/graalvm/jdk:java8", "ibmjava:8", diff --git a/integration_test_suite/integration_tests/src/test/java/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest.java b/integration_test_suite/integration_tests/src/test/java/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest.java new file mode 100644 index 000000000..094d5129e --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/java/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest.java @@ -0,0 +1,169 @@ +/* + * Copyright (C) The Prometheus jmx_exporter Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.prometheus.jmx.test.http.ssl; + +import static io.prometheus.jmx.test.support.http.HttpResponse.assertHealthyResponse; +import static io.prometheus.jmx.test.support.metrics.MetricsAssertions.assertMetrics; +import static io.prometheus.jmx.test.support.metrics.MetricsAssertions.assertMetricsContentType; +import static io.prometheus.jmx.test.support.metrics.MetricsParser.parseMap; +import static org.paramixel.api.Context.withInstance; +import static org.paramixel.api.action.Instance.instance; +import static org.paramixel.api.action.Scope.scope; +import static org.paramixel.api.action.Sequential.sequential; +import static org.paramixel.api.action.Step.step; + +import io.prometheus.jmx.test.support.environment.JmxExporterPath; +import io.prometheus.jmx.test.support.environment.JmxExporterTestEnvironment; +import io.prometheus.jmx.test.support.http.HttpClient; +import io.prometheus.jmx.test.support.http.HttpHeader; +import io.prometheus.jmx.test.support.http.HttpResponse; +import io.prometheus.jmx.test.support.metrics.Metric; +import io.prometheus.jmx.test.support.metrics.MetricsContentType; +import java.io.IOException; +import java.util.Collection; +import java.util.Map; +import java.util.stream.Collectors; +import org.altcontainers.api.Network; +import org.paramixel.api.Paramixel; +import org.paramixel.api.Runner; +import org.paramixel.api.action.Action; +import org.paramixel.api.action.Each; + +public class SSLWithPEMCertificateTest { + + private final JmxExporterTestEnvironment environment; + + private Network network; + + public static void main(String[] args) throws Throwable { + Runner.defaultRunner().runAndExit(factory()); + } + + @Paramixel.Factory + public static Action factory() throws Throwable { + // Filter specific Java versions / containers that don't provide libraries for PEM support + var environments = JmxExporterTestEnvironment.createTestEnvironments(SSLWithPEMCertificateTest.class).stream() + .filter(environment -> !environment.getJavaDockerImage().contains("eclipse-temurin:8")) + .filter(environment -> !environment.getJavaDockerImage().contains("ibmjava:8")) + .collect(Collectors.toList()); + + return Each.parallel( + SSLWithPEMCertificateTest.class.getName(), + environments, + environment -> instance(environment.name(), () -> new SSLWithPEMCertificateTest(environment)) + .body(scope("scenario") + .before(step( + "setUp()", + withInstance( + SSLWithPEMCertificateTest.class, + SSLWithPEMCertificateTest::setUp))) + .body(sequential("tests") + .child(step( + "testHealthy()", + withInstance( + SSLWithPEMCertificateTest.class, + SSLWithPEMCertificateTest::testHealthy))) + .child(step( + "testDefaultTextMetrics()", + withInstance( + SSLWithPEMCertificateTest.class, + SSLWithPEMCertificateTest::testDefaultTextMetrics))) + .child(step( + "testOpenMetricsTextMetrics()", + withInstance( + SSLWithPEMCertificateTest.class, + SSLWithPEMCertificateTest::testOpenMetricsTextMetrics))) + .child(step( + "testPrometheusTextMetrics()", + withInstance( + SSLWithPEMCertificateTest.class, + SSLWithPEMCertificateTest::testPrometheusTextMetrics))) + .child(step( + "testPrometheusProtobufMetrics()", + withInstance( + SSLWithPEMCertificateTest.class, + SSLWithPEMCertificateTest + ::testPrometheusProtobufMetrics)))) + .after(step( + "tearDown()", + withInstance( + SSLWithPEMCertificateTest.class, + SSLWithPEMCertificateTest::tearDown))))) + .build(); + } + + private SSLWithPEMCertificateTest(JmxExporterTestEnvironment environment) { + this.environment = environment; + } + + public void setUp() throws Throwable { + environment.setBaseUrl("https://localhost"); + network = Network.create(); + environment.initialize(network); + } + + public void tearDown() { + try { + environment.close(); + } finally { + Network.close(network); + } + } + + public void testHealthy() throws IOException { + String url = environment.getUrl(JmxExporterPath.HEALTHY); + HttpResponse httpResponse = HttpClient.sendRequest(url); + assertHealthyResponse(httpResponse); + } + + public void testDefaultTextMetrics() throws IOException { + String url = environment.getUrl(JmxExporterPath.METRICS); + HttpResponse httpResponse = HttpClient.sendRequest(url); + assertMetricsResponse(httpResponse, MetricsContentType.DEFAULT); + } + + public void testOpenMetricsTextMetrics() throws IOException { + String url = environment.getUrl(JmxExporterPath.METRICS); + HttpResponse httpResponse = + HttpClient.sendRequest(url, HttpHeader.ACCEPT, MetricsContentType.OPEN_METRICS_TEXT_METRICS.toString()); + assertMetricsResponse(httpResponse, MetricsContentType.OPEN_METRICS_TEXT_METRICS); + } + + public void testPrometheusTextMetrics() throws IOException { + String url = environment.getUrl(JmxExporterPath.METRICS); + HttpResponse httpResponse = + HttpClient.sendRequest(url, HttpHeader.ACCEPT, MetricsContentType.PROMETHEUS_TEXT_METRICS.toString()); + assertMetricsResponse(httpResponse, MetricsContentType.PROMETHEUS_TEXT_METRICS); + } + + public void testPrometheusProtobufMetrics() throws IOException { + String url = environment.getUrl(JmxExporterPath.METRICS); + HttpResponse httpResponse = HttpClient.sendRequest( + url, HttpHeader.ACCEPT, MetricsContentType.PROMETHEUS_PROTOBUF_METRICS.toString()); + assertMetricsResponse(httpResponse, MetricsContentType.PROMETHEUS_PROTOBUF_METRICS); + } + + private void assertMetricsResponse(HttpResponse httpResponse, MetricsContentType metricsContentType) { + assertMetricsContentType(httpResponse, metricsContentType); + + Map> metrics = parseMap(httpResponse); + String mode = environment.getJmxExporterMode().name(); + String javaDockerImage = environment.getJavaDockerImage(); + + assertMetrics(SSLWithPEMCertificateTest.class, javaDockerImage, mode, metrics); + } +} diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/application.sh b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/application.sh new file mode 100755 index 000000000..137cbc0eb --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/application.sh @@ -0,0 +1,6 @@ +#!/bin/bash + +java \ + -Xmx512M \ + -javaagent:/common/jmx_prometheus_javaagent.jar=8888:exporter.yaml \ + -jar /common/jmx_example_application.jar diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/adoptopenjdk_openjdk11-openj9.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/adoptopenjdk_openjdk11-openj9.txt new file mode 100644 index 000000000..63567deb1 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/adoptopenjdk_openjdk11-openj9.txt @@ -0,0 +1,190 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent adoptopenjdk/openjdk11-openj9 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="IBM Semeru Runtime Open Edition",vendor="Eclipse OpenJ9",version="11.0.26+4"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/adoptopenjdk_openjdk8-openj9.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/adoptopenjdk_openjdk8-openj9.txt new file mode 100644 index 000000000..052f89ded --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/adoptopenjdk_openjdk8-openj9.txt @@ -0,0 +1,187 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent adoptopenjdk/openjdk8-openj9 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="IBM Semeru Runtime Open Edition",vendor="Eclipse OpenJ9",version="1.8.0_442-b06"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_11.txt new file mode 100644 index 000000000..ba1ed7e38 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_11.txt @@ -0,0 +1,159 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent alibabadragonwell/dragonwell:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Alibaba",version="11.0.31.28+11"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_17.txt new file mode 100644 index 000000000..2b3a2d46c --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_17.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent alibabadragonwell/dragonwell:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Alibaba",version="17.0.17+9"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_21.txt new file mode 100644 index 000000000..b1648b807 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_21.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent alibabadragonwell/dragonwell:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Alibaba",version="21.0.10.0.10"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_25.txt new file mode 100644 index 000000000..c863f710a --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_25.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent alibabadragonwell/dragonwell:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Alibaba",version="25.0.3.0.3"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_8.txt new file mode 100644 index 000000000..e4b54ad71 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/alibabadragonwell_dragonwell_8.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent alibabadragonwell/dragonwell:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Alibaba",version="1.8.0_492-b01"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_11.txt new file mode 100644 index 000000000..46c334b3f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_11.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent amazoncorretto:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Amazon.com Inc.",version="11.0.31+11-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_17.txt new file mode 100644 index 000000000..19d32f270 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_17.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent amazoncorretto:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Amazon.com Inc.",version="17.0.19+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_21.txt new file mode 100644 index 000000000..17988a03c --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_21.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent amazoncorretto:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Amazon.com Inc.",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_24.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_24.txt new file mode 100644 index 000000000..65b9c28bd --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_24.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent amazoncorretto:24 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Amazon.com Inc.",version="24.0.2+12-FR"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_25.txt new file mode 100644 index 000000000..837a6ca7f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_25.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent amazoncorretto:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Amazon.com Inc.",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_26.txt new file mode 100644 index 000000000..d0bc1b4b9 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_26.txt @@ -0,0 +1,164 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent amazoncorretto:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Amazon.com Inc.",version="26.0.1+8-FR"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_8.txt new file mode 100644 index 000000000..f22c5b765 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/amazoncorretto_8.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent amazoncorretto:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Amazon.com Inc.",version="1.8.0_492-b09"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_konajdk_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_konajdk_21.txt new file mode 100644 index 000000000..955ba9fd5 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_konajdk_21.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent antublue/konajdk:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Tencent",version="21.0.6+1-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_11.txt new file mode 100644 index 000000000..c5791621c --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_11.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent antublue/openlogic-openjdk:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="OpenLogic-OpenJDK",version="11.0.24+8-adhoc.root.jdk11u"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_17.txt new file mode 100644 index 000000000..57f8b1edf --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_17.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent antublue/openlogic-openjdk:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="OpenLogic-OpenJDK",version="17.0.12+7-adhoc.root.jdk17u"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_21.txt new file mode 100644 index 000000000..49fa43940 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_21.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent antublue/openlogic-openjdk:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="OpenLogic-OpenJDK",version="21.0.4+7-adhoc.root.jdk21u"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_8.txt new file mode 100644 index 000000000..b545664cc --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/antublue_openlogic-openjdk_8.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent antublue/openlogic-openjdk:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="OpenLogic-OpenJDK",version="1.8.0_422-422-b05"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_11.txt new file mode 100644 index 000000000..5a8e2be11 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_11.txt @@ -0,0 +1,429 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/prime:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCache_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryManager"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_NativeHeap_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Native_Heap_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Valid{type="MemoryPool"} * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="11.0.29.0.101+1-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_17.txt new file mode 100644 index 000000000..5c8113a09 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_17.txt @@ -0,0 +1,435 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/prime:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCache_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryManager"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_NativeHeap_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Native_Heap_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Valid{type="MemoryPool"} * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="17.0.17.0.101+1-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_21.txt new file mode 100644 index 000000000..db6b951fe --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_21.txt @@ -0,0 +1,435 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/prime:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCache_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryManager"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_NativeHeap_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Native_Heap_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Valid{type="MemoryPool"} * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="21.0.9.0.101+1-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_23.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_23.txt new file mode 100644 index 000000000..20e5ab351 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_23.txt @@ -0,0 +1,435 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/prime:23 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCache_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryManager"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_NativeHeap_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Native_Heap_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Valid{type="MemoryPool"} * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="23.0.2+7-MTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_8.txt new file mode 100644 index 000000000..ab3f646b2 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_prime_8.txt @@ -0,0 +1,142 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/prime:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeCache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless New Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Old Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="GenPauseless Perm Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Native Heap"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="1.8.0_481-b11"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_11.txt new file mode 100644 index 000000000..04ffb2f41 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_11.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/zulu-openjdk:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="11.0.31+11-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_17.txt new file mode 100644 index 000000000..e75c2fb61 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_17.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/zulu-openjdk:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="17.0.19+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_21.txt new file mode 100644 index 000000000..9060653b7 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_21.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/zulu-openjdk:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_25.txt new file mode 100644 index 000000000..b19a5bff2 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_25.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/zulu-openjdk:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_26.txt new file mode 100644 index 000000000..79950cff1 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_26.txt @@ -0,0 +1,164 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/zulu-openjdk:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="26.0.1+8"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_8.txt new file mode 100644 index 000000000..6271923f4 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/azul_zulu-openjdk_8.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent azul/zulu-openjdk:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Azul Systems, Inc.",version="1.8.0_492-b09"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_11.txt new file mode 100644 index 000000000..00aba5b2b --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_11.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent bellsoft/liberica-openjdk-debian:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="BellSoft",version="11.0.31+11-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_17.txt new file mode 100644 index 000000000..2ccf62462 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_17.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent bellsoft/liberica-openjdk-debian:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="BellSoft",version="17.0.19+11-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_21.txt new file mode 100644 index 000000000..015a30733 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_21.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent bellsoft/liberica-openjdk-debian:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="BellSoft",version="21.0.11+11-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_25.txt new file mode 100644 index 000000000..f06288a9f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_25.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent bellsoft/liberica-openjdk-debian:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="BellSoft",version="25.0.3+11-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_26.txt new file mode 100644 index 000000000..1941b0f81 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_26.txt @@ -0,0 +1,164 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent bellsoft/liberica-openjdk-debian:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="BellSoft",version="26.0.1+10"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_8.txt new file mode 100644 index 000000000..7f5e73d55 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/bellsoft_liberica-openjdk-debian_8.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent bellsoft/liberica-openjdk-debian:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="BellSoft",version="1.8.0_492-b09"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/container-registry.oracle.com_graalvm_jdk-community_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/container-registry.oracle.com_graalvm_jdk-community_25.txt new file mode 100644 index 000000000..b5aaab3a8 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/container-registry.oracle.com_graalvm_jdk-community_25.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent container-registry.oracle.com/graalvm/jdk-community:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="GraalVM Community",version="25.0.1+8-jvmci-b01"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_11-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_11-alpine.txt new file mode 100644 index 000000000..bec732753 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_11-alpine.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:11-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="11.0.31+11"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_11.txt new file mode 100644 index 000000000..f6aaa637a --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_11.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="11.0.31+11"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_17-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_17-alpine.txt new file mode 100644 index 000000000..b608a009f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_17-alpine.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:17-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="17.0.19+10"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_17.txt new file mode 100644 index 000000000..f2dffae9a --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_17.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="17.0.19+10"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_21-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_21-alpine.txt new file mode 100644 index 000000000..23766cc0c --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_21-alpine.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:21-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_21.txt new file mode 100644 index 000000000..0b4baa5a2 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_21.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_25-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_25-alpine.txt new file mode 100644 index 000000000..2a960195e --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_25-alpine.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:25-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_25.txt new file mode 100644 index 000000000..057c8afdc --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_25.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_26-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_26-alpine.txt new file mode 100644 index 000000000..69d03624e --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_26-alpine.txt @@ -0,0 +1,164 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:26-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="26.0.1+8"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_26.txt new file mode 100644 index 000000000..2faba8462 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_26.txt @@ -0,0 +1,164 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Eclipse Adoptium",version="26.0.1+8"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_8.txt new file mode 100644 index 000000000..9614d3fd3 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/eclipse-temurin_8.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent eclipse-temurin:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Temurin",version="1.8.0_492-b09"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_21.txt new file mode 100644 index 000000000..3cc9b814c --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_21.txt @@ -0,0 +1,162 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ghcr.io/graalvm/jdk:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="GraalVM Community",version="17.0.4+8-jvmci-21.3-b20"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_22.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_22.txt new file mode 100644 index 000000000..54a5d388c --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_22.txt @@ -0,0 +1,162 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ghcr.io/graalvm/jdk:22 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="GraalVM Community",version="17.0.8+7-jvmci-22.3-b22"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_java11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_java11.txt new file mode 100644 index 000000000..9a60efb93 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_java11.txt @@ -0,0 +1,156 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ghcr.io/graalvm/jdk:java11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="GraalVM Community",version="11.0.13+7-jvmci-21.3-b05"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_java17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_java17.txt new file mode 100644 index 000000000..1bd7b03a3 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_java17.txt @@ -0,0 +1,162 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ghcr.io/graalvm/jdk:java17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="GraalVM Community",version="17.0.1+12-jvmci-21.3-b05"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_java8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_java8.txt new file mode 100644 index 000000000..4446928a5 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ghcr.io_graalvm_jdk_java8.txt @@ -0,0 +1,148 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ghcr.io/graalvm/jdk:java8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match COUNTER jmx_http_requests_rejected_total 0.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match COUNTER jmx_scrape_timeout_total 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="GraalVM Community",version="1.8.0_302-b07"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-11-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-11-jdk-focal.txt new file mode 100644 index 000000000..4bf75b585 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-11-jdk-focal.txt @@ -0,0 +1,190 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ibm-semeru-runtimes:open-11-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="IBM Semeru Runtime Open Edition",vendor="Eclipse OpenJ9",version="11.0.27+6"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-17-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-17-jdk-focal.txt new file mode 100644 index 000000000..0513194fc --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-17-jdk-focal.txt @@ -0,0 +1,191 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ibm-semeru-runtimes:open-17-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="IBM Semeru Runtime Open Edition",vendor="Eclipse OpenJ9",version="17.0.15+6"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-21-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-21-jdk-focal.txt new file mode 100644 index 000000000..8bdeadd96 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-21-jdk-focal.txt @@ -0,0 +1,187 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ibm-semeru-runtimes:open-21-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="IBM Semeru Runtime Open Edition",vendor="Eclipse OpenJ9",version="21.0.7+6-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-23-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-23-jdk-focal.txt new file mode 100644 index 000000000..e8cd43932 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-23-jdk-focal.txt @@ -0,0 +1,187 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ibm-semeru-runtimes:open-23-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="IBM Semeru Runtime Open Edition",vendor="Eclipse OpenJ9",version="23.0.2+7"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-25-jdk.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-25-jdk.txt new file mode 100644 index 000000000..e11349c57 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-25-jdk.txt @@ -0,0 +1,187 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ibm-semeru-runtimes:open-25-jdk + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="IBM Semeru Runtime Open Edition",vendor="Eclipse OpenJ9",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-26-jdk.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-26-jdk.txt new file mode 100644 index 000000000..51841723c --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-26-jdk.txt @@ -0,0 +1,188 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ibm-semeru-runtimes:open-26-jdk + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="IBM Semeru Runtime Open Edition",vendor="Eclipse OpenJ9",version="26.0.1+8"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-8-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-8-jdk-focal.txt new file mode 100644 index 000000000..e033928b4 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibm-semeru-runtimes_open-8-jdk-focal.txt @@ -0,0 +1,187 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ibm-semeru-runtimes:open-8-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="IBM Semeru Runtime Open Edition",vendor="Eclipse OpenJ9",version="1.8.0_452-b09"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibmjava_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibmjava_11.txt new file mode 100644 index 000000000..7bec9c2d2 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/ibmjava_11.txt @@ -0,0 +1,186 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent ibmjava:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match COUNTER jmx_http_requests_rejected_total 0.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match COUNTER jmx_scrape_timeout_total 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_init_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_init_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_max_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_max_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT code cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="JIT data cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="class storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="miscellaneous non-heap storage"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-allocate"} * +match GAUGE jvm_memory_pool_used_bytes{pool="nursery-survivor"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-LOA"} * +match GAUGE jvm_memory_pool_used_bytes{pool="tenured-SOA"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="Java(TM) SE Runtime Environment",vendor="Eclipse OpenJ9",version="11.0.11+9"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/konajdk_konajdk_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/konajdk_konajdk_11.txt new file mode 100644 index 000000000..559543f87 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/konajdk_konajdk_11.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent konajdk/konajdk:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Tencent",version="11.0.27+1"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/konajdk_konajdk_17-tlinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/konajdk_konajdk_17-tlinux.txt new file mode 100644 index 000000000..11a2e7bb4 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/konajdk_konajdk_17-tlinux.txt @@ -0,0 +1,162 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent konajdk/konajdk:17-tlinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Tencent",version="17.0.10+1-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/konajdk_konajdk_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/konajdk_konajdk_8.txt new file mode 100644 index 000000000..d42bd4f5f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/konajdk_konajdk_8.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent konajdk/konajdk:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Tencent",version="1.8.0_452-b1"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-azurelinux.txt new file mode 100644 index 000000000..17b96ac35 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-azurelinux.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:11-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="11.0.31+11-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner-cm1.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner-cm1.txt new file mode 100644 index 000000000..867e78ec0 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner-cm1.txt @@ -0,0 +1,156 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:11-mariner-cm1 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="11.0.21+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner.txt new file mode 100644 index 000000000..82cb5d661 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:11-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="11.0.31+11-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-ubuntu.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-ubuntu.txt new file mode 100644 index 000000000..93d3af64b --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_11-ubuntu.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:11-ubuntu + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="11.0.31+11-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-azurelinux.txt new file mode 100644 index 000000000..bf31d75a9 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-azurelinux.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:17-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="17.0.19+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner-cm1.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner-cm1.txt new file mode 100644 index 000000000..1a1f31b35 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner-cm1.txt @@ -0,0 +1,162 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:17-mariner-cm1 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="17.0.9+8-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner.txt new file mode 100644 index 000000000..74a8307c4 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:17-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="17.0.19+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-ubuntu.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-ubuntu.txt new file mode 100644 index 000000000..d5842f39b --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_17-ubuntu.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:17-ubuntu + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="17.0.19+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-azurelinux.txt new file mode 100644 index 000000000..965d1e88a --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-azurelinux.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:21-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner-cm1.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner-cm1.txt new file mode 100644 index 000000000..c38780f23 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner-cm1.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:21-mariner-cm1 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="21+35-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner.txt new file mode 100644 index 000000000..1e8055643 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:21-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-ubuntu.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-ubuntu.txt new file mode 100644 index 000000000..1c3aaf8af --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_21-ubuntu.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:21-ubuntu + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_25-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_25-azurelinux.txt new file mode 100644 index 000000000..b2866d6e5 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_25-azurelinux.txt @@ -0,0 +1,165 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:25-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_management_AOTCache_Recording 0.0 +match UNTYPED jdk_management_AOTCache_RecordingDuration 0.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_25-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_25-mariner.txt new file mode 100644 index 000000000..d2dab9185 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_25-mariner.txt @@ -0,0 +1,165 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:25-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_management_AOTCache_Recording 0.0 +match UNTYPED jdk_management_AOTCache_RecordingDuration 0.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_25-ubuntu.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_25-ubuntu.txt new file mode 100644 index 000000000..c8c47b115 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_25-ubuntu.txt @@ -0,0 +1,165 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:25-ubuntu + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_management_AOTCache_Recording 0.0 +match UNTYPED jdk_management_AOTCache_RecordingDuration 0.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Microsoft",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_8-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_8-azurelinux.txt new file mode 100644 index 000000000..3f4a3dc08 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_8-azurelinux.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:8-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Temurin",version="1.8.0_492-b09"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_8-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_8-mariner.txt new file mode 100644 index 000000000..507032c8a --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/mcr.microsoft.com_openjdk_jdk_8-mariner.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent mcr.microsoft.com/openjdk/jdk:8-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Temurin",version="1.8.0_492-b09"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-11-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-11-runtime_latest.txt new file mode 100644 index 000000000..9bdc048b7 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-11-runtime_latest.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent registry.access.redhat.com/ubi8/openjdk-11-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Red Hat, Inc.",version="11.0.25+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-17-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-17-runtime_latest.txt new file mode 100644 index 000000000..62585688b --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-17-runtime_latest.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent registry.access.redhat.com/ubi8/openjdk-17-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Red Hat, Inc.",version="17.0.19+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-21-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-21-runtime_latest.txt new file mode 100644 index 000000000..a2f24a5b3 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-21-runtime_latest.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent registry.access.redhat.com/ubi8/openjdk-21-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Red Hat, Inc.",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-8-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-8-runtime_latest.txt new file mode 100644 index 000000000..f8c76c6d0 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi8_openjdk-8-runtime_latest.txt @@ -0,0 +1,147 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent registry.access.redhat.com/ubi8/openjdk-8-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Code Cache"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Red Hat, Inc.",version="1.8.0_492-b09"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-11-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-11-runtime_latest.txt new file mode 100644 index 000000000..764eede5f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-11-runtime_latest.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent registry.access.redhat.com/ubi9/openjdk-11-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Red Hat, Inc.",version="11.0.25+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-17-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-17-runtime_latest.txt new file mode 100644 index 000000000..939a05ea6 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-17-runtime_latest.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent registry.access.redhat.com/ubi9/openjdk-17-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Red Hat, Inc.",version="17.0.19+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-21-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-21-runtime_latest.txt new file mode 100644 index 000000000..ac9c09ad9 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-21-runtime_latest.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent registry.access.redhat.com/ubi9/openjdk-21-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Red Hat, Inc.",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-25-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-25-runtime_latest.txt new file mode 100644 index 000000000..795f2e176 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/registry.access.redhat.com_ubi9_openjdk-25-runtime_latest.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent registry.access.redhat.com/ubi9/openjdk-25-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="Red Hat, Inc.",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_11.txt new file mode 100644 index 000000000..d3dd6605f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_11.txt @@ -0,0 +1,157 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent sapmachine:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="SAP SE",version="11.0.30+7-LTS-sapmachine"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_17.txt new file mode 100644 index 000000000..bc12d87a4 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_17.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent sapmachine:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="SAP SE",version="17.0.19+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_21.txt new file mode 100644 index 000000000..3f5b5da0f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_21.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent sapmachine:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="SAP SE",version="21.0.11+10-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_25.txt new file mode 100644 index 000000000..52651a915 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_25.txt @@ -0,0 +1,163 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent sapmachine:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="SAP SE",version="25.0.3+9-LTS"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_26.txt new file mode 100644 index 000000000..59e14f0a8 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/assertions/sapmachine_26.txt @@ -0,0 +1,164 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest JavaAgent sapmachine:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_javaagent",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match GAUGE jvm_buffer_pool_capacity_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_capacity_bytes{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="direct"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_buffers{pool="mapped"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="direct"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped - 'non-volatile memory'"} * +match GAUGE jvm_buffer_pool_used_bytes{pool="mapped"} * +match GAUGE jvm_classes_currently_loaded * +match COUNTER jvm_classes_loaded_total * +match COUNTER jvm_classes_unloaded_total * +match COUNTER jvm_compilation_time_seconds_total * +match GAUGE jvm_memory_committed_bytes{area="heap"} * +match GAUGE jvm_memory_committed_bytes{area="nonheap"} * +match GAUGE jvm_memory_init_bytes{area="heap"} * +match GAUGE jvm_memory_init_bytes{area="nonheap"} * +match GAUGE jvm_memory_max_bytes{area="heap"} * +match GAUGE jvm_memory_max_bytes{area="nonheap"} * +match GAUGE jvm_memory_objects_pending_finalization * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_committed_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_init_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_max_bytes{pool="*Gen"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'non-profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="CodeHeap 'profiled nmethods'"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Compressed Class Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Eden Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="Metaspace"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Survivor Space"} * +match GAUGE jvm_memory_pool_used_bytes{pool="*Gen"} * +match GAUGE jvm_memory_used_bytes{area="heap"} * +match GAUGE jvm_memory_used_bytes{area="nonheap"} * +match GAUGE jvm_runtime_info{runtime="OpenJDK Runtime Environment",vendor="SAP SE",version="26.0.1+8"} * +match GAUGE jvm_threads_current * +match GAUGE jvm_threads_daemon * +match GAUGE jvm_threads_deadlocked * +match GAUGE jvm_threads_deadlocked_monitor * +match GAUGE jvm_threads_peak * +match COUNTER jvm_threads_started_total * +match GAUGE jvm_threads_state{state="BLOCKED"} * +match GAUGE jvm_threads_state{state="NEW"} * +match GAUGE jvm_threads_state{state="RUNNABLE"} * +match GAUGE jvm_threads_state{state="TERMINATED"} * +match GAUGE jvm_threads_state{state="TIMED_WAITING"} * +match GAUGE jvm_threads_state{state="UNKNOWN"} * +match GAUGE jvm_threads_state{state="WAITING"} * +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 +match COUNTER process_cpu_seconds_total * +match GAUGE process_max_fds * +match GAUGE process_open_fds * +match GAUGE process_resident_memory_bytes * +match GAUGE process_start_time_seconds * +match GAUGE process_virtual_memory_bytes * diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/certificate.pem b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/certificate.pem new file mode 100644 index 000000000..2f2b85e31 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/certificate.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDITCCAgmgAwIBAgIUT/XCd5SCzE5KNeHcATV4JUGh+cgwDQYJKoZIhvcNAQEL +BQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MCAXDTI2MDcxNTA1MjAyM1oYDzIxMjYw +NjIxMDUyMDIzWjAUMRIwEAYDVQQDDAlsb2NhbGhvc3QwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCxU9C6R8KwI2bCcO9NxhmitFOzKS7shsYuNNHdLPjG +190C5LFoncploMqr/9mUoE1qUFbHQ0PPK67rCFLtIe1p5USb2/wihWSRycqL8Mp0 +bRqWz6yIonAwaqLYlmZXJAqo93nOhf7WC3IxovDldzzBClBTW0MRz/OxZRBPsC1K +dsY5jhxTNk6aeeFGwioq7ebpgEooEfXqaZjxp9zsFEZynUx6thWr+vBeV3NhYzW/ +mT4wY0Xo+FwjynolAnAANayWM+M7KSB4+1733C19m6WH8Eo9+QX+VenlukWZwKZt +BrIFOsKPCxBMfwqEhvGXTagJMgxKrnld9LdzGsiePrCVAgMBAAGjaTBnMB0GA1Ud +DgQWBBQWq5zoOw5iGh25bP9bf77okpzNKDAfBgNVHSMEGDAWgBQWq5zoOw5iGh25 +bP9bf77okpzNKDAPBgNVHRMBAf8EBTADAQH/MBQGA1UdEQQNMAuCCWxvY2FsaG9z +dDANBgkqhkiG9w0BAQsFAAOCAQEAlPB/R8nOyuWnmVEcT/XcRQ2Dbv5pR9FWyKCr +JJVnXvN2xptFgfWc/K7lirPvghe5Y1LOMt8SQ4/8n/Jw6QQBtKC9Sik6wxkYG2yU +n+VptN5gTgBi5i+zekqDqhWuMCGlqqfSoaWP7RetX+bIgO2Jt3vn/L5WB6jSqqXO +/2b6SlzInyxqRMWbjNp5Ch+XllzO0uxvjpxDxm58Z4dOXwTSAq1q1MM4/G2+Eltr +UjWj6tkZNbIArHuKSQ4oWhEaPGRJ6DueqsTsSVfPrTfZXLe6MuW1Skpiaf3RYwRz +2OAovlY75L1jm+TXJNtngerCOhbq580Kh/8WJMaXbEMEhvnnsw== +-----END CERTIFICATE----- diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/exporter.yaml b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/exporter.yaml new file mode 100644 index 000000000..8c9b4d89b --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/exporter.yaml @@ -0,0 +1,9 @@ +httpServer: + ssl: + pem: + certificate: + filename: certificate.pem + privateKey: + filename: key.pem +rules: + - pattern: ".*" diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/key.pem b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/key.pem new file mode 100644 index 000000000..8abc2aea4 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/JavaAgent/key.pem @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCxU9C6R8KwI2bC +cO9NxhmitFOzKS7shsYuNNHdLPjG190C5LFoncploMqr/9mUoE1qUFbHQ0PPK67r +CFLtIe1p5USb2/wihWSRycqL8Mp0bRqWz6yIonAwaqLYlmZXJAqo93nOhf7WC3Ix +ovDldzzBClBTW0MRz/OxZRBPsC1KdsY5jhxTNk6aeeFGwioq7ebpgEooEfXqaZjx +p9zsFEZynUx6thWr+vBeV3NhYzW/mT4wY0Xo+FwjynolAnAANayWM+M7KSB4+173 +3C19m6WH8Eo9+QX+VenlukWZwKZtBrIFOsKPCxBMfwqEhvGXTagJMgxKrnld9Ldz +GsiePrCVAgMBAAECggEAJ1jfwdXWf1r7nD2O/ATu/0lgISsMPHOTWgFiZ99ovEZ9 +xfyU2Q/aLz7EefHlh7MiOmrlNoXYcAnTYFeSfwe+NHcpCCSCB+7tZ+QMy4x8f+UN +t1URhaf1mOiwhbqprsBSlTeEkazt5PTZO+ZZ6bDRjEwLktN3SGaKPlych/IhupnN +UU5YIo/dUY+lVqBmxkck2Ox+pHoN9XQfBe/FUQ9DK1ql/3ihSPU878zs+DDQLLYI +ZfY07j26mQF/yNmwrsQl/z2rfQspvac9vY82sc1IGxorY8F5GCXiD6hbSqsD6oRl +5w1Ir6XJn9grc2s2miTzWkXRmcQuJkGnqFBeQbvkAQKBgQDrRHxYf9m8Xpm9yCdf +o4J/fRQQ+/vGz4pCs5hr1oMvnX2IPN/+iGZMn73NnTa2B+sOoOUqCPDjYu+gfZso +GpdHPdm3RIw6ZPnKViKm8QO0Zae+NQ7ird/LcKSLZq2lYDDv8pkTKXbrUwXtEnBP +uCI954w0iDY7Sqk7cV7rWt2pgQKBgQDA9Dr39Aj0FommrRWSvznqm9MlHx4iKC4E +6Puh8Fdg722NoZsRXz/lG7GKWsOJTXQAhbGsZcYuPVCSs/JltdyPdw9OUGr+o6OV +vosm1cHFZfv1zVOteoSoBkbci3oefhhCYblQh3DX3+pbhnZdDPvJWTig8pF0AcO4 +8/eITbpJFQKBgQDO1gIACD7TxdOiLuK2yVjEXqGSoQZkbjfelmhNfmUNKoefi+1d +qGtPuCy1JR9hf6qezMNMZlnpfySu017iLiaLgovy/HfQKtAUnA+Q91lLcwe7SIhS +r4yOHfT7fYTyXJQJkB4V46FiGDagi1JkM70e8X+o+4u6KtSHpw9NGTDBgQKBgCPq +kjtrUmtU8qRy3WwmajpwbPog87P59K73SzeWjD0/9A2EAmBWcYdNA1w0juc04p3i +RPNJMn2S7jeQhVNHadnOmKvELlZd0WpjQHWnHl2HIUJcyPGmt6CrIm+VCtM4N33L +wPnrbCbSyEXnHostioStNexHmqmUVoFL8EyP41gNAoGBAJv7Fwe7MMj4Y0e+evCX +0hZAPzoI3nu0F8ZlfxinjgMzKx3SCmPgV+fTuJWqJliKlG4zbHgUL7gGEK3vWJOM +hKGtAx82aGYXFw2dAbADDEWfSk+BrNIyYsagC0mDxBH4j/iUHGiWY+LpiiBXOoj+ +erscIb7ZiLTw3GZFsjJ+hZNR +-----END PRIVATE KEY----- diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/application.sh b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/application.sh new file mode 100755 index 000000000..ff255c706 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/application.sh @@ -0,0 +1,13 @@ +#!/bin/bash + +java \ + -Xmx512M \ + -Dcom.sun.management.jmxremote=true \ + -Dcom.sun.management.jmxremote.authenticate=false \ + -Dcom.sun.management.jmxremote.local.only=false \ + -Dcom.sun.management.jmxremote.port=9999 \ + -Dcom.sun.management.jmxremote.registry.ssl=false \ + -Dcom.sun.management.jmxremote.rmi.port=9999 \ + -Dcom.sun.management.jmxremote.ssl.need.client.auth=false \ + -Dcom.sun.management.jmxremote.ssl=false \ + -jar /common/jmx_example_application.jar diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/adoptopenjdk_openjdk11-openj9.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/adoptopenjdk_openjdk11-openj9.txt new file mode 100644 index 000000000..6f9bad59d --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/adoptopenjdk_openjdk11-openj9.txt @@ -0,0 +1,119 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone adoptopenjdk/openjdk11-openj9 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/adoptopenjdk_openjdk8-openj9.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/adoptopenjdk_openjdk8-openj9.txt new file mode 100644 index 000000000..ddd924f03 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/adoptopenjdk_openjdk8-openj9.txt @@ -0,0 +1,116 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone adoptopenjdk/openjdk8-openj9 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_11.txt new file mode 100644 index 000000000..5b8d7dc64 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_11.txt @@ -0,0 +1,88 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone alibabadragonwell/dragonwell:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_17.txt new file mode 100644 index 000000000..dbaf39dc7 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_17.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone alibabadragonwell/dragonwell:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_21.txt new file mode 100644 index 000000000..f3e2c87ab --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_21.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone alibabadragonwell/dragonwell:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_25.txt new file mode 100644 index 000000000..052151d27 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_25.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone alibabadragonwell/dragonwell:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_8.txt new file mode 100644 index 000000000..1b7d31f38 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/alibabadragonwell_dragonwell_8.txt @@ -0,0 +1,84 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone alibabadragonwell/dragonwell:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_11.txt new file mode 100644 index 000000000..9878348b4 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_11.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone amazoncorretto:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_17.txt new file mode 100644 index 000000000..cd4cb6777 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_17.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone amazoncorretto:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_21.txt new file mode 100644 index 000000000..0747a0da6 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_21.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone amazoncorretto:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_24.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_24.txt new file mode 100644 index 000000000..b32fa4e5a --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_24.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone amazoncorretto:24 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_25.txt new file mode 100644 index 000000000..fd97eb1e9 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_25.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone amazoncorretto:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_26.txt new file mode 100644 index 000000000..e06f0cad0 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_26.txt @@ -0,0 +1,90 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone amazoncorretto:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_8.txt new file mode 100644 index 000000000..1498ac5e0 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/amazoncorretto_8.txt @@ -0,0 +1,84 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone amazoncorretto:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_konajdk_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_konajdk_21.txt new file mode 100644 index 000000000..788b72a4b --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_konajdk_21.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone antublue/konajdk:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_11.txt new file mode 100644 index 000000000..c11443b20 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_11.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone antublue/openlogic-openjdk:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_17.txt new file mode 100644 index 000000000..4c7e4d1cd --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_17.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone antublue/openlogic-openjdk:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_21.txt new file mode 100644 index 000000000..a58a8ab69 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_21.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone antublue/openlogic-openjdk:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_8.txt new file mode 100644 index 000000000..206e1342a --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/antublue_openlogic-openjdk_8.txt @@ -0,0 +1,84 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone antublue/openlogic-openjdk:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_11.txt new file mode 100644 index 000000000..b9750723f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_11.txt @@ -0,0 +1,370 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/prime:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCache_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryManager"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_NativeHeap_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Native_Heap_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Valid{type="MemoryPool"} * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_17.txt new file mode 100644 index 000000000..96545c555 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_17.txt @@ -0,0 +1,373 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/prime:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCache_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryManager"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_NativeHeap_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Native_Heap_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Valid{type="MemoryPool"} * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_21.txt new file mode 100644 index 000000000..169c886ed --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_21.txt @@ -0,0 +1,373 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/prime:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCache_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryManager"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_NativeHeap_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Native_Heap_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Valid{type="MemoryPool"} * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_23.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_23.txt new file mode 100644 index 000000000..5eec1b488 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_23.txt @@ -0,0 +1,373 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/prime:23 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCache_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryManager"} * +match UNTYPED java_lang_CodeCache_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_New_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Cycles_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_CollectionTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_GcThreadCount{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_duration{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_endTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_id{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageAfterGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_committed{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_init{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_max{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="CodeCache",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless New Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Old Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="GenPauseless Perm Gen",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_memoryUsageBeforeGc_used{key="Native Heap",type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_LastGcInfo_startTime{type="GarbageCollector"} * +match UNTYPED java_lang_GPGC_Old_Pauses_Valid{type="GarbageCollector"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_New_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Old_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_CollectionUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_GenPauseless_Perm_Gen_Valid{type="MemoryPool"} * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_NativeHeap_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Native_Heap_CollectionUsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_PeakUsage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThreshold{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdCount{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdExceeded{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_UsageThresholdSupported{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_committed{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_init{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_max{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Usage_used{type="MemoryPool"} * +match UNTYPED java_lang_Native_Heap_Valid{type="MemoryPool"} * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_8.txt new file mode 100644 index 000000000..581a33fc3 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_prime_8.txt @@ -0,0 +1,83 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/prime:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_11.txt new file mode 100644 index 000000000..d240c4299 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_11.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/zulu-openjdk:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_17.txt new file mode 100644 index 000000000..f3bc2a7da --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_17.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/zulu-openjdk:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_21.txt new file mode 100644 index 000000000..cf63796e5 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_21.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/zulu-openjdk:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_25.txt new file mode 100644 index 000000000..492148928 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_25.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/zulu-openjdk:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_26.txt new file mode 100644 index 000000000..6e55c203e --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_26.txt @@ -0,0 +1,90 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/zulu-openjdk:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_8.txt new file mode 100644 index 000000000..27196d22b --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/azul_zulu-openjdk_8.txt @@ -0,0 +1,84 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone azul/zulu-openjdk:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_11.txt new file mode 100644 index 000000000..1843d7c82 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_11.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone bellsoft/liberica-openjdk-debian:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_17.txt new file mode 100644 index 000000000..6c2ecb762 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_17.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone bellsoft/liberica-openjdk-debian:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_21.txt new file mode 100644 index 000000000..2919893a6 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_21.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone bellsoft/liberica-openjdk-debian:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_25.txt new file mode 100644 index 000000000..6e4007c30 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_25.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone bellsoft/liberica-openjdk-debian:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_26.txt new file mode 100644 index 000000000..a9e129128 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_26.txt @@ -0,0 +1,90 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone bellsoft/liberica-openjdk-debian:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_8.txt new file mode 100644 index 000000000..22ee5460f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/bellsoft_liberica-openjdk-debian_8.txt @@ -0,0 +1,84 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone bellsoft/liberica-openjdk-debian:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/container-registry.oracle.com_graalvm_jdk-community_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/container-registry.oracle.com_graalvm_jdk-community_25.txt new file mode 100644 index 000000000..8383199cc --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/container-registry.oracle.com_graalvm_jdk-community_25.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone container-registry.oracle.com/graalvm/jdk-community:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_11-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_11-alpine.txt new file mode 100644 index 000000000..e603ad008 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_11-alpine.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:11-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_11.txt new file mode 100644 index 000000000..1392f98fd --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_11.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_17-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_17-alpine.txt new file mode 100644 index 000000000..4e6aa8f1f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_17-alpine.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:17-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_17.txt new file mode 100644 index 000000000..f4e5dc8f2 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_17.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_21-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_21-alpine.txt new file mode 100644 index 000000000..bd8577637 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_21-alpine.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:21-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_21.txt new file mode 100644 index 000000000..6c772d745 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_21.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_25-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_25-alpine.txt new file mode 100644 index 000000000..6f58df726 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_25-alpine.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:25-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_25.txt new file mode 100644 index 000000000..96d8ff200 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_25.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_26-alpine.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_26-alpine.txt new file mode 100644 index 000000000..7d2fe367d --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_26-alpine.txt @@ -0,0 +1,90 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:26-alpine + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_26.txt new file mode 100644 index 000000000..6e45d8776 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/eclipse-temurin_26.txt @@ -0,0 +1,90 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone eclipse-temurin:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_21.txt new file mode 100644 index 000000000..41e1af647 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_21.txt @@ -0,0 +1,88 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ghcr.io/graalvm/jdk:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_22.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_22.txt new file mode 100644 index 000000000..ea1f9aab2 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_22.txt @@ -0,0 +1,88 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ghcr.io/graalvm/jdk:22 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_java11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_java11.txt new file mode 100644 index 000000000..679727384 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_java11.txt @@ -0,0 +1,85 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ghcr.io/graalvm/jdk:java11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_java17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_java17.txt new file mode 100644 index 000000000..6305d8c07 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_java17.txt @@ -0,0 +1,88 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ghcr.io/graalvm/jdk:java17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_java8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_java8.txt new file mode 100644 index 000000000..2b2e9ed35 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ghcr.io_graalvm_jdk_java8.txt @@ -0,0 +1,85 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ghcr.io/graalvm/jdk:java8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match COUNTER jmx_http_requests_rejected_total 0.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match COUNTER jmx_scrape_timeout_total 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-11-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-11-jdk-focal.txt new file mode 100644 index 000000000..1982fdcf0 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-11-jdk-focal.txt @@ -0,0 +1,119 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ibm-semeru-runtimes:open-11-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-17-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-17-jdk-focal.txt new file mode 100644 index 000000000..2b64bf439 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-17-jdk-focal.txt @@ -0,0 +1,120 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ibm-semeru-runtimes:open-17-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-21-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-21-jdk-focal.txt new file mode 100644 index 000000000..56cbecd50 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-21-jdk-focal.txt @@ -0,0 +1,116 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ibm-semeru-runtimes:open-21-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-23-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-23-jdk-focal.txt new file mode 100644 index 000000000..59032c41f --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-23-jdk-focal.txt @@ -0,0 +1,116 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ibm-semeru-runtimes:open-23-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-25-jdk.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-25-jdk.txt new file mode 100644 index 000000000..77b7e3d32 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-25-jdk.txt @@ -0,0 +1,116 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ibm-semeru-runtimes:open-25-jdk + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-26-jdk.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-26-jdk.txt new file mode 100644 index 000000000..6d7161e97 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-26-jdk.txt @@ -0,0 +1,117 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ibm-semeru-runtimes:open-26-jdk + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_crac_management_CRaC_RestoreTime -1.0 +match UNTYPED jdk_crac_management_CRaC_UptimeSinceRestore -1.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-8-jdk-focal.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-8-jdk-focal.txt new file mode 100644 index 000000000..461bf988a --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibm-semeru-runtimes_open-8-jdk-focal.txt @@ -0,0 +1,116 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ibm-semeru-runtimes:open-8-jdk-focal + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibmjava_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibmjava_11.txt new file mode 100644 index 000000000..90495d976 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/ibmjava_11.txt @@ -0,0 +1,115 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone ibmjava:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_CurrentGCThreads * +match UNTYPED java_lang_Memory_GCMainThreadCpuUsed * +match UNTYPED java_lang_Memory_GCMasterThreadCpuUsed * +match UNTYPED java_lang_Memory_GCSlaveThreadsCpuUsed * +match UNTYPED java_lang_Memory_GCWorkerThreadsCpuUsed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_MaxHeapSize * +match UNTYPED java_lang_Memory_MaxHeapSizeLimit * +match UNTYPED java_lang_Memory_MaximumGCThreads * +match UNTYPED java_lang_Memory_MinHeapSize * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_SetMaxHeapSizeSupported * +match UNTYPED java_lang_Memory_SharedClassCacheFreeSpace * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxAotUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMaxJitDataUnstoredBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinAotBytes * +match UNTYPED java_lang_Memory_SharedClassCacheMinJitDataBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSize * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxBytes * +match UNTYPED java_lang_Memory_SharedClassCacheSoftmxUnstoredBytes * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTimeByNS * +match UNTYPED java_lang_OperatingSystem_ProcessPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessPrivateMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_ProcessingCapacity * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemory * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_AttachApiInitialized * +match UNTYPED java_lang_Runtime_AttachApiTerminated * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_CPULoad * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_ProcessID * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Runtime_VMGeneratedCPULoad * +match UNTYPED java_lang_Runtime_VMIdle * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match COUNTER jmx_http_requests_rejected_total 0.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match COUNTER jmx_scrape_timeout_total 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/konajdk_konajdk_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/konajdk_konajdk_11.txt new file mode 100644 index 000000000..782c34995 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/konajdk_konajdk_11.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone konajdk/konajdk:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/konajdk_konajdk_17-tlinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/konajdk_konajdk_17-tlinux.txt new file mode 100644 index 000000000..1dd1e0594 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/konajdk_konajdk_17-tlinux.txt @@ -0,0 +1,88 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone konajdk/konajdk:17-tlinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/konajdk_konajdk_8.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/konajdk_konajdk_8.txt new file mode 100644 index 000000000..9dbde89dc --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/konajdk_konajdk_8.txt @@ -0,0 +1,84 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone konajdk/konajdk:8 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-azurelinux.txt new file mode 100644 index 000000000..46ab5d591 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-azurelinux.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:11-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner-cm1.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner-cm1.txt new file mode 100644 index 000000000..8a8e550f2 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner-cm1.txt @@ -0,0 +1,85 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:11-mariner-cm1 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner.txt new file mode 100644 index 000000000..ec94b095b --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-mariner.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:11-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-ubuntu.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-ubuntu.txt new file mode 100644 index 000000000..2a160fb83 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_11-ubuntu.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:11-ubuntu + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-azurelinux.txt new file mode 100644 index 000000000..e6d569ad0 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-azurelinux.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:17-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner-cm1.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner-cm1.txt new file mode 100644 index 000000000..2013ffb62 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner-cm1.txt @@ -0,0 +1,88 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:17-mariner-cm1 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner.txt new file mode 100644 index 000000000..b3740e73e --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-mariner.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:17-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-ubuntu.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-ubuntu.txt new file mode 100644 index 000000000..70c82988e --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_17-ubuntu.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:17-ubuntu + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-azurelinux.txt new file mode 100644 index 000000000..1f837302e --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-azurelinux.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:21-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner-cm1.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner-cm1.txt new file mode 100644 index 000000000..b3ae03061 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner-cm1.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:21-mariner-cm1 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner.txt new file mode 100644 index 000000000..944ed45f6 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-mariner.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:21-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-ubuntu.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-ubuntu.txt new file mode 100644 index 000000000..a6506ed02 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_21-ubuntu.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:21-ubuntu + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_25-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_25-azurelinux.txt new file mode 100644 index 000000000..be1167633 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_25-azurelinux.txt @@ -0,0 +1,91 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:25-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_management_AOTCache_Recording 0.0 +match UNTYPED jdk_management_AOTCache_RecordingDuration 0.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_25-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_25-mariner.txt new file mode 100644 index 000000000..e1be84d7b --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_25-mariner.txt @@ -0,0 +1,91 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:25-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_management_AOTCache_Recording 0.0 +match UNTYPED jdk_management_AOTCache_RecordingDuration 0.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_25-ubuntu.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_25-ubuntu.txt new file mode 100644 index 000000000..fbac75f86 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_25-ubuntu.txt @@ -0,0 +1,91 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:25-ubuntu + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match UNTYPED jdk_management_AOTCache_Recording 0.0 +match UNTYPED jdk_management_AOTCache_RecordingDuration 0.0 +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_8-azurelinux.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_8-azurelinux.txt new file mode 100644 index 000000000..cde9cf896 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_8-azurelinux.txt @@ -0,0 +1,84 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:8-azurelinux + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_8-mariner.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_8-mariner.txt new file mode 100644 index 000000000..e678e8a22 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/mcr.microsoft.com_openjdk_jdk_8-mariner.txt @@ -0,0 +1,84 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone mcr.microsoft.com/openjdk/jdk:8-mariner + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-11-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-11-runtime_latest.txt new file mode 100644 index 000000000..d63943d01 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-11-runtime_latest.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone registry.access.redhat.com/ubi8/openjdk-11-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-17-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-17-runtime_latest.txt new file mode 100644 index 000000000..6e200a36d --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-17-runtime_latest.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone registry.access.redhat.com/ubi8/openjdk-17-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-21-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-21-runtime_latest.txt new file mode 100644 index 000000000..162fb05a3 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-21-runtime_latest.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone registry.access.redhat.com/ubi8/openjdk-21-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-8-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-8-runtime_latest.txt new file mode 100644 index 000000000..ad45ba7e9 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi8_openjdk-8-runtime_latest.txt @@ -0,0 +1,84 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone registry.access.redhat.com/ubi8/openjdk-8-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-11-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-11-runtime_latest.txt new file mode 100644 index 000000000..01bf7f6fd --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-11-runtime_latest.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone registry.access.redhat.com/ubi9/openjdk-11-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-17-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-17-runtime_latest.txt new file mode 100644 index 000000000..06aa9fc1c --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-17-runtime_latest.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone registry.access.redhat.com/ubi9/openjdk-17-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-21-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-21-runtime_latest.txt new file mode 100644 index 000000000..c5d1f64e9 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-21-runtime_latest.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone registry.access.redhat.com/ubi9/openjdk-21-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-25-runtime_latest.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-25-runtime_latest.txt new file mode 100644 index 000000000..3522feb43 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/registry.access.redhat.com_ubi9_openjdk-25-runtime_latest.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone registry.access.redhat.com/ubi9/openjdk-25-runtime:latest + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_11.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_11.txt new file mode 100644 index 000000000..c052201b6 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_11.txt @@ -0,0 +1,86 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone sapmachine:11 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_17.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_17.txt new file mode 100644 index 000000000..1a3d56a03 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_17.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone sapmachine:17 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_21.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_21.txt new file mode 100644 index 000000000..51bd242e3 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_21.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone sapmachine:21 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_25.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_25.txt new file mode 100644 index 000000000..bc17e1014 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_25.txt @@ -0,0 +1,89 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone sapmachine:25 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_26.txt b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_26.txt new file mode 100644 index 000000000..95a3181af --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/assertions/sapmachine_26.txt @@ -0,0 +1,90 @@ +# metric-assertions-version 1 +# io.prometheus.jmx.test.http.ssl.SSLWithPEMCertificateTest Standalone sapmachine:26 + +match UNTYPED io_prometheus_jmx_autoIncrementing_Value * +match UNTYPED io_prometheus_jmx_customValue_Value 345.0 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda1"} 1.073741824E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_avail{source="/dev/sda2"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.8571428571428571 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.5714285714285714 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda1"} 7.516192768E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_size{source="/dev/sda2"} 1.5032385536E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda1"} 6.442450944E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_1_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E9 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda1"} 1.1811160064E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_avail{source="/dev/sda2"} 2.147483648E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda1"} 0.5416666666666666 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_pcent{source="/dev/sda2"} 0.8 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda1"} 2.5769803776E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_size{source="/dev/sda2"} 1.073741824E11 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda1"} 1.3958643712E10 +match UNTYPED io_prometheus_jmx_tabularData_Server_2_Disk_Usage_Table_used{source="/dev/sda2"} 8.589934592E10 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_ActiveSessions 2.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_Bootstraps 4.0 +match UNTYPED io_prometheus_jmx_test_PerformanceMetricsMBean_PerformanceMetrics_BootstrapsDeferred 6.0 +match UNTYPED java_lang_ClassLoading_LoadedClassCount * +match UNTYPED java_lang_ClassLoading_TotalLoadedClassCount * +match UNTYPED java_lang_ClassLoading_UnloadedClassCount * +match UNTYPED java_lang_ClassLoading_Verbose * +match UNTYPED java_lang_CodeCacheManager_Valid{type="MemoryManager"} * +match UNTYPED java_lang_Compilation_CompilationTimeMonitoringSupported * +match UNTYPED java_lang_Compilation_TotalCompilationTime * +match UNTYPED java_lang_Memory_HeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_HeapMemoryUsage_init * +match UNTYPED java_lang_Memory_HeapMemoryUsage_max * +match UNTYPED java_lang_Memory_HeapMemoryUsage_used * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_committed * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_init * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_max * +match UNTYPED java_lang_Memory_NonHeapMemoryUsage_used * +match UNTYPED java_lang_Memory_ObjectPendingFinalizationCount * +match UNTYPED java_lang_Memory_TotalGcCpuTime * +match UNTYPED java_lang_Memory_Verbose * +match UNTYPED java_lang_OperatingSystem_AvailableProcessors * +match UNTYPED java_lang_OperatingSystem_CommittedVirtualMemorySize * +match UNTYPED java_lang_OperatingSystem_CpuLoad * +match UNTYPED java_lang_OperatingSystem_FreeMemorySize * +match UNTYPED java_lang_OperatingSystem_FreePhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_FreeSwapSpaceSize * +match UNTYPED java_lang_OperatingSystem_MaxFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_OpenFileDescriptorCount * +match UNTYPED java_lang_OperatingSystem_ProcessCpuLoad * +match UNTYPED java_lang_OperatingSystem_ProcessCpuTime * +match UNTYPED java_lang_OperatingSystem_SystemCpuLoad * +match UNTYPED java_lang_OperatingSystem_SystemLoadAverage * +match UNTYPED java_lang_OperatingSystem_TotalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalPhysicalMemorySize * +match UNTYPED java_lang_OperatingSystem_TotalSwapSpaceSize * +match UNTYPED java_lang_Runtime_BootClassPathSupported * +match UNTYPED java_lang_Runtime_Pid * +match UNTYPED java_lang_Runtime_StartTime * +match UNTYPED java_lang_Runtime_Uptime * +match UNTYPED java_lang_Threading_CurrentThreadAllocatedBytes * +match UNTYPED java_lang_Threading_CurrentThreadCpuTime * +match UNTYPED java_lang_Threading_CurrentThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_CurrentThreadUserTime * +match UNTYPED java_lang_Threading_DaemonThreadCount * +match UNTYPED java_lang_Threading_ObjectMonitorUsageSupported * +match UNTYPED java_lang_Threading_PeakThreadCount * +match UNTYPED java_lang_Threading_SynchronizerUsageSupported * +match UNTYPED java_lang_Threading_ThreadAllocatedMemoryEnabled * +match UNTYPED java_lang_Threading_ThreadAllocatedMemorySupported * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringEnabled * +match UNTYPED java_lang_Threading_ThreadContentionMonitoringSupported * +match UNTYPED java_lang_Threading_ThreadCount * +match UNTYPED java_lang_Threading_ThreadCpuTimeEnabled * +match UNTYPED java_lang_Threading_ThreadCpuTimeSupported * +match UNTYPED java_lang_Threading_TotalStartedThreadCount * +match UNTYPED java_lang_Threading_TotalThreadAllocatedBytes * +match COUNTER jmx_config_reload_failure_total 0.0 +match COUNTER jmx_config_reload_success_total 0.0 +match GAUGE jmx_exporter_build_info{name="jmx_prometheus_standalone",version="1.6.0-POST"} 1.0 +match GAUGE jmx_scrape_cached_beans * +match GAUGE jmx_scrape_duration_seconds * +match GAUGE jmx_scrape_error 0.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="1",key_path="/db/query1.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_elapsedTime{key_id="2",key_path="/db/query2.xq"} 8.1583877779E10 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="1",key_path="/db/query1.xq"} 1.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_id{key_id="2",key_path="/db/query2.xq"} 2.0 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="1",key_path="/db/query1.xq"} 1.7E12 +match UNTYPED org_exist_management_exist_ProcessReport_RunningQueries_startedAtTime{key_id="2",key_path="/db/query2.xq"} 1.7E12 diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/certificate.pem b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/certificate.pem new file mode 100644 index 000000000..2f2b85e31 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/certificate.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDITCCAgmgAwIBAgIUT/XCd5SCzE5KNeHcATV4JUGh+cgwDQYJKoZIhvcNAQEL +BQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MCAXDTI2MDcxNTA1MjAyM1oYDzIxMjYw +NjIxMDUyMDIzWjAUMRIwEAYDVQQDDAlsb2NhbGhvc3QwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCxU9C6R8KwI2bCcO9NxhmitFOzKS7shsYuNNHdLPjG +190C5LFoncploMqr/9mUoE1qUFbHQ0PPK67rCFLtIe1p5USb2/wihWSRycqL8Mp0 +bRqWz6yIonAwaqLYlmZXJAqo93nOhf7WC3IxovDldzzBClBTW0MRz/OxZRBPsC1K +dsY5jhxTNk6aeeFGwioq7ebpgEooEfXqaZjxp9zsFEZynUx6thWr+vBeV3NhYzW/ +mT4wY0Xo+FwjynolAnAANayWM+M7KSB4+1733C19m6WH8Eo9+QX+VenlukWZwKZt +BrIFOsKPCxBMfwqEhvGXTagJMgxKrnld9LdzGsiePrCVAgMBAAGjaTBnMB0GA1Ud +DgQWBBQWq5zoOw5iGh25bP9bf77okpzNKDAfBgNVHSMEGDAWgBQWq5zoOw5iGh25 +bP9bf77okpzNKDAPBgNVHRMBAf8EBTADAQH/MBQGA1UdEQQNMAuCCWxvY2FsaG9z +dDANBgkqhkiG9w0BAQsFAAOCAQEAlPB/R8nOyuWnmVEcT/XcRQ2Dbv5pR9FWyKCr +JJVnXvN2xptFgfWc/K7lirPvghe5Y1LOMt8SQ4/8n/Jw6QQBtKC9Sik6wxkYG2yU +n+VptN5gTgBi5i+zekqDqhWuMCGlqqfSoaWP7RetX+bIgO2Jt3vn/L5WB6jSqqXO +/2b6SlzInyxqRMWbjNp5Ch+XllzO0uxvjpxDxm58Z4dOXwTSAq1q1MM4/G2+Eltr +UjWj6tkZNbIArHuKSQ4oWhEaPGRJ6DueqsTsSVfPrTfZXLe6MuW1Skpiaf3RYwRz +2OAovlY75L1jm+TXJNtngerCOhbq580Kh/8WJMaXbEMEhvnnsw== +-----END CERTIFICATE----- diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/exporter.sh b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/exporter.sh new file mode 100755 index 000000000..90884a7fe --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/exporter.sh @@ -0,0 +1,5 @@ +#!/bin/bash + +java \ + -Xmx512M \ + -jar /common/jmx_prometheus_standalone.jar 8888 exporter.yaml diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/exporter.yaml b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/exporter.yaml new file mode 100644 index 000000000..0025c2a56 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/exporter.yaml @@ -0,0 +1,10 @@ +httpServer: + ssl: + pem: + certificate: + filename: certificate.pem + privateKey: + filename: key.pem +hostPort: application:9999 +rules: + - pattern: ".*" diff --git a/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/key.pem b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/key.pem new file mode 100644 index 000000000..8abc2aea4 --- /dev/null +++ b/integration_test_suite/integration_tests/src/test/resources/io/prometheus/jmx/test/http/ssl/SSLWithPEMCertificateTest/mode/Standalone/key.pem @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCxU9C6R8KwI2bC +cO9NxhmitFOzKS7shsYuNNHdLPjG190C5LFoncploMqr/9mUoE1qUFbHQ0PPK67r +CFLtIe1p5USb2/wihWSRycqL8Mp0bRqWz6yIonAwaqLYlmZXJAqo93nOhf7WC3Ix +ovDldzzBClBTW0MRz/OxZRBPsC1KdsY5jhxTNk6aeeFGwioq7ebpgEooEfXqaZjx +p9zsFEZynUx6thWr+vBeV3NhYzW/mT4wY0Xo+FwjynolAnAANayWM+M7KSB4+173 +3C19m6WH8Eo9+QX+VenlukWZwKZtBrIFOsKPCxBMfwqEhvGXTagJMgxKrnld9Ldz +GsiePrCVAgMBAAECggEAJ1jfwdXWf1r7nD2O/ATu/0lgISsMPHOTWgFiZ99ovEZ9 +xfyU2Q/aLz7EefHlh7MiOmrlNoXYcAnTYFeSfwe+NHcpCCSCB+7tZ+QMy4x8f+UN +t1URhaf1mOiwhbqprsBSlTeEkazt5PTZO+ZZ6bDRjEwLktN3SGaKPlych/IhupnN +UU5YIo/dUY+lVqBmxkck2Ox+pHoN9XQfBe/FUQ9DK1ql/3ihSPU878zs+DDQLLYI +ZfY07j26mQF/yNmwrsQl/z2rfQspvac9vY82sc1IGxorY8F5GCXiD6hbSqsD6oRl +5w1Ir6XJn9grc2s2miTzWkXRmcQuJkGnqFBeQbvkAQKBgQDrRHxYf9m8Xpm9yCdf +o4J/fRQQ+/vGz4pCs5hr1oMvnX2IPN/+iGZMn73NnTa2B+sOoOUqCPDjYu+gfZso +GpdHPdm3RIw6ZPnKViKm8QO0Zae+NQ7ird/LcKSLZq2lYDDv8pkTKXbrUwXtEnBP +uCI954w0iDY7Sqk7cV7rWt2pgQKBgQDA9Dr39Aj0FommrRWSvznqm9MlHx4iKC4E +6Puh8Fdg722NoZsRXz/lG7GKWsOJTXQAhbGsZcYuPVCSs/JltdyPdw9OUGr+o6OV +vosm1cHFZfv1zVOteoSoBkbci3oefhhCYblQh3DX3+pbhnZdDPvJWTig8pF0AcO4 +8/eITbpJFQKBgQDO1gIACD7TxdOiLuK2yVjEXqGSoQZkbjfelmhNfmUNKoefi+1d +qGtPuCy1JR9hf6qezMNMZlnpfySu017iLiaLgovy/HfQKtAUnA+Q91lLcwe7SIhS +r4yOHfT7fYTyXJQJkB4V46FiGDagi1JkM70e8X+o+4u6KtSHpw9NGTDBgQKBgCPq +kjtrUmtU8qRy3WwmajpwbPog87P59K73SzeWjD0/9A2EAmBWcYdNA1w0juc04p3i +RPNJMn2S7jeQhVNHadnOmKvELlZd0WpjQHWnHl2HIUJcyPGmt6CrIm+VCtM4N33L +wPnrbCbSyEXnHostioStNexHmqmUVoFL8EyP41gNAoGBAJv7Fwe7MMj4Y0e+evCX +0hZAPzoI3nu0F8ZlfxinjgMzKx3SCmPgV+fTuJWqJliKlG4zbHgUL7gGEK3vWJOM +hKGtAx82aGYXFw2dAbADDEWfSk+BrNIyYsagC0mDxBH4j/iUHGiWY+LpiiBXOoj+ +erscIb7ZiLTw3GZFsjJ+hZNR +-----END PRIVATE KEY----- diff --git a/jmx_prometheus_common/pom.xml b/jmx_prometheus_common/pom.xml index 3e0336872..6b7795165 100644 --- a/jmx_prometheus_common/pom.xml +++ b/jmx_prometheus_common/pom.xml @@ -45,6 +45,10 @@ io.github.hakky54 ayza + + org.bouncycastle + bcpkix-jdk18on + org.apache.maven.plugins maven-shade-plugin diff --git a/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/HTTPServerFactory.java b/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/HTTPServerFactory.java index 50c7866b5..0a603af9f 100644 --- a/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/HTTPServerFactory.java +++ b/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/HTTPServerFactory.java @@ -27,6 +27,8 @@ import io.prometheus.jmx.common.authenticator.MessageDigestAuthenticator; import io.prometheus.jmx.common.authenticator.PBKDF2Authenticator; import io.prometheus.jmx.common.authenticator.PlaintextAuthenticator; +import io.prometheus.jmx.common.http.ssl.IdentityMaterial; +import io.prometheus.jmx.common.http.ssl.PemIdentityLoader; import io.prometheus.jmx.common.util.MapAccessor; import io.prometheus.jmx.common.util.YamlSupport; import io.prometheus.jmx.common.util.functions.IntegerInRange; @@ -405,6 +407,27 @@ public class HTTPServerFactory { */ private static final String HTTP_SERVER_SSL_PROPERTY_PREFIX = HTTP_SERVER_SSL + "/"; + /** Configuration key for PEM identity block. */ + private static final String HTTP_SERVER_SSL_PEM = HTTP_SERVER_SSL + "/pem"; + + /** Configuration key for PEM certificate filename. */ + private static final String HTTP_SERVER_SSL_PEM_CERTIFICATE = HTTP_SERVER_SSL_PEM + "/certificate"; + + /** Configuration key for PEM certificate filename. */ + private static final String HTTP_SERVER_SSL_PEM_CERTIFICATE_FILENAME = + HTTP_SERVER_SSL_PEM_CERTIFICATE + "/filename"; + + /** Configuration key for PEM private key block. */ + private static final String HTTP_SERVER_SSL_PEM_PRIVATE_KEY = HTTP_SERVER_SSL_PEM + "/privateKey"; + + /** Configuration key for PEM private key filename. */ + private static final String HTTP_SERVER_SSL_PEM_PRIVATE_KEY_FILENAME = + HTTP_SERVER_SSL_PEM_PRIVATE_KEY + "/filename"; + + /** Configuration key for PEM private key password. */ + private static final String HTTP_SERVER_SSL_PEM_PRIVATE_KEY_PASSWORD = + HTTP_SERVER_SSL_PEM_PRIVATE_KEY + "/password"; + /** * Path suffix for plugin/authentication class name. */ @@ -485,16 +508,6 @@ public class HTTPServerFactory { */ private static final String COMMA_SEPARATOR = ","; - /** - * Current keystore properties, updated when certificates are reloaded. - */ - private static KeyStoreProperties keyStoreProperties; - - /** - * Current truststore properties, updated when certificates are reloaded. - */ - private static KeyStoreProperties trustStoreProperties; - static { // Get the keystore type system property String keyStoreType = System.getProperty(JAVAX_NET_SSL_KEY_STORE_TYPE); @@ -1301,13 +1314,13 @@ private static int getEffectivePBKDF2KeyLengthBits(String passwordHash, int keyL public static void configureSSL(MapAccessor rootMapAccessor, HTTPServer.Builder httpServerBuilder) { if (rootMapAccessor.containsPath(HTTP_SERVER_SSL)) { try { - SSLFactory sslFactory = createSslFactory(rootMapAccessor); - Runnable sslUpdater = () -> reloadSsl(sslFactory, rootMapAccessor); + ConfiguredSslFactory configured = createSslFactory(rootMapAccessor); + Runnable sslUpdater = () -> reloadSsl(configured); // check every hour for file changes and if it has been modified update the ssl // configuration EXECUTOR_SERVICE.scheduleAtFixedRate(sslUpdater, 1, 1, TimeUnit.HOURS); - httpServerBuilder.httpsConfigurator(new HttpsConfigurator(sslFactory.getSslContext())); + httpServerBuilder.httpsConfigurator(new HttpsConfigurator(configured.sslFactory.getSslContext())); } catch (GenericException e) { String message = e.getMessage(); if (message != null && !message.trim().isEmpty()) { @@ -1325,25 +1338,36 @@ public static void configureSSL(MapAccessor rootMapAccessor, HTTPServer.Builder * Creates an SSLFactory from the configuration. * * @param rootMapAccessor the root configuration map accessor - * @return the configured SSLFactory + * @return the configured SSL factory with reload state * @throws ConfigurationException if SSL configuration is invalid */ - private static SSLFactory createSslFactory(MapAccessor rootMapAccessor) { - keyStoreProperties = getKeyStoreProperties(rootMapAccessor); - char[] keyStorePassword = keyStoreProperties.getPassword(); + private static ConfiguredSslFactory createSslFactory(MapAccessor rootMapAccessor) { + IdentityMaterial identityMaterial; + + if (rootMapAccessor.containsPath(HTTP_SERVER_SSL_PEM, Map.class)) { + // PEM mode: validate mutual exclusion + if (rootMapAccessor.containsPath(HTTP_SERVER_SSL_KEY_STORE, Map.class)) { + throw new ConfigurationException( + "/httpServer/ssl/pem and /httpServer/ssl/keyStore are mutually exclusive"); + } + if (rootMapAccessor.containsPath(HTTP_SERVER_SSL_CERTIFICATE_ALIAS)) { + throw new ConfigurationException( + "/httpServer/ssl/certificate/alias is not allowed with /httpServer/ssl/pem"); + } + identityMaterial = PemIdentityLoader.load(rootMapAccessor); + } else { + // Existing keystore mode + KeyStoreProperties keyStoreProps = getKeyStoreProperties(rootMapAccessor); + identityMaterial = new KeyStoreIdentityMaterial(keyStoreProps); + } + Optional trustProps = getTrustStoreProperties(rootMapAccessor); - SSLFactory.Builder sslFactoryBuilder = SSLFactory.builder() - .withSwappableIdentityMaterial() - .withIdentityMaterial( - keyStoreProperties.getFilename(), - keyStorePassword, - keyStorePassword, - keyStoreProperties.getType()); + SSLFactory.Builder sslFactoryBuilder = SSLFactory.builder(); + identityMaterial.applyTo(sslFactoryBuilder); if (trustProps.isPresent()) { KeyStoreProperties trustStoreProps = trustProps.get(); - trustStoreProperties = trustStoreProps; sslFactoryBuilder .withSwappableTrustMaterial() .withTrustMaterial( @@ -1354,81 +1378,93 @@ private static SSLFactory createSslFactory(MapAccessor rootMapAccessor) { getProtocolsProperties(rootMapAccessor).ifPresent(sslFactoryBuilder::withProtocols); getCiphersProperties(rootMapAccessor).ifPresent(sslFactoryBuilder::withCiphers); - return sslFactoryBuilder.build(); + SSLFactory sslFactory = sslFactoryBuilder.build(); + SslReloadState reloadState = new SslReloadState(identityMaterial, trustProps); + return new ConfiguredSslFactory(sslFactory, reloadState, rootMapAccessor); } /** - * Reloads SSL certificates if the keystore or truststore file contents have changed. + * Reloads SSL certificates if the keystore/truststore or PEM file contents have changed. * *

This method is called periodically by the scheduled executor to check for certificate - * updates. If either keystore or truststore content has changed since last load, the SSL - * context is updated. + * updates. If identity or truststore content has changed since last load, the SSL context is + * updated. * - * @param sslFactory the SSLFactory to reload - * @param rootMapAccessor the root configuration map accessor + * @param configured the configured SSL factory with reload state */ - private static void reloadSsl(SSLFactory sslFactory, MapAccessor rootMapAccessor) { - Optional currentKeyStoreContentHash = getContentHash(keyStoreProperties.getFilename()); - if (!currentKeyStoreContentHash.isPresent()) { - return; - } + private static void reloadSsl(ConfiguredSslFactory configured) { + SslReloadState state = configured.reloadState; + MapAccessor rootMapAccessor = configured.rootMapAccessor; - Optional currentTrustProps = getTrustStoreProperties(); - boolean hasCurrentTrustProps = currentTrustProps.isPresent(); - Optional currentTrustStoreContentHash = Optional.empty(); - if (hasCurrentTrustProps) { - KeyStoreProperties currentTrustStoreProps = currentTrustProps.get(); - currentTrustStoreContentHash = getContentHash(currentTrustStoreProps.getFilename()); - if (!currentTrustStoreContentHash.isPresent()) { - return; - } - } + synchronized (state.lock) { + // 1. Check identity change + boolean identityChanged = state.identityMaterial.hasChanged(); - boolean keyStoreChanged = !keyStoreProperties.getContentHash().equals(currentKeyStoreContentHash.get()); - boolean trustStoreChanged = hasCurrentTrustProps - && !currentTrustProps - .get() - .getContentHash() - .equals(currentTrustStoreContentHash.orElseThrow(IllegalStateException::new)); + // 2. Check truststore change + Optional currentTrustProps = state.trustStoreProperties; + boolean hasCurrentTrustProps = currentTrustProps.isPresent(); + boolean trustStoreChanged = false; - if (!keyStoreChanged && !trustStoreChanged) { - return; - } + if (hasCurrentTrustProps) { + KeyStoreProperties currentTrustStoreProps = currentTrustProps.get(); + Optional currentTrustStoreContentHash = getContentHash(currentTrustStoreProps.getFilename()); + if (!currentTrustStoreContentHash.isPresent()) { + return; + } + trustStoreChanged = !currentTrustStoreProps.getContentHash().equals(currentTrustStoreContentHash.get()); + } - final KeyStoreProperties keyProps; - final Optional trustProps; - try { - keyProps = keyStoreChanged ? getKeyStoreProperties(rootMapAccessor) : keyStoreProperties; - trustProps = trustStoreChanged ? getTrustStoreProperties(rootMapAccessor) : currentTrustProps; - } catch (ConfigurationException e) { - return; - } + // 3. Skip if nothing changed + if (!identityChanged && !trustStoreChanged) { + return; + } - boolean sslUpdated = false; - SSLFactory.Builder updatedSslFactory = SSLFactory.builder(); - if (keyStoreChanged) { - char[] keyPassword = keyProps.getPassword(); - updatedSslFactory.withIdentityMaterial( - keyProps.getFilename(), keyPassword, keyPassword, keyProps.getType()); - sslUpdated = true; - } + // 4. Reload identity if changed + IdentityMaterial newIdentity = state.identityMaterial; + if (identityChanged) { + try { + newIdentity = state.identityMaterial.reload(rootMapAccessor); + } catch (ConfigurationException e) { + return; + } + if (newIdentity == state.identityMaterial) { + return; + } + } - boolean hasTrustProps = trustProps.isPresent(); - if (trustStoreChanged && hasTrustProps) { - KeyStoreProperties trustStoreProps = trustProps.get(); - updatedSslFactory.withTrustMaterial( - trustStoreProps.getFilename(), trustStoreProps.getPassword(), trustStoreProps.getType()); - sslUpdated = true; - } + // 5. Reload truststore if changed + Optional newTrustProps = currentTrustProps; + if (trustStoreChanged) { + try { + newTrustProps = getTrustStoreProperties(rootMapAccessor); + } catch (ConfigurationException e) { + return; + } + } - if (sslUpdated) { + // 6. Build candidate SSLFactory + SSLFactory.Builder candidateBuilder = SSLFactory.builder(); + newIdentity.applyTo(candidateBuilder); + + if (newTrustProps.isPresent()) { + KeyStoreProperties trustStoreProps = newTrustProps.get(); + candidateBuilder + .withSwappableTrustMaterial() + .withTrustMaterial( + trustStoreProps.getFilename(), + trustStoreProps.getPassword(), + trustStoreProps.getType()); + } + + // 7. Atomic swap try { - SSLFactoryUtils.reload(sslFactory, updatedSslFactory.build()); - if (keyStoreChanged) { - keyStoreProperties = keyProps; + SSLFactoryUtils.reload(configured.sslFactory, candidateBuilder.build()); + // 8. On success, update state + if (identityChanged) { + state.identityMaterial = newIdentity; } - if (trustStoreChanged && hasTrustProps) { - trustStoreProperties = trustProps.get(); + if (trustStoreChanged && newTrustProps.isPresent()) { + state.trustStoreProperties = newTrustProps; } } catch (RuntimeException e) { // Keep using the last successfully loaded SSL material. @@ -1681,12 +1717,76 @@ private static Optional getPropertiesFromCommaSeparatedStringAsArray( } /** - * Gets the current truststore properties. - * - * @return an Optional containing truststore properties, or empty if not configured + * Holds the configured SSL factory and its associated reload state. */ - private static Optional getTrustStoreProperties() { - return Optional.ofNullable(trustStoreProperties); + private static final class ConfiguredSslFactory { + + final SSLFactory sslFactory; + final SslReloadState reloadState; + final MapAccessor rootMapAccessor; + + ConfiguredSslFactory(SSLFactory sslFactory, SslReloadState reloadState, MapAccessor rootMapAccessor) { + this.sslFactory = sslFactory; + this.reloadState = reloadState; + this.rootMapAccessor = rootMapAccessor; + } + } + + /** + * Holds mutable reload state for a configured SSL factory. + */ + private static final class SslReloadState { + + IdentityMaterial identityMaterial; + Optional trustStoreProperties; + final Object lock = new Object(); + + SslReloadState(IdentityMaterial identityMaterial, Optional trustStoreProperties) { + this.identityMaterial = identityMaterial; + this.trustStoreProperties = trustStoreProperties; + } + } + + /** + * Identity material backed by a Java keystore (JKS or PKCS12). + */ + private static final class KeyStoreIdentityMaterial implements IdentityMaterial { + + private final KeyStoreProperties keyStoreProperties; + + KeyStoreIdentityMaterial(KeyStoreProperties keyStoreProperties) { + this.keyStoreProperties = keyStoreProperties; + } + + @Override + public void applyTo(SSLFactory.Builder builder) { + char[] keyStorePassword = keyStoreProperties.getPassword(); + builder.withSwappableIdentityMaterial() + .withIdentityMaterial( + keyStoreProperties.getFilename(), + keyStorePassword, + keyStorePassword, + keyStoreProperties.getType()); + } + + @Override + public boolean hasChanged() { + Optional currentHash = getContentHash(keyStoreProperties.getFilename()); + if (!currentHash.isPresent()) { + return false; + } + return !keyStoreProperties.getContentHash().equals(currentHash.get()); + } + + @Override + public IdentityMaterial reload(MapAccessor rootMapAccessor) { + try { + KeyStoreProperties newProps = getKeyStoreProperties(rootMapAccessor); + return new KeyStoreIdentityMaterial(newProps); + } catch (ConfigurationException e) { + return this; + } + } } /** diff --git a/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/http/ssl/IdentityMaterial.java b/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/http/ssl/IdentityMaterial.java new file mode 100644 index 000000000..e632e1ba0 --- /dev/null +++ b/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/http/ssl/IdentityMaterial.java @@ -0,0 +1,56 @@ +/* + * Copyright (C) The Prometheus jmx_exporter Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.prometheus.jmx.common.http.ssl; + +import io.prometheus.jmx.common.util.MapAccessor; +import nl.altindag.ssl.SSLFactory; + +/** + * Package-private interface for applying identity material to an SSLFactory builder. + * + *

Implementations know how to apply their specific identity material (keystore or PEM) and + * detect file changes for reload. + */ +public interface IdentityMaterial { + + /** + * Applies this identity material to the SSLFactory builder. + * + *

Implementations MUST call {@code withSwappableIdentityMaterial()} before + * {@code withIdentityMaterial(...)} to enable runtime context swapping via {@code + * SSLFactoryUtils.reload()}. + * + * @param builder the SSLFactory builder to configure + */ + void applyTo(SSLFactory.Builder builder); + + /** + * Returns true if the underlying identity files have changed since last load. + * + * @return true if files changed, false if unchanged or unreadable at runtime + */ + boolean hasChanged(); + + /** + * Reloads identity material from configuration. Returns a new instance on success, or this + * same instance on failure (indicating prior identity should be retained). + * + * @param rootMapAccessor the root configuration map accessor + * @return a new IdentityMaterial on success, or this instance on failure + */ + IdentityMaterial reload(MapAccessor rootMapAccessor); +} diff --git a/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/http/ssl/PemIdentityLoader.java b/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/http/ssl/PemIdentityLoader.java new file mode 100644 index 000000000..e0e5387f0 --- /dev/null +++ b/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/http/ssl/PemIdentityLoader.java @@ -0,0 +1,327 @@ +/* + * Copyright (C) The Prometheus jmx_exporter Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.prometheus.jmx.common.http.ssl; + +import io.prometheus.jmx.common.ConfigurationException; +import io.prometheus.jmx.common.util.MapAccessor; +import io.prometheus.jmx.common.util.functions.StringIsNotBlank; +import io.prometheus.jmx.common.util.functions.ToString; +import io.prometheus.jmx.variable.VariableResolver; +import java.io.IOException; +import java.io.InputStream; +import java.io.StringReader; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.security.MessageDigest; +import java.security.NoSuchAlgorithmException; +import java.security.PrivateKey; +import java.security.SecureRandom; +import java.security.Signature; +import java.security.cert.Certificate; +import java.security.cert.X509Certificate; +import java.util.ArrayList; +import java.util.List; +import java.util.Optional; +import nl.altindag.ssl.util.CertificateUtils; +import org.bouncycastle.asn1.pkcs.PrivateKeyInfo; +import org.bouncycastle.jce.provider.BouncyCastleProvider; +import org.bouncycastle.openssl.PEMEncryptedKeyPair; +import org.bouncycastle.openssl.PEMKeyPair; +import org.bouncycastle.openssl.PEMParser; +import org.bouncycastle.openssl.jcajce.JcaPEMKeyConverter; +import org.bouncycastle.openssl.jcajce.JcePEMDecryptorProviderBuilder; +import org.bouncycastle.pkcs.PKCS8EncryptedPrivateKeyInfo; +import org.bouncycastle.pkcs.jcajce.JcePKCSPBEInputDecryptorProviderBuilder; + +/** + * Package-private static loader for PEM-based server identity. + * + *

Parses certificate chain and private key from PEM files, verifies they match, and returns a + * {@link PemIdentityMaterial}. + */ +public class PemIdentityLoader { + + private static final String PEM_CERTIFICATE_FILENAME = "/httpServer/ssl/pem/certificate/filename"; + private static final String PEM_PRIVATE_KEY_FILENAME = "/httpServer/ssl/pem/privateKey/filename"; + private static final String PEM_PRIVATE_KEY_PASSWORD = "/httpServer/ssl/pem/privateKey/password"; + + private static final int MAX_FILE_SIZE = 1024 * 1024; // 1 MB + + /** + * Loads PEM identity material from the configuration. + * + * @param rootMapAccessor the root configuration map accessor + * @return the parsed PEM identity material + * @throws ConfigurationException if the configuration is invalid or files cannot be parsed + */ + public static PemIdentityMaterial load(MapAccessor rootMapAccessor) { + // Extract certificate filename + String certFilename = rootMapAccessor + .getPath(PEM_CERTIFICATE_FILENAME) + .map(ToString.of(ConfigurationException.supplier( + "Invalid configuration for " + PEM_CERTIFICATE_FILENAME + " must be a string"))) + .map(StringIsNotBlank.of(ConfigurationException.supplier( + "Invalid configuration for " + PEM_CERTIFICATE_FILENAME + " must not be blank"))) + .orElseThrow(ConfigurationException.supplier(PEM_CERTIFICATE_FILENAME + " is a required string")); + + // Extract private key filename + String keyFilename = rootMapAccessor + .getPath(PEM_PRIVATE_KEY_FILENAME) + .map(ToString.of(ConfigurationException.supplier( + "Invalid configuration for " + PEM_PRIVATE_KEY_FILENAME + " must be a string"))) + .map(StringIsNotBlank.of(ConfigurationException.supplier( + "Invalid configuration for " + PEM_PRIVATE_KEY_FILENAME + " must not be blank"))) + .orElseThrow(ConfigurationException.supplier(PEM_PRIVATE_KEY_FILENAME + " is a required string")); + + // Extract optional password + String password = rootMapAccessor + .getPath(PEM_PRIVATE_KEY_PASSWORD) + .map(ToString.of(ConfigurationException.supplier( + "Invalid configuration for " + PEM_PRIVATE_KEY_PASSWORD + " must be a string"))) + .orElse(null); + + if (password != null) { + password = VariableResolver.resolveVariable(password); + } + + Path certPath = Paths.get(certFilename); + Path keyPath = Paths.get(keyFilename); + + // Read and parse certificate chain + Certificate[] certChain = loadCertificateChain(certPath); + + // Read and parse private key + char[] passwordChars = password != null ? password.toCharArray() : new char[0]; + PrivateKey privateKey = loadPrivateKey(keyPath, passwordChars); + + // Verify key matches leaf certificate + verifyKeyMatchesCertificate(privateKey, certChain[0]); + + // Compute content hashes + String certHash = getContentHash(certPath); + String keyHash = getContentHash(keyPath); + + return new PemIdentityMaterial(privateKey, certChain, passwordChars, certPath, keyPath, certHash, keyHash); + } + + private static Certificate[] loadCertificateChain(Path certPath) { + try { + byte[] certBytes = readBoundedFile(certPath); + if (certBytes.length == 0) { + throw new ConfigurationException("PEM certificate file is empty: " + certPath); + } + + List certificates = CertificateUtils.loadCertificate(certPath); + if (certificates.isEmpty()) { + throw new ConfigurationException("No certificates found in: " + certPath); + } + + return certificates.toArray(new Certificate[0]); + } catch (ConfigurationException e) { + throw e; + } catch (Exception e) { + throw new ConfigurationException("Unable to load PEM certificate from: " + certPath, e); + } + } + + private static PrivateKey loadPrivateKey(Path keyPath, char[] password) { + byte[] keyBytes; + try { + keyBytes = readBoundedFile(keyPath); + } catch (IOException e) { + throw new ConfigurationException("Unable to read PEM private key file: " + keyPath, e); + } + + if (keyBytes.length == 0) { + throw new ConfigurationException("PEM private key file is empty: " + keyPath); + } + + String keyContent = new String(keyBytes); + + try (PEMParser pemParser = new PEMParser(new StringReader(keyContent))) { + List pemObjects = new ArrayList<>(); + Object obj; + while ((obj = pemParser.readObject()) != null) { + pemObjects.add(obj); + } + + PrivateKey privateKey = null; + boolean hasEncryptedKey = false; + + JcaPEMKeyConverter converter = new JcaPEMKeyConverter(); + BouncyCastleProvider bcProvider = new BouncyCastleProvider(); + + for (Object pemObj : pemObjects) { + if (pemObj instanceof PrivateKeyInfo) { + if (privateKey != null) { + throw new ConfigurationException("Multiple private keys found in: " + keyPath); + } + privateKey = converter.getPrivateKey((PrivateKeyInfo) pemObj); + } else if (pemObj instanceof PEMKeyPair) { + if (privateKey != null) { + throw new ConfigurationException("Multiple private keys found in: " + keyPath); + } + privateKey = converter.getKeyPair((PEMKeyPair) pemObj).getPrivate(); + } else if (pemObj instanceof PKCS8EncryptedPrivateKeyInfo) { + if (privateKey != null) { + throw new ConfigurationException("Multiple private keys found in: " + keyPath); + } + hasEncryptedKey = true; + if (password.length == 0) { + throw new ConfigurationException( + "Private key is encrypted but no password was configured for: " + keyPath); + } + try { + PKCS8EncryptedPrivateKeyInfo encryptedInfo = (PKCS8EncryptedPrivateKeyInfo) pemObj; + PrivateKeyInfo keyInfo = + encryptedInfo.decryptPrivateKeyInfo(new JcePKCSPBEInputDecryptorProviderBuilder() + .setProvider(bcProvider) + .build(password)); + privateKey = converter.getPrivateKey(keyInfo); + } catch (Exception e) { + throw new ConfigurationException("Unable to decrypt PEM private key from: " + keyPath); + } + } else if (pemObj instanceof PEMEncryptedKeyPair) { + if (privateKey != null) { + throw new ConfigurationException("Multiple private keys found in: " + keyPath); + } + hasEncryptedKey = true; + if (password.length == 0) { + throw new ConfigurationException( + "Private key is encrypted but no password was configured for: " + keyPath); + } + try { + PEMEncryptedKeyPair encryptedKeyPair = (PEMEncryptedKeyPair) pemObj; + PEMKeyPair keyPair = encryptedKeyPair.decryptKeyPair(new JcePEMDecryptorProviderBuilder() + .setProvider(bcProvider) + .build(password)); + privateKey = converter.getKeyPair(keyPair).getPrivate(); + } catch (Exception e) { + throw new ConfigurationException("Unable to decrypt PEM private key from: " + keyPath); + } + } + } + + if (privateKey == null) { + throw new ConfigurationException("No private key found in: " + keyPath); + } + + return privateKey; + } catch (ConfigurationException e) { + throw e; + } catch (Exception e) { + throw new ConfigurationException("Unable to parse PEM private key from: " + keyPath, e); + } + } + + private static void verifyKeyMatchesCertificate(PrivateKey privateKey, Certificate certificate) { + try { + X509Certificate x509Cert = (X509Certificate) certificate; + String keyAlgorithm = privateKey.getAlgorithm(); + + String sigAlg; + if ("RSA".equals(keyAlgorithm)) { + sigAlg = "SHA256withRSA"; + } else if ("EC".equals(keyAlgorithm)) { + sigAlg = "SHA256withECDSA"; + } else if ("DSA".equals(keyAlgorithm)) { + sigAlg = "SHA256withDSA"; + } else { + throw new ConfigurationException("Unsupported private key algorithm: " + keyAlgorithm); + } + + byte[] challenge = new byte[32]; + new SecureRandom().nextBytes(challenge); + + Signature sig = Signature.getInstance(sigAlg); + sig.initSign(privateKey); + sig.update(challenge); + byte[] signatureBytes = sig.sign(); + + Signature verifier = Signature.getInstance(sigAlg); + verifier.initVerify(x509Cert.getPublicKey()); + verifier.update(challenge); + + if (!verifier.verify(signatureBytes)) { + throw new ConfigurationException("Private key does not match the leaf certificate"); + } + } catch (ConfigurationException e) { + throw e; + } catch (Exception e) { + throw new ConfigurationException("Unable to verify private key matches certificate", e); + } + } + + /** + * Computes the SHA-256 content hash of a file. + * + * @param path the file path + * @return the SHA-256 content hash as hex string + */ + static String getContentHash(Path path) { + try { + MessageDigest messageDigest = MessageDigest.getInstance("SHA-256"); + byte[] buffer = new byte[8192]; + + try (InputStream inputStream = Files.newInputStream(path)) { + int bytesRead; + while ((bytesRead = inputStream.read(buffer)) != -1) { + messageDigest.update(buffer, 0, bytesRead); + } + } + + return toHex(messageDigest.digest()); + } catch (IOException e) { + throw new ConfigurationException("Unable to read PEM file: " + path, e); + } catch (NoSuchAlgorithmException e) { + throw new ConfigurationException("Unable to compute SHA-256 hash", e); + } + } + + /** + * Computes the SHA-256 content hash of a file for runtime reload checks. + * + *

Returns empty if the file cannot be read (tolerant for runtime checks). + * + * @param path the file path + * @return the hash, or empty if unreadable + */ + public static Optional getContentHashOptional(Path path) { + try { + return Optional.of(getContentHash(path)); + } catch (ConfigurationException e) { + return Optional.empty(); + } + } + + private static byte[] readBoundedFile(Path path) throws IOException { + byte[] bytes = Files.readAllBytes(path); + if (bytes.length > MAX_FILE_SIZE) { + throw new ConfigurationException("PEM file exceeds maximum size of 1MB: " + path); + } + return bytes; + } + + private static String toHex(byte[] bytes) { + StringBuilder builder = new StringBuilder(bytes.length * 2); + for (byte value : bytes) { + builder.append(String.format("%02x", value)); + } + return builder.toString(); + } +} diff --git a/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/http/ssl/PemIdentityMaterial.java b/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/http/ssl/PemIdentityMaterial.java new file mode 100644 index 000000000..935717026 --- /dev/null +++ b/jmx_prometheus_common/src/main/java/io/prometheus/jmx/common/http/ssl/PemIdentityMaterial.java @@ -0,0 +1,128 @@ +/* + * Copyright (C) The Prometheus jmx_exporter Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.prometheus.jmx.common.http.ssl; + +import io.prometheus.jmx.common.ConfigurationException; +import io.prometheus.jmx.common.util.MapAccessor; +import java.nio.file.Path; +import java.security.PrivateKey; +import java.security.cert.Certificate; +import java.util.Optional; +import nl.altindag.ssl.SSLFactory; + +/** + * Package-private implementation of {@link IdentityMaterial} for PEM-based server identity. + * + *

Wraps a parsed PEM certificate chain and private key, applies them to an SSLFactory builder, + * and detects file changes for reload. + */ +class PemIdentityMaterial implements IdentityMaterial { + + private final PrivateKey privateKey; + private final Certificate[] certificateChain; + private final char[] keyPassword; + private final Path certificatePath; + private final Path privateKeyPath; + private final String certificateContentHash; + private final String privateKeyContentHash; + + PemIdentityMaterial( + PrivateKey privateKey, + Certificate[] certificateChain, + char[] keyPassword, + Path certificatePath, + Path privateKeyPath, + String certificateContentHash, + String privateKeyContentHash) { + this.privateKey = privateKey; + this.certificateChain = certificateChain; + this.keyPassword = keyPassword; + this.certificatePath = certificatePath; + this.privateKeyPath = privateKeyPath; + this.certificateContentHash = certificateContentHash; + this.privateKeyContentHash = privateKeyContentHash; + } + + @Override + public void applyTo(SSLFactory.Builder builder) { + builder.withSwappableIdentityMaterial().withIdentityMaterial(privateKey, keyPassword, certificateChain); + } + + @Override + public boolean hasChanged() { + Optional currentCertHash = PemIdentityLoader.getContentHashOptional(certificatePath); + if (!currentCertHash.isPresent()) { + return false; + } + + Optional currentKeyHash = PemIdentityLoader.getContentHashOptional(privateKeyPath); + if (!currentKeyHash.isPresent()) { + return false; + } + + return !certificateContentHash.equals(currentCertHash.get()) + || !privateKeyContentHash.equals(currentKeyHash.get()); + } + + @Override + public IdentityMaterial reload(MapAccessor rootMapAccessor) { + try { + PemIdentityMaterial newMaterial = PemIdentityLoader.load(rootMapAccessor); + + // Detect torn files: re-check hashes after parsing + Optional postParseCertHash = PemIdentityLoader.getContentHashOptional(certificatePath); + Optional postParseKeyHash = PemIdentityLoader.getContentHashOptional(privateKeyPath); + + if (!postParseCertHash.isPresent() || !postParseKeyHash.isPresent()) { + return this; + } + + if (!postParseCertHash.get().equals(newMaterial.certificateContentHash) + || !postParseKeyHash.get().equals(newMaterial.privateKeyContentHash)) { + return this; + } + + return newMaterial; + } catch (ConfigurationException e) { + return this; + } + } + + PrivateKey getPrivateKey() { + return privateKey; + } + + Certificate[] getCertificateChain() { + return certificateChain; + } + + Path getCertificatePath() { + return certificatePath; + } + + Path getPrivateKeyPath() { + return privateKeyPath; + } + + String getCertificateContentHash() { + return certificateContentHash; + } + + String getPrivateKeyContentHash() { + return privateKeyContentHash; + } +} diff --git a/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/HTTPServerFactoryInnerClassesTest.java b/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/HTTPServerFactoryInnerClassesTest.java index c244513a8..e399feb9f 100644 --- a/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/HTTPServerFactoryInnerClassesTest.java +++ b/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/HTTPServerFactoryInnerClassesTest.java @@ -18,13 +18,19 @@ import static org.assertj.core.api.Assertions.assertThat; +import io.prometheus.jmx.common.http.ssl.IdentityMaterial; +import io.prometheus.jmx.common.util.MapAccessor; import java.lang.reflect.Constructor; +import java.lang.reflect.Field; import java.lang.reflect.Method; import java.nio.file.Paths; +import java.util.HashMap; +import java.util.Map; import java.util.Optional; import java.util.concurrent.SynchronousQueue; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUnit; +import nl.altindag.ssl.SSLFactory; import org.junit.jupiter.api.Nested; import org.junit.jupiter.api.Test; @@ -110,4 +116,97 @@ void privateConstructorCannotBeInstantiated() throws Exception { assertThat(instance).isNotNull(); } } + + @Nested + class KeyStoreIdentityMaterialTests { + + @Test + void constructorAcceptsKeyStoreProperties() throws Exception { + Class keyStorePropertiesClass = + Class.forName("io.prometheus.jmx.common.HTTPServerFactory$KeyStoreProperties"); + Constructor keyStoreConstructor = keyStorePropertiesClass.getDeclaredConstructor( + String.class, String.class, char[].class, String.class, String.class); + keyStoreConstructor.setAccessible(true); + Object keyStoreProps = + keyStoreConstructor.newInstance("/path/to/keystore", "hash", "pass".toCharArray(), "JKS", "alias"); + + Class identityMaterialClass = + Class.forName("io.prometheus.jmx.common.HTTPServerFactory$KeyStoreIdentityMaterial"); + Constructor identityMaterialConstructor = + identityMaterialClass.getDeclaredConstructor(keyStorePropertiesClass); + identityMaterialConstructor.setAccessible(true); + Object identityMaterial = identityMaterialConstructor.newInstance(keyStoreProps); + + assertThat(identityMaterial).isNotNull(); + assertThat(identityMaterial).isInstanceOf(IdentityMaterial.class); + } + } + + @Nested + class SslReloadStateTests { + + @Test + void constructorAcceptsIdentityMaterialAndTrustStoreProperties() throws Exception { + Class sslReloadStateClass = Class.forName("io.prometheus.jmx.common.HTTPServerFactory$SslReloadState"); + Constructor constructor = + sslReloadStateClass.getDeclaredConstructor(IdentityMaterial.class, Optional.class); + constructor.setAccessible(true); + + Object reloadState = constructor.newInstance(null, Optional.empty()); + + Field identityMaterialField = sslReloadStateClass.getDeclaredField("identityMaterial"); + identityMaterialField.setAccessible(true); + assertThat(identityMaterialField.get(reloadState)).isNull(); + + Field trustStorePropertiesField = sslReloadStateClass.getDeclaredField("trustStoreProperties"); + trustStorePropertiesField.setAccessible(true); + assertThat((Optional) trustStorePropertiesField.get(reloadState)).isEmpty(); + } + + @Test + void lockFieldIsPresent() throws Exception { + Class sslReloadStateClass = Class.forName("io.prometheus.jmx.common.HTTPServerFactory$SslReloadState"); + Field lockField = sslReloadStateClass.getDeclaredField("lock"); + lockField.setAccessible(true); + + assertThat(lockField.getType()).isEqualTo(Object.class); + } + } + + @Nested + class ConfiguredSslFactoryTests { + + @Test + void constructorAcceptsAllFields() throws Exception { + Class sslReloadStateClass = Class.forName("io.prometheus.jmx.common.HTTPServerFactory$SslReloadState"); + Constructor reloadStateConstructor = + sslReloadStateClass.getDeclaredConstructor(IdentityMaterial.class, Optional.class); + reloadStateConstructor.setAccessible(true); + Object reloadState = reloadStateConstructor.newInstance(null, Optional.empty()); + + Map config = new HashMap<>(); + config.put("httpServer", new HashMap<>()); + MapAccessor rootMapAccessor = MapAccessor.of(config); + + Class configuredSslFactoryClass = + Class.forName("io.prometheus.jmx.common.HTTPServerFactory$ConfiguredSslFactory"); + Constructor configuredConstructor = configuredSslFactoryClass.getDeclaredConstructor( + SSLFactory.class, sslReloadStateClass, MapAccessor.class); + configuredConstructor.setAccessible(true); + + Object configured = configuredConstructor.newInstance(null, reloadState, rootMapAccessor); + + Field sslFactoryField = configuredSslFactoryClass.getDeclaredField("sslFactory"); + sslFactoryField.setAccessible(true); + assertThat(sslFactoryField.get(configured)).isNull(); + + Field reloadStateField = configuredSslFactoryClass.getDeclaredField("reloadState"); + reloadStateField.setAccessible(true); + assertThat(reloadStateField.get(configured)).isSameAs(reloadState); + + Field rootMapAccessorField = configuredSslFactoryClass.getDeclaredField("rootMapAccessor"); + rootMapAccessorField.setAccessible(true); + assertThat(rootMapAccessorField.get(configured)).isSameAs(rootMapAccessor); + } + } } diff --git a/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/HTTPServerFactorySslReloadTest.java b/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/HTTPServerFactorySslReloadTest.java index 80f9ce52b..52ec6bdfe 100644 --- a/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/HTTPServerFactorySslReloadTest.java +++ b/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/HTTPServerFactorySslReloadTest.java @@ -24,9 +24,11 @@ import java.nio.charset.StandardCharsets; import java.nio.file.Files; import java.nio.file.Path; +import java.nio.file.Paths; import java.nio.file.StandardOpenOption; import java.util.HashMap; import java.util.Map; +import java.util.Optional; import nl.altindag.ssl.SSLFactory; import org.junit.jupiter.api.Test; import org.junit.jupiter.api.io.TempDir; @@ -83,15 +85,145 @@ void reloadSslSkipsReloadWhenRuntimeKeyStoreCannotBeRead() throws Exception { Object keyStoreProperties = invokePrivateMethod("getKeyStoreProperties", new Class[] {MapAccessor.class}, rootMapAccessor); - Field keyStorePropertiesField = HTTPServerFactory.class.getDeclaredField("keyStoreProperties"); - keyStorePropertiesField.setAccessible(true); - keyStorePropertiesField.set(null, keyStoreProperties); + + // Create KeyStoreIdentityMaterial wrapping the keyStoreProperties + Class identityMaterialClass = + Class.forName("io.prometheus.jmx.common.HTTPServerFactory$KeyStoreIdentityMaterial"); + Class keyStorePropertiesClass = + Class.forName("io.prometheus.jmx.common.HTTPServerFactory$KeyStoreProperties"); + java.lang.reflect.Constructor identityMaterialConstructor = + identityMaterialClass.getDeclaredConstructor(keyStorePropertiesClass); + identityMaterialConstructor.setAccessible(true); + Object identityMaterial = identityMaterialConstructor.newInstance(keyStoreProperties); + + // Create SslReloadState + Class sslReloadStateClass = Class.forName("io.prometheus.jmx.common.HTTPServerFactory$SslReloadState"); + java.lang.reflect.Constructor reloadStateConstructor = sslReloadStateClass.getDeclaredConstructor( + io.prometheus.jmx.common.http.ssl.IdentityMaterial.class, Optional.class); + reloadStateConstructor.setAccessible(true); + Object reloadState = reloadStateConstructor.newInstance(identityMaterial, Optional.empty()); + + // Create ConfiguredSslFactory + Class configuredSslFactoryClass = + Class.forName("io.prometheus.jmx.common.HTTPServerFactory$ConfiguredSslFactory"); + java.lang.reflect.Constructor configuredConstructor = configuredSslFactoryClass.getDeclaredConstructor( + SSLFactory.class, sslReloadStateClass, MapAccessor.class); + configuredConstructor.setAccessible(true); + Object configured = configuredConstructor.newInstance(null, reloadState, rootMapAccessor); Files.delete(keyStore); - invokePrivateMethod("reloadSsl", new Class[] {SSLFactory.class, MapAccessor.class}, null, rootMapAccessor); + invokePrivateMethod("reloadSsl", new Class[] {configuredSslFactoryClass}, configured); + + // Verify the identity material was not changed (same instance retained) + Field identityMaterialField = sslReloadStateClass.getDeclaredField("identityMaterial"); + identityMaterialField.setAccessible(true); + assertThat(identityMaterialField.get(reloadState)).isSameAs(identityMaterial); + } + + @Test + void reloadSslPemNoChangeSkipsReload() throws Exception { + Path certFile = tempDir.resolve("cert.pem"); + Path keyFile = tempDir.resolve("key.pem"); + copyTestResource("test-cert.pem", certFile); + copyTestResource("test-key-pkcs8.pem", keyFile); + + MapAccessor config = createPemConfig(certFile, keyFile); + + io.prometheus.jmx.common.http.ssl.IdentityMaterial material = + io.prometheus.jmx.common.http.ssl.PemIdentityLoader.load(config); + + Class sslReloadStateClass = Class.forName("io.prometheus.jmx.common.HTTPServerFactory$SslReloadState"); + java.lang.reflect.Constructor reloadStateConstructor = sslReloadStateClass.getDeclaredConstructor( + io.prometheus.jmx.common.http.ssl.IdentityMaterial.class, Optional.class); + reloadStateConstructor.setAccessible(true); + Object reloadState = reloadStateConstructor.newInstance(material, Optional.empty()); + + Class configuredSslFactoryClass = + Class.forName("io.prometheus.jmx.common.HTTPServerFactory$ConfiguredSslFactory"); + java.lang.reflect.Constructor configuredConstructor = configuredSslFactoryClass.getDeclaredConstructor( + SSLFactory.class, sslReloadStateClass, MapAccessor.class); + configuredConstructor.setAccessible(true); + Object configured = configuredConstructor.newInstance(null, reloadState, config); + + invokePrivateMethod("reloadSsl", new Class[] {configuredSslFactoryClass}, configured); - assertThat(keyStorePropertiesField.get(null)).isSameAs(keyStoreProperties); + Field identityMaterialField = sslReloadStateClass.getDeclaredField("identityMaterial"); + identityMaterialField.setAccessible(true); + assertThat(identityMaterialField.get(reloadState)).isSameAs(material); + } + + @Test + void reloadSslPemIdentityChangedTriggersReload() throws Exception { + Path certFile = tempDir.resolve("cert.pem"); + Path keyFile = tempDir.resolve("key.pem"); + copyTestResource("test-cert.pem", certFile); + copyTestResource("test-key-pkcs8.pem", keyFile); + + MapAccessor config = createPemConfig(certFile, keyFile); + + io.prometheus.jmx.common.http.ssl.IdentityMaterial material = + io.prometheus.jmx.common.http.ssl.PemIdentityLoader.load(config); + + Class sslReloadStateClass = Class.forName("io.prometheus.jmx.common.HTTPServerFactory$SslReloadState"); + java.lang.reflect.Constructor reloadStateConstructor = sslReloadStateClass.getDeclaredConstructor( + io.prometheus.jmx.common.http.ssl.IdentityMaterial.class, Optional.class); + reloadStateConstructor.setAccessible(true); + Object reloadState = reloadStateConstructor.newInstance(material, Optional.empty()); + + Class configuredSslFactoryClass = + Class.forName("io.prometheus.jmx.common.HTTPServerFactory$ConfiguredSslFactory"); + java.lang.reflect.Constructor configuredConstructor = configuredSslFactoryClass.getDeclaredConstructor( + SSLFactory.class, sslReloadStateClass, MapAccessor.class); + configuredConstructor.setAccessible(true); + Object configured = configuredConstructor.newInstance(null, reloadState, config); + + // Modify key file content to trigger change detection + write(keyFile, "modified key content"); + + invokePrivateMethod("reloadSsl", new Class[] {configuredSslFactoryClass}, configured); + + // Identity material should be different since file was changed and reload should have failed + // (invalid content), so prior identity should be retained + Field identityMaterialField = sslReloadStateClass.getDeclaredField("identityMaterial"); + identityMaterialField.setAccessible(true); + assertThat(identityMaterialField.get(reloadState)).isSameAs(material); + } + + @Test + void reloadSslPemRetainsPriorOnFileDisappears() throws Exception { + Path certFile = tempDir.resolve("cert.pem"); + Path keyFile = tempDir.resolve("key.pem"); + copyTestResource("test-cert.pem", certFile); + copyTestResource("test-key-pkcs8.pem", keyFile); + + MapAccessor config = createPemConfig(certFile, keyFile); + + io.prometheus.jmx.common.http.ssl.IdentityMaterial material = + io.prometheus.jmx.common.http.ssl.PemIdentityLoader.load(config); + + Class sslReloadStateClass = Class.forName("io.prometheus.jmx.common.HTTPServerFactory$SslReloadState"); + java.lang.reflect.Constructor reloadStateConstructor = sslReloadStateClass.getDeclaredConstructor( + io.prometheus.jmx.common.http.ssl.IdentityMaterial.class, Optional.class); + reloadStateConstructor.setAccessible(true); + Object reloadState = reloadStateConstructor.newInstance(material, Optional.empty()); + + Class configuredSslFactoryClass = + Class.forName("io.prometheus.jmx.common.HTTPServerFactory$ConfiguredSslFactory"); + java.lang.reflect.Constructor configuredConstructor = configuredSslFactoryClass.getDeclaredConstructor( + SSLFactory.class, sslReloadStateClass, MapAccessor.class); + configuredConstructor.setAccessible(true); + Object configured = configuredConstructor.newInstance(null, reloadState, config); + + // Delete key file to make it unreadable + Files.delete(keyFile); + + invokePrivateMethod("reloadSsl", new Class[] {configuredSslFactoryClass}, configured); + + // Identity material should be retained (same instance) since file is missing + Field identityMaterialField = sslReloadStateClass.getDeclaredField("identityMaterial"); + identityMaterialField.setAccessible(true); + assertThat(identityMaterialField.get(reloadState)).isSameAs(material); } private static Object invokePrivateMethod(String methodName, Class[] parameterTypes, Object... args) @@ -108,4 +240,32 @@ private static void write(Path path, String value) throws Exception { StandardOpenOption.CREATE, StandardOpenOption.TRUNCATE_EXISTING); } + + private static void copyTestResource(String resourceName, Path target) throws Exception { + Path source = Paths.get("src/test/resources/io/prometheus/jmx/common/http/ssl/", resourceName); + Files.copy(source, target); + } + + private static MapAccessor createPemConfig(Path certPath, Path keyPath) { + Map certConfig = new HashMap<>(); + certConfig.put("filename", certPath.toString()); + + Map keyConfig = new HashMap<>(); + keyConfig.put("filename", keyPath.toString()); + + Map pemConfig = new HashMap<>(); + pemConfig.put("certificate", certConfig); + pemConfig.put("privateKey", keyConfig); + + Map sslConfig = new HashMap<>(); + sslConfig.put("pem", pemConfig); + + Map httpServerConfig = new HashMap<>(); + httpServerConfig.put("ssl", sslConfig); + + Map config = new HashMap<>(); + config.put("httpServer", httpServerConfig); + + return MapAccessor.of(config); + } } diff --git a/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/http/HTTPServerFactorySSLTest.java b/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/http/HTTPServerFactorySSLTest.java index b40b58813..f2c36a641 100644 --- a/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/http/HTTPServerFactorySSLTest.java +++ b/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/http/HTTPServerFactorySSLTest.java @@ -630,6 +630,109 @@ void defaultThreadFactoryMethod() throws Exception { assertThat(factory).isNotNull(); } + @Test + void rejectsExplicitPemAndKeyStore() throws Exception { + File config = new File(temporaryFolder, "pem_and_keystore.yaml"); + try (PrintWriter writer = new PrintWriter(config)) { + writer.println("httpServer:"); + writer.println(" ssl:"); + writer.println(" pem:"); + writer.println(" certificate:"); + writer.println(" filename: cert.pem"); + writer.println(" privateKey:"); + writer.println(" filename: key.pem"); + writer.println(" keyStore:"); + writer.println(" type: PKCS12"); + writer.println(" filename: keystore.pkcs12"); + writer.println(" password: changeit"); + writer.println(" certificate:"); + writer.println(" alias: localhost"); + writer.println("hostPort: application:9999"); + writer.println("rules:"); + writer.println(" - pattern: \".*\""); + } + + assertThatExceptionOfType(ConfigurationException.class) + .isThrownBy(() -> httpServer = startServer(config)) + .withMessageContaining("mutually exclusive") + .withMessageContaining("/httpServer/ssl/pem") + .withMessageContaining("/httpServer/ssl/keyStore"); + } + + @Test + void rejectsCertificateAliasInPemConfig() throws Exception { + File config = new File(temporaryFolder, "pem_with_alias.yaml"); + try (PrintWriter writer = new PrintWriter(config)) { + writer.println("httpServer:"); + writer.println(" ssl:"); + writer.println(" pem:"); + writer.println(" certificate:"); + writer.println(" filename: cert.pem"); + writer.println(" privateKey:"); + writer.println(" filename: key.pem"); + writer.println(" certificate:"); + writer.println(" alias: localhost"); + writer.println("hostPort: application:9999"); + writer.println("rules:"); + writer.println(" - pattern: \".*\""); + } + + assertThatExceptionOfType(ConfigurationException.class) + .isThrownBy(() -> httpServer = startServer(config)) + .withMessageContaining("not allowed with /httpServer/ssl/pem") + .withMessageContaining("/httpServer/ssl/certificate/alias"); + } + + @Test + void ignoresKeyStoreSystemPropsInPemMode() throws Exception { + // PEM mode should proceed even if javax.net.ssl.keyStore is set as ambient property + // The error should be about the PEM files not existing, not about keystore config + File certFile = new File(temporaryFolder, "cert.pem"); + File keyFile = new File(temporaryFolder, "key.pem"); + + // Write invalid PEM content so we get a predictable error about PEM parsing + try (PrintWriter writer = new PrintWriter(certFile)) { + writer.println("-----BEGIN CERTIFICATE-----"); + writer.println("INVALID"); + writer.println("-----END CERTIFICATE-----"); + } + try (PrintWriter writer = new PrintWriter(keyFile)) { + writer.println("-----BEGIN PRIVATE KEY-----"); + writer.println("INVALID"); + writer.println("-----END PRIVATE KEY-----"); + } + + File config = new File(temporaryFolder, "pem_with_sysprop.yaml"); + try (PrintWriter writer = new PrintWriter(config)) { + writer.println("httpServer:"); + writer.println(" ssl:"); + writer.println(" pem:"); + writer.println(" certificate:"); + writer.println(" filename: " + certFile.getAbsolutePath()); + writer.println(" privateKey:"); + writer.println(" filename: " + keyFile.getAbsolutePath()); + writer.println("hostPort: application:9999"); + writer.println("rules:"); + writer.println(" - pattern: \".*\""); + } + + String previousValue = System.getProperty("javax.net.ssl.keyStore"); + try { + System.setProperty("javax.net.ssl.keyStore", "/some/keystore"); + // Should throw about PEM certificate parsing, not about keystore configuration. + // This proves the ambient javax.net.ssl.keyStore system property is ignored. + assertThatExceptionOfType(ConfigurationException.class) + .isThrownBy(() -> httpServer = startServer(config)) + .withMessageContaining("cert.pem"); + } finally { + if (previousValue == null) { + System.clearProperty("javax.net.ssl.keyStore"); + } else { + System.setProperty("javax.net.ssl.keyStore", previousValue); + } + } + } + @Test void blockingRejectedExecutionHandlerOnNonShutdownExecutor() throws Exception { Class clazz = Class.forName("io.prometheus.jmx.common.util.BlockingRejectedExecutionHandler"); diff --git a/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/http/ssl/PemIdentityLoaderTest.java b/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/http/ssl/PemIdentityLoaderTest.java new file mode 100644 index 000000000..1aa139e54 --- /dev/null +++ b/jmx_prometheus_common/src/test/java/io/prometheus/jmx/common/http/ssl/PemIdentityLoaderTest.java @@ -0,0 +1,555 @@ +/* + * Copyright (C) The Prometheus jmx_exporter Authors + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * https://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package io.prometheus.jmx.common.http.ssl; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.assertj.core.api.Assertions.assertThatThrownBy; + +import io.prometheus.jmx.common.ConfigurationException; +import io.prometheus.jmx.common.util.MapAccessor; +import java.nio.charset.StandardCharsets; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.security.interfaces.RSAPrivateKey; +import java.util.HashMap; +import java.util.Map; +import org.junit.jupiter.api.Test; +import org.junit.jupiter.api.io.TempDir; + +class PemIdentityLoaderTest { + + private static final String TEST_RESOURCES = "src/test/resources/io/prometheus/jmx/common/http/ssl/"; + + @TempDir + Path tempDir; + + // --- Happy path tests --- + + @Test + void loadsPkcs8RsaKey() throws Exception { + MapAccessor config = createConfig("test-cert.pem", "test-key-pkcs8.pem", null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + assertThat(material.getPrivateKey()).isInstanceOf(RSAPrivateKey.class); + assertThat(material.getCertificateChain()).hasSize(1); + assertThat(material.getCertificateContentHash()).isNotBlank(); + assertThat(material.getPrivateKeyContentHash()).isNotBlank(); + } + + @Test + void loadsPkcs1RsaKey() throws Exception { + MapAccessor config = createConfig("test-cert.pem", "test-key-pkcs1.pem", null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + assertThat(material.getPrivateKey()).isInstanceOf(RSAPrivateKey.class); + assertThat(material.getCertificateChain()).hasSize(1); + } + + @Test + void loadsEcPkcs8Key() throws Exception { + MapAccessor config = createConfig("test-cert-ec.pem", "test-key-ec-pkcs8.pem", null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + assertThat(material.getPrivateKey()).isNotNull(); + assertThat(material.getPrivateKey().getAlgorithm()).isEqualTo("EC"); + assertThat(material.getCertificateChain()).hasSize(1); + } + + @Test + void loadsEncryptedPkcs8Key() throws Exception { + MapAccessor config = createConfig("test-cert.pem", "test-key-encrypted-pkcs8.pem", "testpassword"); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + assertThat(material.getPrivateKey()).isInstanceOf(RSAPrivateKey.class); + } + + @Test + void loadsEncryptedPkcs1Key() throws Exception { + MapAccessor config = createConfig("test-cert.pem", "test-key-pkcs1-encrypted.pem", "testpassword"); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + assertThat(material.getPrivateKey()).isInstanceOf(RSAPrivateKey.class); + assertThat(material.getCertificateChain()).hasSize(1); + } + + @Test + void handlesCrLfLineEndings() throws Exception { + String certContent = + new String(Files.readAllBytes(Paths.get(TEST_RESOURCES + "test-cert.pem")), StandardCharsets.UTF_8); + String keyContent = new String( + Files.readAllBytes(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem")), StandardCharsets.UTF_8); + + // Convert LF to CRLF + certContent = certContent.replace("\n", "\r\n"); + keyContent = keyContent.replace("\n", "\r\n"); + + Path certPath = tempDir.resolve("cert-crlf.pem"); + Path keyPath = tempDir.resolve("key-crlf.pem"); + Files.write(certPath, certContent.getBytes(StandardCharsets.UTF_8)); + Files.write(keyPath, keyContent.getBytes(StandardCharsets.UTF_8)); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + assertThat(material.getPrivateKey()).isNotNull(); + } + + // --- Validation/error tests --- + + @Test + void rejectsMissingCertificateFilename() { + Map pemConfig = new HashMap<>(); + Map privateKeyConfig = new HashMap<>(); + privateKeyConfig.put("filename", "key.pem"); + pemConfig.put("privateKey", privateKeyConfig); + + Map config = new HashMap<>(); + config.put("httpServer", createSslMap(pemConfig)); + + assertThatThrownBy(() -> PemIdentityLoader.load(MapAccessor.of(config))) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("/httpServer/ssl/pem/certificate/filename"); + } + + @Test + void rejectsBlankCertificateFilename() { + Map certConfig = new HashMap<>(); + certConfig.put("filename", ""); + Map pemConfig = new HashMap<>(); + pemConfig.put("certificate", certConfig); + Map privateKeyConfig = new HashMap<>(); + privateKeyConfig.put("filename", "key.pem"); + pemConfig.put("privateKey", privateKeyConfig); + + Map config = new HashMap<>(); + config.put("httpServer", createSslMap(pemConfig)); + + assertThatThrownBy(() -> PemIdentityLoader.load(MapAccessor.of(config))) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("/httpServer/ssl/pem/certificate/filename"); + } + + @Test + void rejectsNonStringCertificateFilename() { + Map certConfig = new HashMap<>(); + certConfig.put("filename", 123); + Map pemConfig = new HashMap<>(); + pemConfig.put("certificate", certConfig); + Map privateKeyConfig = new HashMap<>(); + privateKeyConfig.put("filename", "key.pem"); + pemConfig.put("privateKey", privateKeyConfig); + + Map config = new HashMap<>(); + config.put("httpServer", createSslMap(pemConfig)); + + // ToString converts 123 to "123", so it's treated as a valid string filename + // The error will be about the file not being found + assertThatThrownBy(() -> PemIdentityLoader.load(MapAccessor.of(config))) + .isInstanceOf(ConfigurationException.class); + } + + @Test + void rejectsMissingPrivateKeyFilename() { + Map certConfig = new HashMap<>(); + certConfig.put("filename", "cert.pem"); + Map pemConfig = new HashMap<>(); + pemConfig.put("certificate", certConfig); + + Map config = new HashMap<>(); + config.put("httpServer", createSslMap(pemConfig)); + + assertThatThrownBy(() -> PemIdentityLoader.load(MapAccessor.of(config))) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("/httpServer/ssl/pem/privateKey/filename"); + } + + @Test + void rejectsUnreadableCertificateFile() { + MapAccessor config = createConfig("/nonexistent/cert.pem", "key.pem", null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)).isInstanceOf(ConfigurationException.class); + } + + @Test + void rejectsEmptyCertificateFile() throws Exception { + Path certPath = tempDir.resolve("empty-cert.pem"); + Path keyPath = tempDir.resolve("key.pem"); + Files.write(certPath, "".getBytes(StandardCharsets.UTF_8)); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("empty"); + } + + @Test + void rejectsEmptyKeyFile() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("empty-key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.write(keyPath, "".getBytes(StandardCharsets.UTF_8)); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("empty"); + } + + @Test + void rejectsMalformedPemCertificate() throws Exception { + Path certPath = tempDir.resolve("bad-cert.pem"); + Path keyPath = tempDir.resolve("key.pem"); + Files.write( + certPath, + "-----BEGIN CERTIFICATE-----\nINVALIDBASE64\n-----END CERTIFICATE-----\n" + .getBytes(StandardCharsets.UTF_8)); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)).isInstanceOf(ConfigurationException.class); + } + + @Test + void rejectsCertificateOnlyInKeyFile() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("cert-in-key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + // Put certificate content in key file + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("No private key found"); + } + + @Test + void rejectsMalformedPemKey() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("bad-key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.write( + keyPath, + "-----BEGIN PRIVATE KEY-----\nINVALIDBASE64\n-----END PRIVATE KEY-----\n" + .getBytes(StandardCharsets.UTF_8)); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)).isInstanceOf(ConfigurationException.class); + } + + @Test + void rejectsEmptyKeyBody() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("empty-body-key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.write( + keyPath, "-----BEGIN PRIVATE KEY-----\n-----END PRIVATE KEY-----\n".getBytes(StandardCharsets.UTF_8)); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)).isInstanceOf(ConfigurationException.class); + } + + @Test + void rejectsEncryptedKeyWithoutPassword() { + MapAccessor config = createConfig("test-cert.pem", "test-key-encrypted-pkcs8.pem", null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("encrypted") + .hasMessageContaining("no password"); + } + + @Test + void rejectsEncryptedPkcs1KeyWithoutPassword() { + MapAccessor config = createConfig("test-cert.pem", "test-key-pkcs1-encrypted.pem", null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("encrypted") + .hasMessageContaining("no password"); + } + + @Test + void rejectsWrongPassword() { + MapAccessor config = createConfig("test-cert.pem", "test-key-encrypted-pkcs8.pem", "wrongpassword"); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("Unable to decrypt") + .hasMessageNotContaining("wrongpassword"); + } + + @Test + void rejectsWrongPasswordForPkcs1Key() { + MapAccessor config = createConfig("test-cert.pem", "test-key-pkcs1-encrypted.pem", "wrongpassword"); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("Unable to decrypt") + .hasMessageNotContaining("wrongpassword"); + } + + @Test + void rejectsMismatchedKeyAndCert() { + MapAccessor config = createConfig("test-cert.pem", "test-key-other.pem", null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .hasMessageContaining("does not match"); + } + + @Test + void errorMessageDoesNotContainPassword() { + MapAccessor config = createConfig("test-cert.pem", "test-key-encrypted-pkcs8.pem", "s3cret!"); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .satisfies(e -> { + assertThat(e.getMessage()).doesNotContain("s3cret!"); + }); + } + + @Test + void errorMessageDoesNotContainPasswordForPkcs1Key() { + MapAccessor config = createConfig("test-cert.pem", "test-key-pkcs1-encrypted.pem", "s3cret!"); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .satisfies(e -> { + assertThat(e.getMessage()).doesNotContain("s3cret!"); + }); + } + + @Test + void errorMessageDoesNotContainKeyMaterial() { + MapAccessor config = createConfig("test-cert.pem", "test-key-other.pem", null); + + assertThatThrownBy(() -> PemIdentityLoader.load(config)) + .isInstanceOf(ConfigurationException.class) + .satisfies(e -> { + assertThat(e.getMessage()).doesNotContain("BEGIN PRIVATE KEY"); + assertThat(e.getMessage()).doesNotContain("BEGIN RSA PRIVATE KEY"); + }); + } + + // --- Reload tests --- + + @Test + void hasChangedReturnsFalseWhenUnchanged() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + assertThat(material.hasChanged()).isFalse(); + } + + @Test + void hasChangedDetectsCertChange() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + // Modify cert file + byte[] certBytes = Files.readAllBytes(certPath); + Files.write(certPath, certBytes); + + // The content is the same, so hasChanged should still be false + assertThat(material.hasChanged()).isFalse(); + + // Now actually change the content + Files.write(certPath, "modified content".getBytes(StandardCharsets.UTF_8)); + assertThat(material.hasChanged()).isTrue(); + } + + @Test + void hasChangedDetectsKeyChange() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + // Modify key file + Files.write(keyPath, "modified content".getBytes(StandardCharsets.UTF_8)); + assertThat(material.hasChanged()).isTrue(); + } + + @Test + void reloadReturnsPriorOnMissingCertFile() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + // Delete cert file + Files.delete(certPath); + + IdentityMaterial reloaded = material.reload(config); + assertThat(reloaded).isSameAs(material); + } + + @Test + void reloadReturnsPriorOnMalformedReplacement() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + // Replace cert with garbage + Files.write(certPath, "not a valid PEM".getBytes(StandardCharsets.UTF_8)); + + IdentityMaterial reloaded = material.reload(config); + assertThat(reloaded).isSameAs(material); + } + + @Test + void reloadReturnsPriorOnMismatchedReplacement() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + // Replace cert with a different cert (mismatched with key) + Files.copy( + Paths.get(TEST_RESOURCES + "test-cert-other.pem"), + certPath, + java.nio.file.StandardCopyOption.REPLACE_EXISTING); + + IdentityMaterial reloaded = material.reload(config); + assertThat(reloaded).isSameAs(material); + } + + @Test + void multipleInstancesHaveIndependentState() throws Exception { + Path certPath1 = tempDir.resolve("cert1.pem"); + Path keyPath1 = tempDir.resolve("key1.pem"); + Path certPath2 = tempDir.resolve("cert2.pem"); + Path keyPath2 = tempDir.resolve("key2.pem"); + + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath1); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath1); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath2); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath2); + + MapAccessor config1 = createConfigFromPaths(certPath1, keyPath1, null); + MapAccessor config2 = createConfigFromPaths(certPath2, keyPath2, null); + + PemIdentityMaterial material1 = PemIdentityLoader.load(config1); + PemIdentityMaterial material2 = PemIdentityLoader.load(config2); + + // Modify only first instance's cert + Files.write(certPath1, "modified content".getBytes(StandardCharsets.UTF_8)); + + assertThat(material1.hasChanged()).isTrue(); + assertThat(material2.hasChanged()).isFalse(); + } + + @Test + void reloadReturnsNewInstanceOnSuccessfulReplacement() throws Exception { + Path certPath = tempDir.resolve("cert.pem"); + Path keyPath = tempDir.resolve("key.pem"); + Files.copy(Paths.get(TEST_RESOURCES + "test-cert.pem"), certPath); + Files.copy(Paths.get(TEST_RESOURCES + "test-key-pkcs8.pem"), keyPath); + + MapAccessor config = createConfigFromPaths(certPath, keyPath, null); + PemIdentityMaterial material = PemIdentityLoader.load(config); + + // Trigger hasChanged() by modifying a file with valid content + // Append a newline to the cert file - content changes but PEM is still valid + byte[] certBytes = Files.readAllBytes(certPath); + byte[] withNewline = new byte[certBytes.length + 1]; + System.arraycopy(certBytes, 0, withNewline, 0, certBytes.length); + withNewline[certBytes.length] = (byte) '\n'; + Files.write(certPath, withNewline); + + assertThat(material.hasChanged()).isTrue(); + + IdentityMaterial reloaded = material.reload(config); + assertThat(reloaded).isNotSameAs(material); + } + + // --- Helper methods --- + + private MapAccessor createConfig(String certResource, String keyResource, String password) { + String certPath = TEST_RESOURCES + certResource; + String keyPath = TEST_RESOURCES + keyResource; + return createConfigFromPaths(Paths.get(certPath), Paths.get(keyPath), password); + } + + private MapAccessor createConfigFromPaths(Path certPath, Path keyPath, String password) { + Map certConfig = new HashMap<>(); + certConfig.put("filename", certPath.toString()); + + Map keyConfig = new HashMap<>(); + keyConfig.put("filename", keyPath.toString()); + if (password != null) { + keyConfig.put("password", password); + } + + Map pemConfig = new HashMap<>(); + pemConfig.put("certificate", certConfig); + pemConfig.put("privateKey", keyConfig); + + Map config = new HashMap<>(); + config.put("httpServer", createSslMap(pemConfig)); + + return MapAccessor.of(config); + } + + private Map createSslMap(Object pemOrKeyStore) { + Map sslConfig = new HashMap<>(); + if (pemOrKeyStore instanceof Map) { + // Check if it's a PEM config + Map map = (Map) pemOrKeyStore; + if (map.containsKey("certificate") || map.containsKey("privateKey")) { + sslConfig.put("pem", pemOrKeyStore); + } else { + sslConfig.put("keyStore", pemOrKeyStore); + } + } + Map httpServerConfig = new HashMap<>(); + httpServerConfig.put("ssl", sslConfig); + return httpServerConfig; + } +} diff --git a/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-cert-ec.pem b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-cert-ec.pem new file mode 100644 index 000000000..9aadb7c22 --- /dev/null +++ b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-cert-ec.pem @@ -0,0 +1,11 @@ +-----BEGIN CERTIFICATE----- +MIIBlDCCATugAwIBAgIUSW7yB1Px8qCLufWVxjOnEYYVv2YwCgYIKoZIzj0EAwIw +FDESMBAGA1UEAwwJbG9jYWxob3N0MCAXDTI2MDcxNTA3MzI1N1oYDzIxMjYwNjIx +MDczMjU3WjAUMRIwEAYDVQQDDAlsb2NhbGhvc3QwWTATBgcqhkjOPQIBBggqhkjO +PQMBBwNCAARwTOZ+QQ7vEzzzQU9S0tGcSZ5pwHeUpv8EgPxuzuheoKM1DfxOA+UM +JL1QT7ceKuTK5POXUeqI9vqSvLLeqdVuo2kwZzAdBgNVHQ4EFgQUaX9Bj7tXJPuh +33i4GVo59qAqocowHwYDVR0jBBgwFoAUaX9Bj7tXJPuh33i4GVo59qAqocowDwYD +VR0TAQH/BAUwAwEB/zAUBgNVHREEDTALgglsb2NhbGhvc3QwCgYIKoZIzj0EAwID +RwAwRAIgJHBs793aIhmbLOL9oi3rukT5d4NLmHBHMaeaRUUGYCkCIFQ3X6VOjLGr +Sj8/yp4/FOW1G/xB0c7cyBKUkd5/KuVV +-----END CERTIFICATE----- diff --git a/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-cert-other.pem b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-cert-other.pem new file mode 100644 index 000000000..8a3bf926b --- /dev/null +++ b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-cert-other.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDAzCCAeugAwIBAgIUOg8feNV0yJOhCzzRzgKlP4074o8wDQYJKoZIhvcNAQEL +BQAwEDEOMAwGA1UEAwwFb3RoZXIwIBcNMjYwNzE1MDczMjIzWhgPMjEyNjA2MjEw +NzMyMjNaMBAxDjAMBgNVBAMMBW90aGVyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAzOBldMurXctFxRe+sFk31KgryyAjhNydXtgcabRRV369QVCBL1eO +gMIiCxrWg14KjSjfg1p6h3WSHEtuYbiTJkwsDTWZzYHF4TBfvg2fR4VuewDOaaeK +XUU+adaVw1YOu+08FPdGGAW2AI2KG7nFAvmhi7cnB9lR159vy1S7QNSCplbcrkj1 +WCc3OPOmRNeT6ZOZBAoygrewSuOPupavTJMczXJZzqDBcVPbyWriCMxgO8hrkj0Y +WZ+R4lUBgD1FbxDQDWVCZ85DF0RAsX7/x5+0oyq17oc4ScSwfRkP85VwAPWKvcms +bYNhB7PUTZK1qxqp3TJozIaHQRhmOB6lvwIDAQABo1MwUTAdBgNVHQ4EFgQUMffI +fKv0tpCRX0ZiHSEXonKYHFcwHwYDVR0jBBgwFoAUMffIfKv0tpCRX0ZiHSEXonKY +HFcwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG9w0BAQsFAAOCAQEALwCpEHTgRD6U +/YP8k4W73xgwfYKXS8Xlc6FYhxpjyVVC0oWUYR0KVRc3M2U9SMqmIjM4HpibmEg4 +05p4IqEi98GloVJjz5EDBBbiwCyY6XQzy2144wv1+cynvYa4Y/Lre5JajRcrCYiD +f/OI+lQhAB8viX9Wln2n1NvbBsv8ShVepFb3SyWzy+3MDtiF3uVStDK1r7tJnFfs +e9KunN9w9UNjAZYojjk4kpAzwz13TPys3w6PgUy3TXRQ3pipIKboMbaTWEHFfMu8 +GPU0pDn1R33BPvepnuQpj5RlNNuJiIPe6aZp34zJTg1DGUECURyhOsm+JIEfwBlp +c+DR8O3bqw== +-----END CERTIFICATE----- diff --git a/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-cert.pem b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-cert.pem new file mode 100644 index 000000000..2f2b85e31 --- /dev/null +++ b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-cert.pem @@ -0,0 +1,19 @@ +-----BEGIN CERTIFICATE----- +MIIDITCCAgmgAwIBAgIUT/XCd5SCzE5KNeHcATV4JUGh+cgwDQYJKoZIhvcNAQEL +BQAwFDESMBAGA1UEAwwJbG9jYWxob3N0MCAXDTI2MDcxNTA1MjAyM1oYDzIxMjYw +NjIxMDUyMDIzWjAUMRIwEAYDVQQDDAlsb2NhbGhvc3QwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCxU9C6R8KwI2bCcO9NxhmitFOzKS7shsYuNNHdLPjG +190C5LFoncploMqr/9mUoE1qUFbHQ0PPK67rCFLtIe1p5USb2/wihWSRycqL8Mp0 +bRqWz6yIonAwaqLYlmZXJAqo93nOhf7WC3IxovDldzzBClBTW0MRz/OxZRBPsC1K +dsY5jhxTNk6aeeFGwioq7ebpgEooEfXqaZjxp9zsFEZynUx6thWr+vBeV3NhYzW/ +mT4wY0Xo+FwjynolAnAANayWM+M7KSB4+1733C19m6WH8Eo9+QX+VenlukWZwKZt +BrIFOsKPCxBMfwqEhvGXTagJMgxKrnld9LdzGsiePrCVAgMBAAGjaTBnMB0GA1Ud +DgQWBBQWq5zoOw5iGh25bP9bf77okpzNKDAfBgNVHSMEGDAWgBQWq5zoOw5iGh25 +bP9bf77okpzNKDAPBgNVHRMBAf8EBTADAQH/MBQGA1UdEQQNMAuCCWxvY2FsaG9z +dDANBgkqhkiG9w0BAQsFAAOCAQEAlPB/R8nOyuWnmVEcT/XcRQ2Dbv5pR9FWyKCr +JJVnXvN2xptFgfWc/K7lirPvghe5Y1LOMt8SQ4/8n/Jw6QQBtKC9Sik6wxkYG2yU +n+VptN5gTgBi5i+zekqDqhWuMCGlqqfSoaWP7RetX+bIgO2Jt3vn/L5WB6jSqqXO +/2b6SlzInyxqRMWbjNp5Ch+XllzO0uxvjpxDxm58Z4dOXwTSAq1q1MM4/G2+Eltr +UjWj6tkZNbIArHuKSQ4oWhEaPGRJ6DueqsTsSVfPrTfZXLe6MuW1Skpiaf3RYwRz +2OAovlY75L1jm+TXJNtngerCOhbq580Kh/8WJMaXbEMEhvnnsw== +-----END CERTIFICATE----- diff --git a/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-ec-pkcs8.pem b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-ec-pkcs8.pem new file mode 100644 index 000000000..5bcdc9a81 --- /dev/null +++ b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-ec-pkcs8.pem @@ -0,0 +1,5 @@ +-----BEGIN PRIVATE KEY----- +MIGHAgEAMBMGByqGSM49AgEGCCqGSM49AwEHBG0wawIBAQQgil2/oXY7eMvK43Kj +NOpHqFzQnECycSSMGGE8kC7y/V+hRANCAARwTOZ+QQ7vEzzzQU9S0tGcSZ5pwHeU +pv8EgPxuzuheoKM1DfxOA+UMJL1QT7ceKuTK5POXUeqI9vqSvLLeqdVu +-----END PRIVATE KEY----- diff --git a/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-encrypted-pkcs8.pem b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-encrypted-pkcs8.pem new file mode 100644 index 000000000..6e969da14 --- /dev/null +++ b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-encrypted-pkcs8.pem @@ -0,0 +1,30 @@ +-----BEGIN ENCRYPTED PRIVATE KEY----- +MIIFLTBXBgkqhkiG9w0BBQ0wSjApBgkqhkiG9w0BBQwwHAQI5qiFPQSo3n4CAggA +MAwGCCqGSIb3DQIJBQAwHQYJYIZIAWUDBAEqBBCGOmpS+zTA9tVwTY4Ig2lCBIIE +0LH2iLeHSu3z1Cwm825BqsSD55DfoWEQjs6tvhJlzztqrnzx/2UitQ0bx2v4Aw4u +GF20WYsneV4JWZVDHrPmSYniWnDc8gojamuZzf2hfWhsxF909GELX+BfUmHssXYz +ujS0AGzQ6aRKGAHc8yqEk4b187lQwJ+RqmMRjf0eY2PRjWeOhH5DtmYLc4ovkAiu +A9YrHU7sTZ1/+YJ8v4IGqy1fbltTt+ePofYDqN9RnPSnCM52luvRcJtmxuPFFOBx +I0/7T2BJ91J41fRF0yOQ9Pmsa+b9TO8x379tAzpg7PmxcdVR/KJ7x8tBemphGNio +rm1AoQhKmhq997EIYBZDMdt9jz74mbWzW/7LAd1Aq18YNbUX38Eai5Dc6jIbQSQQ +gKWFRChzFJaNAX8japHt+dt5Xtkc5TWt1G6S58zWRBJjuiAdj2Z/e9z0uwlhYwqp +S0KqGr0Q/sAGLBM5Xpe8lWe+1KX0dlCSmi5jcdYQKqHfIbwNb2t+A/ujaiMsysoE +dNMD4GSkppPYXQGpIYRyNiECUpFUrsFFH+k2hxngdnn4LlmPtkLCs13xh65Qvox1 +XhSMacRZdQqmxq0S1VXry3+0OOEonaEWL4hXpRGpeXG+R8Nh/+94Q6IjUM6MYRnk +ohZsrQwqH10HlBp4myKcgbpMecSD4Z9/oLWt1td9rkEQOi1MGkwq+TdwAxYb101Y +EXm6AKoi7wEBrDc/bEBXb6tRZP/v78RbnZL1DlycQcUKADZVHkAbG5tPwJS6DHMZ +qqsMTGBk08lSLjFsJeXiOmXAipBay8GNcn/wG6wmgTS4ZWSwMeYEYgUfhN8uiKvI +GLTXTntMAAu8xUVc0szgjhyxOFiiyYIzKEfcpcAlpwazsYh08b6TmD5Is9xU8UjY +2hN6huLVKeUArBK2snIBNl9QsyNtdRwxwaE8+0C/Xsx13hyKhdaFb6dFXz0fw/XL +MIiaU4+uQ00WCCpH6SqpRlckIj6OUOOMpgMWv2vc51b1A7vngaH77mexvoB2C018 +UhJACVWTo/hIIUoVnXslJoNrz0lL4SW4tOo71VaNNVkwi/rKtSBoD+tsxs4KrW+P +x6UVOy8mx6SrMnbItBLdh6Dk5+6ffyqWPVx+ySEj/cTCQap0Lh4SkcNmOGaaZ4H7 +Xs2DNtWjMHTUbGvqmqocf3L84XpdZL61uhrtGrZSEBWXSnmwSDRCLuLnC1LAX1JI +/f088q1MyG/BLDdkiI2/cgOa8dKEu0jp37Nntv84dE6R/ufjFldZxO3aG6/rpZY4 +A4xK+dzvknfQttvUJ9pNQ4jOcPuWj34RxeblKIpXb7gh1ZHG79Cmj1wNy6mgzZFr +Uldb3tZifvMFX7mQlnGuPlJYfV1zDjHccvaWEifWoIeHWnE8DmfrUdliFUalW+Du +6enSkiRZIVkegYlD7yFQhRO7pcpip2avKjfHO5S0IlVWJgdHYoWRRdHTHbEWdG5w +O8cFz3kqwbI2mX3Q796OGRBOoiDP2NUPBM+wklwLO1x8MtG8ww9lMEKcXTQnTbt5 +d8FX9CPuH41VLUMLHfM6FdcxEJIor6ueDxOurvridk6+54FyCO3Hx+kgJTywZ9Um +hjykkY0YV6lRgAHUMKMxQpBppjZIlddQXbDkYiDLnZpw +-----END ENCRYPTED PRIVATE KEY----- diff --git a/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-other.pem b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-other.pem new file mode 100644 index 000000000..0fba86e9c --- /dev/null +++ b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-other.pem @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDM4GV0y6tdy0XF +F76wWTfUqCvLICOE3J1e2BxptFFXfr1BUIEvV46AwiILGtaDXgqNKN+DWnqHdZIc +S25huJMmTCwNNZnNgcXhMF++DZ9HhW57AM5pp4pdRT5p1pXDVg677TwU90YYBbYA +jYobucUC+aGLtycH2VHXn2/LVLtA1IKmVtyuSPVYJzc486ZE15Ppk5kECjKCt7BK +44+6lq9MkxzNclnOoMFxU9vJauIIzGA7yGuSPRhZn5HiVQGAPUVvENANZUJnzkMX +RECxfv/Hn7SjKrXuhzhJxLB9GQ/zlXAA9Yq9yaxtg2EHs9RNkrWrGqndMmjMhodB +GGY4HqW/AgMBAAECggEAXm92xJHW0TqP0+wAhSfywK6t1Qjg5m6MiXnDCwRHVDXC +xbb2fRx2Pqp9Z7H8u/vekDeNY24SuZq7eRhZ7mhWR5pn2cThuqT9UbHrB98ekqiS +BteVzYShFiIDRWTYjnv9+ai9/4oFQLBtNq8HQIVuJtNrH8wSDR+ihmni7Y4GbDhV +QSUvFCTtQWVF/QuiOmgXQwNPF075uKUEmUJngPs8JEhXJbYDNgTGawG55SxKBOi5 +pOpQ6lN5GsWJoSAasK+hkhVdPMm7OHMcfPvhCEG3BHXshqwoRqf59AUzsRyvxqUD +3eRPciJTMOPx6y8BNAIzpElFXn7NvR5qsbXCNW3pJQKBgQDpLDS3mrhLRZaJdesT +WdTa53qzj3T0muc4D0g5LgUQmg+QfyID40tBAdWR5VgYDVZwbRwyWszoBOzlXK+D +2+3VAPlcMGooPNEiD26N+AHJVu64SGZV8/USRWvMwywB0oPmUJ1IcYVhvV8ydMmd +PL5SKAjJYE7Dp78/euUVeLZ3xQKBgQDg7we/0jKOfEmo4/1SX0O1HQHZZTFduMZj +IzrkfQdnsZ/LQOsqCujsbEE+bhp7bli3aKQQZfJnQGiwTfRoAzrQgL6Q1O9FluMA +u9U5MzN7lOYcs164YryMpqGgycy1j16KbDRd67pZwPdXUEs0ux2i4B2arWu+F9Lu +GL8AD5y7swKBgQCgzxn0XkInt3BgkPB0wglohyg6Wf+hCovYP8HhnXlkv7toPiWp +ZMJrrOYr3m3o+Jnao4VEvRaAFZWDgW6Sk8Tsl+VhzQoJghgBU389bgNdZhTxBw18 +zekAltwHtbrN7u+EkahHY/NHOyFCXQUG6fOgGXgl2cO4cCIXl5wSONQuuQKBgH9m +4/zCEeCihRYkDFebnb33sBRyPIPZJIUCb1j7eDZDZT66hnhJtaQzrMCvnFBNL/Ky +Ujr3g1T4JlO107kWGzn9sfJWqS/BRtIjkaHUXlShAbU/42aMhj8kImfv5QLxMZs1 +rnOEEQjFQ1MxJ2e2lBKs3he+IkiJNe+mFIj0TtIBAoGBAM9Sp1Tx+GMUu6aPnZE1 +oXN9UnHXbX/naOlPL/+fcu9UV5IcRQsOlTiOc7qVlnrYxDbodKjXWd+ejRkzhLZh +PIETIVf5Udv2R2d/ju91OzpvDiH9Zx6BLorgrB6A3XwxfQQG9zsFkpBYNtJdt4QW +SoAOzUBI2DwVzvSqNsBnp6E2 +-----END PRIVATE KEY----- diff --git a/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-pkcs1-encrypted.pem b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-pkcs1-encrypted.pem new file mode 100644 index 000000000..fe941a17f --- /dev/null +++ b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-pkcs1-encrypted.pem @@ -0,0 +1,30 @@ +-----BEGIN RSA PRIVATE KEY----- +Proc-Type: 4,ENCRYPTED +DEK-Info: AES-256-CBC,1F4035B94B977E895F68A2DB4EB35B09 + +jybOiwBTjjDuzdTyfPm/ZEAtA1SYc3utfICZ9rqsQX3ciaFzZw57lCa+fDtgIAvI +Y0+i1IFK7IgzMx6r8rpIWF4qoub7I6/1xT6y/w3ULcyQlY35sCohMyVSUyhVeAYj +2VxPaZmTDvis/4/zL2IX+bY7rW5WcjdDu17wKFf+NAYesGXAz1xrEB98EtwAQHfv +eQBUFfqX/jBu5Mj0sxkIr3/HGoCGt3azNe521uUg7X1zNbHOmhc0e17/xWoGsxV/ +mWgAzlLj42yvqGqnXHYEe3ZDqnbGY4PIf4CRCJEfoTpz1SUcD0eXuSgYCDbTXBI6 +xJhF/hcTeh1eAiINNtPriSwor6XZgnvSt8zGlj0Knop0XtBKKj3dC00sO9W/P+yl +gKqUBmaCxpR5fjNkAxaPP+GWq+K08uWII0oAzNTof1NjTspcBFfVjuY8NNTPaHgK +6jA/NyUKzez5KtA1VGFU77uDsaqgwPo+9uhVNHcWhSqcz4jQcjxaUz9oxaiXI0J/ +38io3D0XfwWNaPdj+BzbAuXIG+YgYw4EVVWOTDc7WiQr1W+vOt244OOz7yC3pNjP +sZGeipdjvFWk1u3D75vSHQ/a9mfhGk0t6GmIsk2E61gCnT3hSdO/p3RJ64Q/Es6B +lKN/KzjM8uwWJJwOzraKtrctakAxFxHRZaewihxCQ4s0g5+l+LJCmRkxAsQwIZmg +uzy0W87oYYT+g0z1CGEw6MqLrWxe3shtKR0SwulEed/swGcTdcM4C3T+FIBAAfJU +ZM/RKMkyHtCr6BbqJJ64LdNAhO0FjbTgfyTaka+B62uLXsTFp1BMGIi/E/NR4e7H +bX4xGuoOvpON+PkmDUuiKLvYvUcGPoxP/v8R9sx3x8aPTTPTYyDH4gn0o2HKGEdP +jKNKCQCaGkxsTuhAsBInDCSXIwPcjKGzR3iNn5ldix6Q1TGhZz0EhPVdclOhHfLy +wd21LE6/wWTplDlfy98q0fbMMsUrz+RHKKYE0hPjJZzWJSrdaUR6Pg0xB20uJysX +QZ4/0pW54siNh66KQXGCwGIPDfIz7w0Ql7IMnn5WaQ6iByE2JNSiu6UHXMBbLZk0 +IVetALidGH1/Fzi5LMbmasPTgSQF5BXIO2eX1RoE0uALsXxtRiUvTxigWtgo7PFo +/YuMuQfpSgYs2rQvYoVjY64AlfS+8eS0vlSmbrqPgbQ3zowcO75GTyVl4PwqFn4x +tKU3DTpYv+A6RR5QBTFgT0B8FFYm1myX0VXYDG7Z/KbDqHiORgBObGFYrYveHB2G +0s9CD92ZsdXLIQPuTyW5hY3p4zaF0DkNRUlVXRmN8D7JlfiPV60gYcwY8GYmpRGl +3yKVFPpWwgY8ZQvRfjqvhQZHMLxXqL2d42VydMlL0QB9rpdSLlJeo4klrStDn/kN +cu9sYxRtS6D4P09qlzolVN9jjozpCntDWxuD4t2rzaz/AXwa5giyCjeScPrj2MAp +zoLFgwdxeTPcJdKky7qpGSSpGqK/6lcfQ89yiKxVKDCtvY34eOIExw39gWNv5rZg +DRCFJuooDYM1o1BeoHylNPAlSISwqxc/txnmvNxXEeT83nFVdIZEwiaUWb3uGDya +-----END RSA PRIVATE KEY----- diff --git a/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-pkcs1.pem b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-pkcs1.pem new file mode 100644 index 000000000..3776652b7 --- /dev/null +++ b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-pkcs1.pem @@ -0,0 +1,27 @@ +-----BEGIN RSA PRIVATE KEY----- +MIIEpAIBAAKCAQEAsVPQukfCsCNmwnDvTcYZorRTsyku7IbGLjTR3Sz4xtfdAuSx +aJ3KZaDKq//ZlKBNalBWx0NDzyuu6whS7SHtaeVEm9v8IoVkkcnKi/DKdG0als+s +iKJwMGqi2JZmVyQKqPd5zoX+1gtyMaLw5Xc8wQpQU1tDEc/zsWUQT7AtSnbGOY4c +UzZOmnnhRsIqKu3m6YBKKBH16mmY8afc7BRGcp1MerYVq/rwXldzYWM1v5k+MGNF +6PhcI8p6JQJwADWsljPjOykgePte99wtfZulh/BKPfkF/lXp5bpFmcCmbQayBTrC +jwsQTH8KhIbxl02oCTIMSq55XfS3cxrInj6wlQIDAQABAoIBACdY38HV1n9a+5w9 +jvwE7v9JYCErDDxzk1oBYmffaLxGfcX8lNkP2i8+xHnx5YezIjpq5TaF2HAJ02BX +kn8HvjR3KQgkggfu7WfkDMuMfH/lDbdVEYWn9ZjosIW6qa7AUpU3hJGs7eT02Tvm +Wemw0YxMC5LTd0hmij5cnIfyIbqZzVFOWCKP3VGPpVagZsZHJNjsfqR6DfV0HwXv +xVEPQytapf94oUj1PO/M7Pgw0Cy2CGX2NO49upkBf8jZsK7EJf89q30LKb2nPb2P +NrHNSBsaK2PBeRgl4g+oW0qrA+qEZecNSK+lyZ/YK3NrNpok81pF0ZnELiZBp6hQ +XkG75AECgYEA60R8WH/ZvF6ZvcgnX6OCf30UEPv7xs+KQrOYa9aDL519iDzf/ohm +TJ+9zZ02tgfrDqDlKgjw42LvoH2bKBqXRz3Zt0SMOmT5ylYipvEDtGWnvjUO4q3f +y3Cki2atpWAw7/KZEyl261MF7RJwT7giPeeMNIg2O0qpO3Fe61rdqYECgYEAwPQ6 +9/QI9BaJpq0Vkr856pvTJR8eIiguBOj7ofBXYO9tjaGbEV8/5RuxilrDiU10AIWx +rGXGLj1QkrPyZbXcj3cPTlBq/qOjlb6LJtXBxWX79c1TrXqEqAZG3It6Hn4YQmG5 +UIdw19/qW4Z2XQz7yVk4oPKRdAHDuPP3iE26SRUCgYEAztYCAAg+08XToi7itslY +xF6hkqEGZG433pZoTX5lDSqHn4vtXahrT7gstSUfYX+qnszDTGZZ6X8krtNe4i4m +i4KL8vx30CrQFJwPkPdZS3MHu0iIUq+Mjh30+32E8lyUCZAeFeOhYhg2oItSZDO9 +HvF/qPuLuirUh6cPTRkwwYECgYAj6pI7a1JrVPKkct1sJmo6cGz6IPOz+fSu90s3 +low9P/QNhAJgVnGHTQNcNI7nNOKd4kTzSTJ9ku43kIVTR2nZzpirxC5WXdFqY0B1 +px5dhyFCXMjxpregqyJvlQrTODd9y8D562wm0shF5x6LLYqErTXsR5qplFaBS/BM +j+NYDQKBgQCb+xcHuzDI+GNHvnrwl9IWQD86CN57tBfGZX8Yp44DMysd0gpj4Ffn +07iVqiZYipRuM2x4FC+4BhCt71iTjIShrQMfNmhmFxcNnQGwAwxFn0pPgazSMmLG +oAtJg8QR+I/4lBxolmPi6YogVzqI/nq7HCG+2Yi08NxmRbIyfoWTUQ== +-----END RSA PRIVATE KEY----- diff --git a/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-pkcs8.pem b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-pkcs8.pem new file mode 100644 index 000000000..8abc2aea4 --- /dev/null +++ b/jmx_prometheus_common/src/test/resources/io/prometheus/jmx/common/http/ssl/test-key-pkcs8.pem @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQCxU9C6R8KwI2bC +cO9NxhmitFOzKS7shsYuNNHdLPjG190C5LFoncploMqr/9mUoE1qUFbHQ0PPK67r +CFLtIe1p5USb2/wihWSRycqL8Mp0bRqWz6yIonAwaqLYlmZXJAqo93nOhf7WC3Ix +ovDldzzBClBTW0MRz/OxZRBPsC1KdsY5jhxTNk6aeeFGwioq7ebpgEooEfXqaZjx +p9zsFEZynUx6thWr+vBeV3NhYzW/mT4wY0Xo+FwjynolAnAANayWM+M7KSB4+173 +3C19m6WH8Eo9+QX+VenlukWZwKZtBrIFOsKPCxBMfwqEhvGXTagJMgxKrnld9Ldz +GsiePrCVAgMBAAECggEAJ1jfwdXWf1r7nD2O/ATu/0lgISsMPHOTWgFiZ99ovEZ9 +xfyU2Q/aLz7EefHlh7MiOmrlNoXYcAnTYFeSfwe+NHcpCCSCB+7tZ+QMy4x8f+UN +t1URhaf1mOiwhbqprsBSlTeEkazt5PTZO+ZZ6bDRjEwLktN3SGaKPlych/IhupnN +UU5YIo/dUY+lVqBmxkck2Ox+pHoN9XQfBe/FUQ9DK1ql/3ihSPU878zs+DDQLLYI +ZfY07j26mQF/yNmwrsQl/z2rfQspvac9vY82sc1IGxorY8F5GCXiD6hbSqsD6oRl +5w1Ir6XJn9grc2s2miTzWkXRmcQuJkGnqFBeQbvkAQKBgQDrRHxYf9m8Xpm9yCdf +o4J/fRQQ+/vGz4pCs5hr1oMvnX2IPN/+iGZMn73NnTa2B+sOoOUqCPDjYu+gfZso +GpdHPdm3RIw6ZPnKViKm8QO0Zae+NQ7ird/LcKSLZq2lYDDv8pkTKXbrUwXtEnBP +uCI954w0iDY7Sqk7cV7rWt2pgQKBgQDA9Dr39Aj0FommrRWSvznqm9MlHx4iKC4E +6Puh8Fdg722NoZsRXz/lG7GKWsOJTXQAhbGsZcYuPVCSs/JltdyPdw9OUGr+o6OV +vosm1cHFZfv1zVOteoSoBkbci3oefhhCYblQh3DX3+pbhnZdDPvJWTig8pF0AcO4 +8/eITbpJFQKBgQDO1gIACD7TxdOiLuK2yVjEXqGSoQZkbjfelmhNfmUNKoefi+1d +qGtPuCy1JR9hf6qezMNMZlnpfySu017iLiaLgovy/HfQKtAUnA+Q91lLcwe7SIhS +r4yOHfT7fYTyXJQJkB4V46FiGDagi1JkM70e8X+o+4u6KtSHpw9NGTDBgQKBgCPq +kjtrUmtU8qRy3WwmajpwbPog87P59K73SzeWjD0/9A2EAmBWcYdNA1w0juc04p3i +RPNJMn2S7jeQhVNHadnOmKvELlZd0WpjQHWnHl2HIUJcyPGmt6CrIm+VCtM4N33L +wPnrbCbSyEXnHostioStNexHmqmUVoFL8EyP41gNAoGBAJv7Fwe7MMj4Y0e+evCX +0hZAPzoI3nu0F8ZlfxinjgMzKx3SCmPgV+fTuJWqJliKlG4zbHgUL7gGEK3vWJOM +hKGtAx82aGYXFw2dAbADDEWfSk+BrNIyYsagC0mDxBH4j/iUHGiWY+LpiiBXOoj+ +erscIb7ZiLTw3GZFsjJ+hZNR +-----END PRIVATE KEY----- diff --git a/jmx_prometheus_javaagent/pom.xml b/jmx_prometheus_javaagent/pom.xml index 56d4cc8a8..7b797c76d 100644 --- a/jmx_prometheus_javaagent/pom.xml +++ b/jmx_prometheus_javaagent/pom.xml @@ -88,6 +88,10 @@ META-INF/proguard/** META-INF/sisu/** META-INF/versions/** + META-INF/*.SF + META-INF/*.RSA + META-INF/*.DSA + META-INF/*.EC commonMain/** **/*.kt **/*kotlin_module diff --git a/jmx_prometheus_standalone/pom.xml b/jmx_prometheus_standalone/pom.xml index 82eb2fc7e..2cbbf455a 100644 --- a/jmx_prometheus_standalone/pom.xml +++ b/jmx_prometheus_standalone/pom.xml @@ -93,6 +93,10 @@ META-INF/proguard/** META-INF/sisu/** META-INF/versions/** + META-INF/*.SF + META-INF/*.RSA + META-INF/*.DSA + META-INF/*.EC commonMain/** **/*.kt **/*kotlin_module diff --git a/pom.xml b/pom.xml index cf30a0778..5fe9c7759 100644 --- a/pom.xml +++ b/pom.xml @@ -35,14 +35,15 @@ UTF-8 UTF-8 + 0.3.0 3.27.7 10.0.5 + 1.79 2.9.3 1.28.0 6.1.2 1.5.38 5.4.0 - 0.3.0 6.2.3 1.8.0 2.1.0-alpha1 @@ -153,6 +154,21 @@ ayza ${ayza.version} + + org.bouncycastle + bcpkix-jdk18on + ${bouncycastle.version} + + + org.bouncycastle + bcprov-jdk18on + ${bouncycastle.version} + + + org.bouncycastle + bcutil-jdk18on + ${bouncycastle.version} + org.yaml snakeyaml diff --git a/website/docs/configuration/ssl.md b/website/docs/configuration/ssl.md index c338c5d41..861c63466 100644 --- a/website/docs/configuration/ssl.md +++ b/website/docs/configuration/ssl.md @@ -9,6 +9,12 @@ JMX Exporter has two SSL/TLS areas: ## Exporter HTTP TLS +The exporter supports two identity modes for HTTPS: Java keystore (JKS/PKCS12) and PEM files. +You choose one mode by populating the corresponding block under `httpServer.ssl`. +The two identity blocks are mutually exclusive. + +### Keystore mode + ```yaml httpServer: ssl: @@ -22,19 +28,64 @@ rules: - pattern: ".*" ``` -Supported HTTP TLS fields: +Supported keystore fields: | Field | Description | | --- | --- | | `httpServer.ssl.keyStore.filename` | Key store file. Falls back to `javax.net.ssl.keyStore` if omitted. | | `httpServer.ssl.keyStore.type` | Key store type. Falls back to `javax.net.ssl.keyStoreType` or the platform default. | | `httpServer.ssl.keyStore.password` | Key store password. Falls back to `javax.net.ssl.keyStorePassword` if omitted. | -| `httpServer.ssl.certificate.alias` | Optional certificate alias. | +| `httpServer.ssl.certificate.alias` | Certificate alias. Required for keystore mode. | | `httpServer.ssl.protocols` | Optional comma-separated TLS protocols. | | `httpServer.ssl.ciphers` | Optional comma-separated cipher suites. | Exporter YAML values take precedence over Java system property fallbacks. +### PEM mode + +Supply a PEM-encoded certificate chain and private key as separate files. +This avoids the need to convert to a Java keystore. + +```yaml +httpServer: + ssl: + pem: + certificate: + filename: server.pem + privateKey: + filename: key.pem + password: ${PRIVATE_KEY_PASSWORD} # optional +rules: +- pattern: ".*" +``` + +Supported PEM fields: + +| Field | Description | +| --- | --- | +| `httpServer.ssl.pem.certificate.filename` | PEM certificate chain file. The leaf certificate must be first, followed by any intermediates in order. | +| `httpServer.ssl.pem.privateKey.filename` | PEM private key file. Exactly one private key. | +| `httpServer.ssl.pem.privateKey.password` | Optional password for encrypted private keys. Supports `${ENV_VAR}` variable resolution. | + +Supported private key formats: + +- Unencrypted PKCS8 (`BEGIN PRIVATE KEY`) +- Traditional RSA (`BEGIN RSA PRIVATE KEY`) +- Traditional EC (`BEGIN EC PRIVATE KEY`) +- Encrypted PKCS8 (`BEGIN ENCRYPTED PRIVATE KEY`) +- Encrypted traditional RSA/EC + +The private key must match the first certificate in the chain. + +**Mutual exclusions:** +- `httpServer.ssl.pem` and `httpServer.ssl.keyStore` are mutually exclusive. +- `httpServer.ssl.certificate.alias` is not allowed with PEM mode. +- In PEM mode, `javax.net.ssl.keyStore*` system properties are ignored for identity material. + +**Private key permissions:** +Restrict filesystem permissions on private key files. +For example, `chmod 600 key.pem`. + ## Exporter HTTP mutual TLS ```yaml @@ -57,6 +108,17 @@ rules: Trust store fields mirror key store fields and fall back to `javax.net.ssl.trustStore`, `javax.net.ssl.trustStoreType`, and `javax.net.ssl.trustStorePassword` when omitted. +## Certificate reloading + +The exporter automatically checks for updated certificate material every hour. + +- **Keystore mode:** The keystore file is re-read when its content changes. +- **PEM mode:** Both the certificate and key files are checked. If either changes, both are reloaded together as an atomic unit. +- **Truststore:** When mutual TLS is enabled, the truststore is checked independently. + +If a reload fails (for example, due to a malformed file or key/certificate mismatch), the last valid identity continues to be used. +The server does not stop. + ## Remote JMX/RMI SSL For standalone remote JMX connections, top-level `ssl: true` enables SSL: diff --git a/website/docs/reference/configuration.md b/website/docs/reference/configuration.md index 7b9b8ad20..22984fdda 100644 --- a/website/docs/reference/configuration.md +++ b/website/docs/reference/configuration.md @@ -88,12 +88,30 @@ This reference lists source-backed 1.6.0 exporter YAML keys. Guide pages explain ## HTTP SSL/TLS keys +### Keystore identity + | Key | Description | | --- | --- | | `httpServer.ssl.keyStore.filename` | Key store file or `javax.net.ssl.keyStore` fallback. | | `httpServer.ssl.keyStore.type` | Key store type or `javax.net.ssl.keyStoreType` fallback/platform default. | | `httpServer.ssl.keyStore.password` | Key store password or `javax.net.ssl.keyStorePassword` fallback. | -| `httpServer.ssl.certificate.alias` | Optional certificate alias. | +| `httpServer.ssl.certificate.alias` | Certificate alias. Required for keystore mode. | + +### PEM identity + +| Key | Description | +| --- | --- | +| `httpServer.ssl.pem.certificate.filename` | PEM certificate chain file (leaf first). Required. | +| `httpServer.ssl.pem.privateKey.filename` | PEM private key file. Required. | +| `httpServer.ssl.pem.privateKey.password` | Optional password for encrypted private keys. Supports variable resolution. | + +`httpServer.ssl.pem` and `httpServer.ssl.keyStore` are mutually exclusive. +`httpServer.ssl.certificate.alias` is not allowed with PEM mode. + +### Shared TLS keys + +| Key | Description | +| --- | --- | | `httpServer.ssl.trustStore.filename` | Trust store file or `javax.net.ssl.trustStore` fallback. | | `httpServer.ssl.trustStore.type` | Trust store type or `javax.net.ssl.trustStoreType` fallback/platform default. | | `httpServer.ssl.trustStore.password` | Trust store password or `javax.net.ssl.trustStorePassword` fallback. |