Skip to content

Commit f1797c8

Browse files
[BAMBOO-3774] temperary update.
1 parent e19d99c commit f1797c8

File tree

2 files changed

+587
-0
lines changed

2 files changed

+587
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
package io.opentelemetry.test.annotation;
2+
3+
import io.opentelemetry.javaagent.instrumentation.instrumentationannotations.annotations.Counted;
4+
5+
public class CountedExample {
6+
7+
@Counted
8+
public String defaultExample() {
9+
return "defualt example";
10+
}
11+
12+
@Counted("another.name")
13+
public String exampleWithAnotherName() {
14+
return "example with another name.";
15+
}
16+
17+
}

0 commit comments

Comments
 (0)