We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b8a196 commit 51f8feaCopy full SHA for 51f8fea
airbyte-metrics/metrics-lib/src/main/java/io/airbyte/metrics/lib/MetricClientFactory.java
@@ -56,6 +56,8 @@ public static synchronized void initialize(final MetricEmittingApp metricEmittin
56
throw new RuntimeException("You cannot initialize configuration more than once.");
57
}
58
59
+ LOGGER.info("metric client is:");
60
+ LOGGER.info(configs.getMetricClient());
61
if (configs.getMetricClient().equals(DATADOG_METRIC_CLIENT)) {
62
if (configs.getDDAgentHost() == null || configs.getDDDogStatsDPort() == null) {
63
throw new RuntimeException("DD_AGENT_HOST is null or DD_DOGSTATSD_PORT is null. Both are required to use the DataDog Metric Client");
0 commit comments