ARTEMIS-4291 Add the "broker" tag in a consistent manner to all exported metrics.
Some scrapers, e.g. prometheus, add an "instance" tag. This value may not be the same as the broker name, which results in these metrics becoming more difficult to match up with the corresponding broker.
This commit is contained in:
parent
c31211b93f
commit
40425d422a
|
@ -57,20 +57,23 @@ public class MetricsManager {
|
||||||
MetricsConfiguration metricsConfiguration,
|
MetricsConfiguration metricsConfiguration,
|
||||||
HierarchicalRepository<AddressSettings> addressSettingsRepository) {
|
HierarchicalRepository<AddressSettings> addressSettingsRepository) {
|
||||||
this.brokerName = brokerName;
|
this.brokerName = brokerName;
|
||||||
meterRegistry = metricsConfiguration.getPlugin().getRegistry();
|
this.meterRegistry = metricsConfiguration.getPlugin().getRegistry();
|
||||||
Metrics.globalRegistry.add(meterRegistry);
|
|
||||||
this.addressSettingsRepository = addressSettingsRepository;
|
this.addressSettingsRepository = addressSettingsRepository;
|
||||||
if (metricsConfiguration.isJvmMemory()) {
|
if (meterRegistry != null) {
|
||||||
new JvmMemoryMetrics().bindTo(meterRegistry);
|
Metrics.globalRegistry.add(meterRegistry);
|
||||||
}
|
meterRegistry.config().commonTags("broker", brokerName);
|
||||||
if (metricsConfiguration.isJvmGc()) {
|
if (metricsConfiguration.isJvmMemory()) {
|
||||||
new JvmGcMetrics().bindTo(meterRegistry);
|
new JvmMemoryMetrics().bindTo(meterRegistry);
|
||||||
}
|
}
|
||||||
if (metricsConfiguration.isJvmThread()) {
|
if (metricsConfiguration.isJvmGc()) {
|
||||||
new JvmThreadMetrics().bindTo(meterRegistry);
|
new JvmGcMetrics().bindTo(meterRegistry);
|
||||||
}
|
}
|
||||||
if (metricsConfiguration.isNettyPool()) {
|
if (metricsConfiguration.isJvmThread()) {
|
||||||
new NettyPooledAllocatorMetrics(PooledByteBufAllocator.DEFAULT.metric()).bindTo(meterRegistry);
|
new JvmThreadMetrics().bindTo(meterRegistry);
|
||||||
|
}
|
||||||
|
if (metricsConfiguration.isNettyPool()) {
|
||||||
|
new NettyPooledAllocatorMetrics(PooledByteBufAllocator.DEFAULT.metric()).bindTo(meterRegistry);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -92,7 +95,6 @@ public class MetricsManager {
|
||||||
builder.accept((metricName, state, f, description) -> {
|
builder.accept((metricName, state, f, description) -> {
|
||||||
Gauge.Builder meter = Gauge
|
Gauge.Builder meter = Gauge
|
||||||
.builder("artemis." + metricName, state, f)
|
.builder("artemis." + metricName, state, f)
|
||||||
.tag("broker", brokerName)
|
|
||||||
.tag("address", address)
|
.tag("address", address)
|
||||||
.tag("queue", queue)
|
.tag("queue", queue)
|
||||||
.description(description);
|
.description(description);
|
||||||
|
@ -109,7 +111,6 @@ public class MetricsManager {
|
||||||
builder.accept((metricName, state, f, description) -> {
|
builder.accept((metricName, state, f, description) -> {
|
||||||
Gauge.Builder meter = Gauge
|
Gauge.Builder meter = Gauge
|
||||||
.builder("artemis." + metricName, state, f)
|
.builder("artemis." + metricName, state, f)
|
||||||
.tag("broker", brokerName)
|
|
||||||
.tag("address", address)
|
.tag("address", address)
|
||||||
.description(description);
|
.description(description);
|
||||||
gaugeBuilders.add(meter);
|
gaugeBuilders.add(meter);
|
||||||
|
@ -125,7 +126,6 @@ public class MetricsManager {
|
||||||
builder.accept((metricName, state, f, description) -> {
|
builder.accept((metricName, state, f, description) -> {
|
||||||
Gauge.Builder meter = Gauge
|
Gauge.Builder meter = Gauge
|
||||||
.builder("artemis." + metricName, state, f)
|
.builder("artemis." + metricName, state, f)
|
||||||
.tag("broker", brokerName)
|
|
||||||
.description(description);
|
.description(description);
|
||||||
gaugeBuilders.add(meter);
|
gaugeBuilders.add(meter);
|
||||||
});
|
});
|
||||||
|
|
|
@ -72,13 +72,18 @@ public class JvmMetricsTest extends ActiveMQTestBase {
|
||||||
.setJvmThread(thread)));
|
.setJvmThread(thread)));
|
||||||
server.start();
|
server.start();
|
||||||
boolean result = false;
|
boolean result = false;
|
||||||
|
String brokerTagValue = "";
|
||||||
for (Meter.Id meterId : MetricsPluginTest.getMetrics(server).keySet()) {
|
for (Meter.Id meterId : MetricsPluginTest.getMetrics(server).keySet()) {
|
||||||
if (meterId.getName().startsWith(match)) {
|
if (meterId.getName().startsWith(match)) {
|
||||||
result = true;
|
result = true;
|
||||||
|
brokerTagValue = meterId.getTag("broker");
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
assertEquals(found, result);
|
assertEquals(found, result);
|
||||||
|
if (found) {
|
||||||
|
assertEquals(brokerTagValue, server.getConfiguration().getName());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,67 @@
|
||||||
|
/*
|
||||||
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
||||||
|
* contributor license agreements. See the NOTICE file distributed with
|
||||||
|
* this work for additional information regarding copyright ownership.
|
||||||
|
* The ASF licenses this file to You 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
|
||||||
|
* <br>
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
* <br>
|
||||||
|
* 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 org.apache.activemq.artemis.tests.integration.plugin;
|
||||||
|
|
||||||
|
import io.micrometer.core.instrument.Meter;
|
||||||
|
import org.apache.activemq.artemis.core.config.MetricsConfiguration;
|
||||||
|
import org.apache.activemq.artemis.core.server.ActiveMQServer;
|
||||||
|
import org.apache.activemq.artemis.core.server.metrics.plugins.SimpleMetricsPlugin;
|
||||||
|
import org.apache.activemq.artemis.tests.util.ActiveMQTestBase;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
public class NettyMetricsTest extends ActiveMQTestBase {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Before
|
||||||
|
public void setUp() throws Exception {
|
||||||
|
super.setUp();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testNettyPoolMetricsPositive() throws Exception {
|
||||||
|
internalTestMetrics(true, true, "netty.pooled");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testNettyPoolMetricsNegative() throws Exception {
|
||||||
|
internalTestMetrics(false, false, "netty.pooled");
|
||||||
|
}
|
||||||
|
|
||||||
|
private void internalTestMetrics(boolean found, boolean pool, String match) throws Exception {
|
||||||
|
ActiveMQServer server = createServer(false, createDefaultInVMConfig()
|
||||||
|
.setMetricsConfiguration(new MetricsConfiguration()
|
||||||
|
.setPlugin(new SimpleMetricsPlugin().init(null))
|
||||||
|
.setNettyPool(pool)));
|
||||||
|
server.start();
|
||||||
|
boolean result = false;
|
||||||
|
String brokerTagValue = "";
|
||||||
|
for (Meter.Id meterId : MetricsPluginTest.getMetrics(server).keySet()) {
|
||||||
|
if (meterId.getName().startsWith(match)) {
|
||||||
|
result = true;
|
||||||
|
brokerTagValue = meterId.getTag("broker");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
assertEquals(found, result);
|
||||||
|
if (found) {
|
||||||
|
assertEquals(brokerTagValue, server.getConfiguration().getName());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue