You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 1, 2022. It is now read-only.
After installing this gem our memory utilization started increasing linearly instead of leveling off after startup of the application as it had previously. Removing the gem resolved this.
Our configuration was pretty simple:
config.server_middleware do |chain|
chain.add(
Sidekiq::Middleware::Server::Datadog,
metric_name: "ihub.sidekiq.job",
tags: job_tags
)
end
The gem did not collect the metrics we were looking for because of how we are running Sidekiq jobs, but I thought it would be useful to capture this potential issue in case other people are see it. Happy to provide any other information if it would be useful.
The text was updated successfully, but these errors were encountered:
@dmagliola is that something you could possibly investigate? Sounds like something is not being properly flushed in Datadog::Statsd. I don't us accumulating anything so the leak must be there somewhere.
After installing this gem our memory utilization started increasing linearly instead of leveling off after startup of the application as it had previously. Removing the gem resolved this.
Our configuration was pretty simple:
The gem did not collect the metrics we were looking for because of how we are running Sidekiq jobs, but I thought it would be useful to capture this potential issue in case other people are see it. Happy to provide any other information if it would be useful.
The text was updated successfully, but these errors were encountered: