-
Notifications
You must be signed in to change notification settings - Fork 141
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
Filter redis dependency logs #1405
Comments
Hey @skhilliard,
|
@JacksonWeber That's what is so odd. We upgraded to the 3.x version of app insights (3.2.1) back in September. We didn't see the increase in the volume of redis dependency entries (specifically for the PUBLISH operation) until December. Regarding using a SpanProcessor...we used the "upgrade" path vs the "clean install" path described here: https://learn.microsoft.com/en-us/azure/azure-monitor/app/opentelemetry-nodejs-migrate?tabs=cleaninstall Since we did that, it isn't possible to use a SpanProcessor, is it? |
@skhilliard That is strange. Did you update to a higher version of the v3 SDK recently? Likely that it came with a more recent version of the redis instrumentation that may collect more telemetry. As for using |
@JacksonWeber Yes....it is very odd. We did upgrade to 3.3.0, but that would have been active in November. That's why I was wondering if perhaps us upgrading to Node 22 (we were on 20) was perhaps linked to this. We can see if we can "hook in" a SpanProcessor even though our use of OpenTelemetry is via the 3.x application insights package. |
@skhilliard Please let me know if you have any trouble implementing the spanProcessor. Thanks! |
@JacksonWeber Will do! |
We have a Node.js application and are currently using version 3.3.0 of the library.
We recently noticed a very large increase in our Application Insights log costs in the Azure portal and have determined that it is largely due to a big increase in the number of Redis dependency log entries being created (comparing the month of November vs December and beyond). These are valid logs of PUBLISH events, but for some reason these additional items only started appearing after November...not sure why they weren't appearing before as these aren't new events and we've not changed versions of this package in the timeframe mentioned above. The only theory at the moment is due to us upgrading to Node 22 (from Node 20).
I have two questions regarding this:
Thanks,
Kelly
The text was updated successfully, but these errors were encountered: