Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion span-stacktrace/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ You can enable the stacktrace span processor using declarative YAML configuratio
file_format: 1.0-rc.1
tracer_provider:
processors:
- experimental_stacktrace:
- stacktrace/development:
min_duration: 10 # minimal duration in ms, default is 5, MUST be an integer
filter: my.class.Name # optional, default is to include all spans
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
public class StackTraceComponentProvider implements ComponentProvider<SpanProcessor> {
@Override
public String getName() {
return "experimental_stacktrace";
return "stacktrace/development";
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void endToEnd() {
"file_format: 1.0-rc.1\n"
+ "tracer_provider:\n"
+ " processors:\n"
+ " - experimental_stacktrace: \n"
+ " - stacktrace/development: \n"
+ " min_duration: 100\n"
+ " filter: io.opentelemetry.contrib.stacktrace.StackTraceSpanProcessorTest$YesPredicate\n";

Expand Down