forked from opensearch-project/OpenSearch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Gagan Juneja <[email protected]>
- Loading branch information
Gagan Juneja
committed
Oct 4, 2023
1 parent
ee1df15
commit 7f7b065
Showing
9 changed files
with
273 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
...alClusterTest/java/org/opensearch/telemetry/metrics/InMemorySingletonMetricsExporter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.telemetry.metrics; | ||
|
||
import java.util.Collection; | ||
import java.util.List; | ||
|
||
import io.opentelemetry.sdk.common.CompletableResultCode; | ||
import io.opentelemetry.sdk.metrics.InstrumentType; | ||
import io.opentelemetry.sdk.metrics.data.AggregationTemporality; | ||
import io.opentelemetry.sdk.metrics.data.MetricData; | ||
import io.opentelemetry.sdk.metrics.export.MetricExporter; | ||
import io.opentelemetry.sdk.testing.exporter.InMemoryMetricExporter; | ||
|
||
public class InMemorySingletonMetricsExporter implements MetricExporter { | ||
|
||
public static final InMemorySingletonMetricsExporter INSTANCE = new InMemorySingletonMetricsExporter(InMemoryMetricExporter.create()); | ||
|
||
private static InMemoryMetricExporter delegate; | ||
|
||
public static InMemorySingletonMetricsExporter create() { | ||
return INSTANCE; | ||
} | ||
|
||
private InMemorySingletonMetricsExporter(InMemoryMetricExporter delegate) { | ||
InMemorySingletonMetricsExporter.delegate = delegate; | ||
} | ||
|
||
@Override | ||
public CompletableResultCode export(Collection<MetricData> metrics) { | ||
return delegate.export(metrics); | ||
} | ||
|
||
@Override | ||
public CompletableResultCode flush() { | ||
return delegate.flush(); | ||
} | ||
|
||
@Override | ||
public CompletableResultCode shutdown() { | ||
return delegate.shutdown(); | ||
} | ||
|
||
public List<MetricData> getFinishedMetricItems() { | ||
return delegate.getFinishedMetricItems(); | ||
} | ||
|
||
/** | ||
* Clears the state. | ||
*/ | ||
public void reset() { | ||
delegate.reset(); | ||
} | ||
|
||
@Override | ||
public AggregationTemporality getAggregationTemporality(InstrumentType instrumentType) { | ||
return delegate.getAggregationTemporality(instrumentType); | ||
} | ||
} |
59 changes: 59 additions & 0 deletions
59
...alClusterTest/java/org/opensearch/telemetry/metrics/TelemetryMetricsDisabledSanityIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.telemetry.metrics; | ||
|
||
import org.opensearch.common.settings.Settings; | ||
import org.opensearch.common.unit.TimeValue; | ||
import org.opensearch.plugins.Plugin; | ||
import org.opensearch.telemetry.IntegrationTestOTelTelemetryPlugin; | ||
import org.opensearch.telemetry.OTelTelemetrySettings; | ||
import org.opensearch.telemetry.TelemetrySettings; | ||
import org.opensearch.telemetry.metrics.noop.NoopCounter; | ||
import org.opensearch.telemetry.metrics.noop.NoopMetricsRegistry; | ||
import org.opensearch.test.OpenSearchSingleNodeTestCase; | ||
|
||
import java.util.Arrays; | ||
import java.util.Collection; | ||
|
||
public class TelemetryMetricsDisabledSanityIT extends OpenSearchSingleNodeTestCase { | ||
|
||
@Override | ||
protected Settings nodeSettings() { | ||
return Settings.builder() | ||
.put(super.nodeSettings()) | ||
.put(TelemetrySettings.METRICS_FEATURE_ENABLED_SETTING.getKey(), false) | ||
.put( | ||
OTelTelemetrySettings.OTEL_METRICS_EXPORTER_CLASS_SETTING.getKey(), | ||
"org.opensearch.telemetry.metrics.InMemorySingletonMetricsExporter" | ||
) | ||
.put(TelemetrySettings.METRICS_PUBLISH_INTERVAL_SETTING.getKey(), TimeValue.timeValueSeconds(1)) | ||
.build(); | ||
} | ||
|
||
@Override | ||
protected Collection<Class<? extends Plugin>> getPlugins() { | ||
return Arrays.asList(IntegrationTestOTelTelemetryPlugin.class); | ||
} | ||
|
||
@Override | ||
protected boolean addMockTelemetryPlugin() { | ||
return false; | ||
} | ||
|
||
public void testSanityChecksWhenMetricsEnabled() throws Exception { | ||
MetricsRegistry metricsRegistry = node().injector().getInstance(MetricsRegistry.class); | ||
|
||
Counter counter = metricsRegistry.createCounter("test-counter", "test", "1"); | ||
counter.add(1.0); | ||
|
||
assertTrue(metricsRegistry instanceof NoopMetricsRegistry); | ||
assertTrue(counter instanceof NoopCounter); | ||
} | ||
|
||
} |
63 changes: 63 additions & 0 deletions
63
...alClusterTest/java/org/opensearch/telemetry/metrics/TelemetryMetricsEnabledCounterIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.telemetry.metrics; | ||
|
||
import org.opensearch.common.settings.Settings; | ||
import org.opensearch.common.unit.TimeValue; | ||
import org.opensearch.plugins.Plugin; | ||
import org.opensearch.telemetry.IntegrationTestOTelTelemetryPlugin; | ||
import org.opensearch.telemetry.OTelTelemetrySettings; | ||
import org.opensearch.telemetry.TelemetrySettings; | ||
import org.opensearch.test.OpenSearchSingleNodeTestCase; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.Collection; | ||
|
||
import io.opentelemetry.sdk.metrics.data.DoublePointData; | ||
|
||
public class TelemetryMetricsEnabledCounterIT extends OpenSearchSingleNodeTestCase { | ||
|
||
@Override | ||
protected Settings nodeSettings() { | ||
return Settings.builder() | ||
.put(super.nodeSettings()) | ||
.put(TelemetrySettings.METRICS_FEATURE_ENABLED_SETTING.getKey(), true) | ||
.put( | ||
OTelTelemetrySettings.OTEL_METRICS_EXPORTER_CLASS_SETTING.getKey(), | ||
"org.opensearch.telemetry.metrics.InMemorySingletonMetricsExporter" | ||
) | ||
.put(TelemetrySettings.METRICS_PUBLISH_INTERVAL_SETTING.getKey(), TimeValue.timeValueSeconds(1)) | ||
.build(); | ||
} | ||
|
||
@Override | ||
protected Collection<Class<? extends Plugin>> getPlugins() { | ||
return Arrays.asList(IntegrationTestOTelTelemetryPlugin.class); | ||
} | ||
|
||
@Override | ||
protected boolean addMockTelemetryPlugin() { | ||
return false; | ||
} | ||
|
||
public void testCounter() throws Exception { | ||
MetricsRegistry metricsRegistry = node().injector().getInstance(MetricsRegistry.class); | ||
|
||
Counter counter = metricsRegistry.createCounter("test-counter", "test", "1"); | ||
counter.add(1.0); | ||
// Sleep for about 2s to wait for metrics to be published. | ||
Thread.sleep(2000); | ||
|
||
InMemorySingletonMetricsExporter exporter = InMemorySingletonMetricsExporter.INSTANCE; | ||
double value = ((DoublePointData) ((ArrayList) exporter.getFinishedMetricItems().get(0).getDoubleSumData().getPoints()).get(0)) | ||
.getValue(); | ||
assertEquals(1.0, value, 0.0); | ||
} | ||
} |
72 changes: 72 additions & 0 deletions
72
...terTest/java/org/opensearch/telemetry/metrics/TelemetryMetricsEnabledUpDownCounterIT.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.telemetry.metrics; | ||
|
||
import org.opensearch.common.settings.Settings; | ||
import org.opensearch.common.unit.TimeValue; | ||
import org.opensearch.plugins.Plugin; | ||
import org.opensearch.telemetry.IntegrationTestOTelTelemetryPlugin; | ||
import org.opensearch.telemetry.OTelTelemetrySettings; | ||
import org.opensearch.telemetry.TelemetrySettings; | ||
import org.opensearch.test.OpenSearchSingleNodeTestCase; | ||
import org.junit.After; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Arrays; | ||
import java.util.Collection; | ||
|
||
import io.opentelemetry.sdk.metrics.data.DoublePointData; | ||
|
||
public class TelemetryMetricsEnabledUpDownCounterIT extends OpenSearchSingleNodeTestCase { | ||
|
||
@Override | ||
protected Settings nodeSettings() { | ||
return Settings.builder() | ||
.put(super.nodeSettings()) | ||
.put(TelemetrySettings.METRICS_FEATURE_ENABLED_SETTING.getKey(), true) | ||
.put( | ||
OTelTelemetrySettings.OTEL_METRICS_EXPORTER_CLASS_SETTING.getKey(), | ||
"org.opensearch.telemetry.metrics.InMemorySingletonMetricsExporter" | ||
) | ||
.put(TelemetrySettings.METRICS_PUBLISH_INTERVAL_SETTING.getKey(), TimeValue.timeValueSeconds(1)) | ||
.build(); | ||
} | ||
|
||
@Override | ||
protected Collection<Class<? extends Plugin>> getPlugins() { | ||
return Arrays.asList(IntegrationTestOTelTelemetryPlugin.class); | ||
} | ||
|
||
@Override | ||
protected boolean addMockTelemetryPlugin() { | ||
return false; | ||
} | ||
|
||
public void testUpDownCounter() throws Exception { | ||
|
||
MetricsRegistry metricsRegistry = node().injector().getInstance(MetricsRegistry.class); | ||
|
||
Counter counter = metricsRegistry.createUpDownCounter("test-up-down-counter", "test", "1"); | ||
counter.add(1.0); | ||
counter.add(-2.0); | ||
// Sleep for about 2s to wait for metrics to be published. | ||
Thread.sleep(2000); | ||
|
||
InMemorySingletonMetricsExporter exporter = InMemorySingletonMetricsExporter.INSTANCE; | ||
double value = ((DoublePointData) ((ArrayList) exporter.getFinishedMetricItems().get(0).getDoubleSumData().getPoints()).get(0)) | ||
.getValue(); | ||
assertEquals(-1.0, value, 0.0); | ||
} | ||
|
||
@After | ||
public void reset() { | ||
InMemorySingletonMetricsExporter.INSTANCE.reset(); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters