Closed
Bug 928213
Opened 11 years ago
Closed 10 years ago
New relic database check - open tables vs % of limit
Categories
(Data & BI Services Team :: DB: MySQL, task)
Tracking
(Not tracked)
RESOLVED
WONTFIX
People
(Reporter: bjohnson, Unassigned)
References
Details
This bug is to add a custom new relic database monitor for open tables vs % of limit.
This can be accomplished with the below sql:
select (gs.variable_value/gv.variable_value)*100 from information_schema.global_status gs, information_schema.global_variables gv where gs.variable_name = 'OPEN_TABLES' and gv.variable_name = 'OPEN_TABLES_LIMIT';
When the module is updated to allow custom sql, I will add this.
Reporter | ||
Updated•11 years ago
|
Assignee: server-ops-database → bjohnson
Updated•10 years ago
|
Product: mozilla.org → Data & BI Services Team
Updated•10 years ago
|
Assignee: bjohnson → server-ops-database
Updated•10 years ago
|
Status: NEW → RESOLVED
Closed: 10 years ago
Resolution: --- → WONTFIX
You need to log in
before you can comment on or make changes to this bug.
Description
•