-
Notifications
You must be signed in to change notification settings - Fork 5
Update data capture to match path pattern #60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -33,6 +33,9 @@ message AgentConfig { | |
|
|
||
| // resource_attributes map define the static list of resources which is configured on the tracer | ||
| map<string, string> resource_attributes = 7; | ||
|
|
||
| // custom_data_capture_endpoints list the custom endpoints with respective data capture rules | ||
| repeated CustomDataCaptureEndpoint custom_data_capture_endpoints = 8; | ||
| } | ||
|
|
||
| // Reporting covers the options related to the mechanics for sending data to the | ||
|
|
@@ -127,3 +130,17 @@ message JavaAgent { | |
| // filter_jar_paths is the list of path to filter jars, separated by `,` | ||
| repeated google.protobuf.StringValue filter_jar_paths = 1; | ||
| } | ||
|
|
||
| // CustomDataCaptureEndpoint represents a custom data capture rule for an endpoint that matches | ||
|
||
| // the given url pattern and host header | ||
| message CustomDataCaptureEndpoint { | ||
|
||
|
|
||
| // data_capture describes the data being captured by instrumentation for this endpoint | ||
| DataCapture data_capture = 1; | ||
|
||
|
|
||
| // url_pattern describes the url pattern to match for this endpoint | ||
| google.protobuf.StringValue url_pattern = 2; | ||
shashank11p marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| // host_header describes the host header to match for this endpoint | ||
| google.protobuf.StringValue host_header = 3; | ||
| } | ||
Uh oh!
There was an error while loading. Please reload this page.