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 048f4f6 commit 3db5fffCopy full SHA for 3db5fff
src/shared/main/tv/codely/shared/domain/Monitoring.java
@@ -0,0 +1,13 @@
1
+package tv.codely.shared.domain;
2
+
3
+import java.util.HashMap;
4
5
+public interface Monitoring {
6
+ void incrementCounter(int times);
7
8
+ void incrementGauge(int times);
9
+ void decrementGauge(int times);
10
+ void setGauge(int value);
11
12
+ void observeHistogram(int value, HashMap<String, String> labels);
13
+}
0 commit comments