-
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.
chore: add ConfigMetricReporter to report metrics around configs (#232)
- Loading branch information
1 parent
aec20fe
commit 9519fa1
Showing
30 changed files
with
109 additions
and
34 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
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
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
25 changes: 25 additions & 0 deletions
25
...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,25 @@ | ||
package org.hypertrace.config.service.metric; | ||
|
||
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, | ||
List<DocStoreCustomMetricReportingConfig> configurationCounterConfig) { | ||
metricsRegistry = | ||
new DocStoreMetricsRegistry(datastore) | ||
.withPlatformLifecycle(lifecycle) | ||
.withCustomMetrics(configurationCounterConfig); | ||
} | ||
|
||
public void monitor() { | ||
metricsRegistry.monitor(); | ||
} | ||
} |
Oops, something went wrong.