-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e9bad2a
commit 2fa3722
Showing
6 changed files
with
64 additions
and
0 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
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
28 changes: 28 additions & 0 deletions
28
...ervice-impl/src/main/java/org/hypertrace/config/service/metric/ConfigMetricsReporter.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,28 @@ | ||
package org.hypertrace.config.service.metric; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
import org.hypertrace.core.documentstore.Datastore; | ||
import org.hypertrace.core.serviceframework.docstore.metrics.DocStoreCustomMetricReportingConfig; | ||
import org.hypertrace.core.serviceframework.docstore.metrics.DocStoreMetricsRegistry; | ||
import org.hypertrace.core.serviceframework.spi.PlatformServiceLifecycle; | ||
|
||
public class ConfigMetricsReporter { | ||
private final DocStoreMetricsRegistry metricsRegistry; | ||
|
||
public ConfigMetricsReporter( | ||
final Datastore datastore, final PlatformServiceLifecycle lifecycle) { | ||
metricsRegistry = | ||
new DocStoreMetricsRegistry(datastore) | ||
.withPlatformLifecycle(lifecycle) | ||
.withCustomMetrics(configurationCounterConfig); | ||
} | ||
|
||
public void monitor() { | ||
metricsRegistry.monitor(); | ||
} | ||
|
||
@SuppressWarnings("FieldCanBeLocal") | ||
private final List<DocStoreCustomMetricReportingConfig> configurationCounterConfig = | ||
Collections.emptyList(); | ||
} |
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