mirror of
https://github.com/signalapp/Signal-Server
synced 2026-04-20 19:48:07 +01:00
Add metric publishers to DynamoDB clients
This commit is contained in:
committed by
Jon Chambers
parent
78b40397f9
commit
946a486c4b
@@ -0,0 +1,15 @@
|
||||
package org.whispersystems.textsecuregcm.metrics;
|
||||
|
||||
import software.amazon.awssdk.metrics.MetricCollection;
|
||||
import software.amazon.awssdk.metrics.MetricPublisher;
|
||||
|
||||
public class NoopAwsSdkMetricPublisher implements MetricPublisher {
|
||||
|
||||
@Override
|
||||
public void publish(final MetricCollection metricCollection) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void close() {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user