-
Notifications
You must be signed in to change notification settings - Fork 36
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(redis): added endpoint filtering #1448
Conversation
d087cae
to
64900b4
Compare
c03864a
to
db431ac
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤯
d26f269
to
536f492
Compare
fd2f3a3
to
64c1955
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some more comments incoming 🚢
Commit suggestion:
feat(redis): added endpoint filtering |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comments 🧜🏽
fb22a81
to
4a9d0ea
Compare
4a9d0ea
to
65428b0
Compare
Introduced a configuration to exclude specific Redis commands from tracing.
This can be configured via following ways:
Add the configuration to the agent's
configuration.yaml
file:Tracer configuration:
Using an Environment Variable:
INSTANA_IGNORE_ENDPOINTS=redis:get,type;
With this setup, the tracer will ignore Redis commands such as
TYPE
orGET
, 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
ref INSTA-16323
design discussion https://github.ibm.com/instana/requests-for-discussion/pull/84