Skip to content
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

feat: added configuration to ignore specific endpoints from tracing #1448

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from

Conversation

aryamohanan
Copy link
Contributor

@aryamohanan aryamohanan commented Nov 13, 2024

Introduced a configuration to exclude specific Redis commands from tracing.

This can be configured via the agent arguments as follows:

com.instana.tracing:
    ignore-endpoints: 
       redis: type|get

Tracer configuration:

tracing: {
  ignoreEndpoints: {
    redis: ['set', 'get']
  }
}

With this setup, the tracer will ignore Redis commands such as Type or Get, and any other Redis command can be added to the list for exclusion. This enhancement improves performance by reducing unnecessary tracing for specific Redis operations.

TODO

  • Generic implementation Design
  • Implementation
  • Public documentation

ref INSTA-16323

@aryamohanan aryamohanan changed the title feat: added configuration to ignore specific endpoints from tracing. feat: added configuration to ignore specific endpoints from tracing Nov 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant