We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The MySQL metricbeat module opens a connection to the database here https://github.com/elastic/beats/blob/master/metricbeat/module/mysql/mysql.go#L103
It seems that the Close() call is not being done as needed by the Golang sql driver https://golang.org/pkg/database/sql/driver/#Conn
Close()
sql
The text was updated successfully, but these errors were encountered:
f06cf46
Fixed by #10355.
Sorry, something went wrong.
Close mysql connections when stopping mysql metricsets (elastic#10355)
63732e9
Fixes elastic#9415 by closing the db handle. (cherry picked from commit f06cf46)
Close mysql connections when stopping mysql metricsets (#10355) (#10394)
8b235a9
Fixes #9415 by closing the db handle. (cherry picked from commit f06cf46) Co-authored-by: Jaime A <[email protected]>
Successfully merging a pull request may close this issue.
The MySQL metricbeat module opens a connection to the database here https://github.com/elastic/beats/blob/master/metricbeat/module/mysql/mysql.go#L103
It seems that the
Close()
call is not being done as needed by the Golangsql
driver https://golang.org/pkg/database/sql/driver/#ConnThe text was updated successfully, but these errors were encountered: