Skip to content

Commit

Permalink
Fix compilation issue
Browse files Browse the repository at this point in the history
Signed-off-by: Gagan Juneja <gjjuneja@amazon.com>
  • Loading branch information
Gagan Juneja committed Jun 8, 2024
1 parent 3d78aea commit 4f3e265
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import org.opensearch.telemetry.metrics.Counter;
import org.opensearch.telemetry.metrics.Histogram;
import org.opensearch.telemetry.metrics.MetricsRegistry;
import org.opensearch.telemetry.metrics.TaggedMeasurement;
import org.opensearch.telemetry.metrics.tags.Tags;

import java.io.Closeable;
Expand Down Expand Up @@ -66,6 +67,11 @@ public Closeable createGauge(String name, String description, String unit, Suppl
return null;
}

@Override
public Closeable createGauge(String name, String description, String unit, Supplier<TaggedMeasurement> value) {
return null;
}

@Override
public void close() throws IOException {}
}

0 comments on commit 4f3e265

Please sign in to comment.