Skip to content

Commit 3db5fff

Browse files
committed
Add monitoring interface
1 parent 048f4f6 commit 3db5fff

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)