BlockedTransaction CloudWatch alarm always in INSUFFICIENT DATA state.

0

Hi, I want to setup an alarm for AWS RDS mysql database. Whenever there is blocking in database sent a mail notification. I set-up it like below. But the alarm is always in INSUFFICIENT DATA state. i simulated blocking in database but no effect. Alarm description

Does anyone know what this BlockedTransaction metrics is evaluating?

1 Antwort
0

Blockedtransactions is a cloudwatch metrics applicable for Aurora MySQL only. It gives average number of transactions in the database that are blocked per second this metric is based on innodb metric It is # of transactions currently waiting on row locks it is evaluated using

SELECT name, subsystem, status, count FROM INFORMATION_SCHEMA.INNODB_METRICS where NAME like 'LOCK_ROW_LOCK_CURRENT_WAITS';

+-----------------------------+-----------+---------+-------+
| name | subsystem | status | count |
+-----------------------------+-----------+---------+-------+
| lock_row_lock_current_waits | lock | enabled | 0 |
+-----------------------------+-----------+---------+-------+
1 row in set (0.08 sec)
AWS
beantwortet vor einem Jahr

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen