![]() |
MySQL 9.2.0
Source Code Documentation
|
Class that intends to be a dummy end point for applier metrics. More...
#include <applier_metrics_stub.h>
Public Member Functions | |
void | store_last_applier_start () override |
Remember "now" as the last applier start time. More... | |
Time_based_metric_interface & | get_sum_applier_execution_time () override |
Return time metric for total applier execution time. More... | |
int64_t | get_last_applier_start_micros () const override |
Gets the time point when the metric timer started. More... | |
int64_t | get_total_execution_time () const override |
Returns the total time the applier was running. More... | |
void | inc_transactions_committed_count (int64_t amount) override |
increment the number of transactions committed. More... | |
int64_t | get_transactions_committed_count () const override |
Gets the number of transactions committed. More... | |
void | inc_transactions_received_count (int64_t amount) override |
increment the number of transactions pending. More... | |
int64_t | get_transactions_received_count () const override |
Gets the number of transactions pending. More... | |
void | inc_transactions_committed_size_sum (int64_t amount) override |
increment the size of transactions committed. More... | |
int64_t | get_transactions_committed_size_sum () const override |
Gets the total sum of the size of committed transactions. More... | |
void | inc_transactions_received_size_sum (int64_t amount) override |
increment the pending size of queued transactions. More... | |
int64_t | get_transactions_received_size_sum () const override |
Gets the pending size sum of queued transactions. More... | |
void | inc_events_committed_count (int64_t v) override |
increment the number of events scheduled by a given amount. More... | |
int64_t | get_events_committed_count () const override |
Gets the number of events scheduled. More... | |
void | reset () override |
Resets the statistics to zero. More... | |
bool | is_after_metrics_breakpoint () const override |
void | set_metrics_breakpoint (const char *relay_log_filename) override |
Do nothing. More... | |
void | check_metrics_breakpoint (const char *relay_log_filename) override |
Do nothing. More... | |
Time_based_metric_interface & | get_work_from_source_wait_metric () override |
Returns time metrics for waits on work from the source. More... | |
Time_based_metric_interface & | get_workers_available_wait_metric () override |
Returns time metrics for waits on available workers. More... | |
Time_based_metric_interface & | get_transaction_dependency_wait_metric () override |
Returns time metrics for waits on transaction dependecies on workers. More... | |
Time_based_metric_interface & | get_worker_queues_memory_exceeds_max_wait_metric () override |
Returns time metrics for waits when a worker queue exceeds max memory. More... | |
Time_based_metric_interface & | get_worker_queues_full_wait_metric () override |
Returns time metrics for waits when the worker queues are full. More... | |
Time_based_metric_interface & | get_time_to_read_from_relay_log_metric () override |
Returns time metrics for relay log read wait times. More... | |
void | inc_commit_order_wait_stored_metrics (int64_t count, int64_t time) override |
Increments the stored values for the commit order metrics. More... | |
int64_t | get_number_of_waits_on_commit_order () const override |
Gets the stored number of times we waited on committed order. More... | |
int64_t | get_wait_time_on_commit_order () const override |
Gets the stored summed time waited on commit order. More... | |
![]() | |
virtual | ~Applier_metrics_interface ()=default |
Private Attributes | |
Time_based_metric_stub | m_sum_applier_execution_time |
Tracks the time the applier has been executing. More... | |
Time_based_metric_stub | m_wait_for_work_from_source |
Tracks the number and time waited for transactions to apply. More... | |
Time_based_metric_stub | m_wait_for_worker_available |
Tracks the number and time waited for transactions to apply. More... | |
Time_based_metric_stub | m_wait_for_transaction_dependency |
Tracks the number and time waited for transaction dependencies. More... | |
Time_based_metric_stub | m_wait_due_to_worker_queues_memory_exceeds_max |
Tracks the number and time waited for transaction dependencies. More... | |
Time_based_metric_stub | m_wait_due_to_worker_queue_full |
Tracks the number and time waited for transaction dependencies. More... | |
Time_based_metric_stub | m_time_to_read_from_relay_log |
Tracks the number and time waited for transaction dependencies. More... | |
Class that intends to be a dummy end point for applier metrics.
|
overridevirtual |
Do nothing.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Gets the number of events scheduled.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Gets the time point when the metric timer started.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Gets the stored number of times we waited on committed order.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Return time metric for total applier execution time.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Returns time metrics for relay log read wait times.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Returns the total time the applier was running.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Returns time metrics for waits on transaction dependecies on workers.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Gets the number of transactions committed.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Gets the total sum of the size of committed transactions.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Gets the number of transactions pending.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Gets the pending size sum of queued transactions.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Gets the stored summed time waited on commit order.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Returns time metrics for waits on work from the source.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Returns time metrics for waits when the worker queues are full.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Returns time metrics for waits when a worker queue exceeds max memory.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Returns time metrics for waits on available workers.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Increments the stored values for the commit order metrics.
count | The count for commit order waits |
time | The time waited on commit order |
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
increment the number of events scheduled by a given amount.
v | the amount of events to increment. |
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
increment the number of transactions committed.
amount | the amount of transactions to increment. |
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
increment the size of transactions committed.
amount | the size amount to increment. |
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
increment the number of transactions pending.
amount | the amount of transactions to increment. |
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
increment the pending size of queued transactions.
amount | the size amount to increment. |
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Resets the statistics to zero.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Do nothing.
Implements cs::apply::instruments::Applier_metrics_interface.
|
overridevirtual |
Remember "now" as the last applier start time.
Implements cs::apply::instruments::Applier_metrics_interface.
|
private |
Tracks the time the applier has been executing.
|
private |
Tracks the number and time waited for transaction dependencies.
|
private |
Tracks the number and time waited for transaction dependencies.
|
private |
Tracks the number and time waited for transaction dependencies.
|
private |
Tracks the number and time waited for transaction dependencies.
|
private |
Tracks the number and time waited for transactions to apply.
|
private |
Tracks the number and time waited for transactions to apply.