Skip to content

Commit

Permalink
[BAMBOO-3774] temperary update.
Browse files Browse the repository at this point in the history
  • Loading branch information
Duncan-tree-zhou committed May 20, 2024
1 parent e19d99c commit f1797c8
Show file tree
Hide file tree
Showing 2 changed files with 587 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
package io.opentelemetry.test.annotation;

import io.opentelemetry.javaagent.instrumentation.instrumentationannotations.annotations.Counted;

public class CountedExample {

@Counted
public String defaultExample() {
return "defualt example";
}

@Counted("another.name")
public String exampleWithAnotherName() {
return "example with another name.";
}

}
Loading

0 comments on commit f1797c8

Please sign in to comment.