blob: 451b2da72533f5ff582b6d2ff3178ff327a021d8 [file] [log] [blame]
/*
* 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
*
* http://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 org.apache.geode.metrics;
import static java.util.stream.Collectors.toList;
import static org.apache.geode.distributed.ConfigurationProperties.NAME;
import static org.assertj.core.api.Assertions.assertThat;
import java.net.UnknownHostException;
import java.util.List;
import io.micrometer.core.instrument.Meter;
import io.micrometer.core.instrument.MeterRegistry;
import io.micrometer.core.instrument.Tag;
import org.junit.After;
import org.junit.Test;
import org.apache.geode.cache.CacheFactory;
import org.apache.geode.internal.cache.InternalCache;
import org.apache.geode.internal.net.SocketCreator;
public class CacheCommonTagsTest {
private InternalCache cache;
@After
public void tearDown() {
if (cache != null) {
cache.close();
}
}
@Test
public void metersHaveHostTag() throws UnknownHostException {
cache = (InternalCache) new CacheFactory().create();
MeterRegistry meterRegistry = cache.getMeterRegistry();
List<Meter> meters = meterRegistry.getMeters();
assertThat(meters)
.isNotEmpty();
for (Meter meter : meters) {
Meter.Id meterId = meter.getId();
assertThat(meter.getId().getTags())
.as("Tags for meter with name " + meterId.getName())
.contains(Tag.of("host", SocketCreator.getHostName(SocketCreator.getLocalHost())));
}
}
@Test
public void metersHaveClusterTag() {
cache = (InternalCache) new CacheFactory().create();
MeterRegistry meterRegistry = cache.getMeterRegistry();
List<Meter> meters = meterRegistry.getMeters();
assertThat(meters)
.isNotEmpty();
for (Meter meter : meters) {
Meter.Id meterId = meter.getId();
assertThat(meter.getId().getTags())
.as("Tags for meter with name " + meterId.getName())
.contains(Tag.of("cluster", String.valueOf(-1)));
}
}
@Test
public void metersHaveMemberTagIfMemberNameExists() {
String memberName = "my-name";
cache = (InternalCache) new CacheFactory().set(NAME, memberName).create();
MeterRegistry meterRegistry = cache.getMeterRegistry();
List<Meter> meters = meterRegistry.getMeters();
assertThat(meters)
.isNotEmpty();
for (Meter meter : meters) {
Meter.Id meterId = meter.getId();
assertThat(meter.getId().getTags())
.as("Tags for meter with name " + meterId.getName())
.contains(Tag.of("member", memberName));
}
}
@Test
public void metersDoNotHaveMemberTagIfMemberNameIsEmpty() {
cache = (InternalCache) new CacheFactory().set(NAME, "").create();
MeterRegistry meterRegistry = cache.getMeterRegistry();
List<Meter> meters = meterRegistry.getMeters();
assertThat(meters)
.isNotEmpty();
for (Meter meter : meters) {
Meter.Id meterId = meter.getId();
List<String> tagNames = meterId.getTags().stream().map(Tag::getKey).collect(toList());
assertThat(tagNames)
.as("Tag names for meter with name " + meterId.getName())
.doesNotContain("member");
}
}
@Test
public void metersDoNotHaveMemberTagIfMemberNameIsMissing() {
cache = (InternalCache) new CacheFactory().create();
MeterRegistry meterRegistry = cache.getMeterRegistry();
List<Meter> meters = meterRegistry.getMeters();
assertThat(meters)
.isNotEmpty();
for (Meter meter : meters) {
Meter.Id meterId = meter.getId();
List<String> tagNames = meterId.getTags().stream().map(Tag::getKey).collect(toList());
assertThat(tagNames)
.as("Tag names for meter with name " + meterId.getName())
.doesNotContain("member");
}
}
}