Network statistics


Job details

Name: Network statistics
Platform: Mysql
Category: Performance
Description: This job collects the number of bytes received and sent from all clients.
Long description: This job collects the number of bytes received and sent from all clients.
Version: 1.2
Default schedule: 1,6,11,16,21,26,31,36,41,46,51,56 * * *
Requires engine install: Yes
Compatibility tag: .[type=‘instance’ & is_mysql_branch=‘1′]/.[hasengine=‘YES’ & use_global_variables_performance_schema = ‘1′ ]

Parameters

Name Default value Description
history threshold 7 The maximum number of day to keep statistics for in the history tables.
threshold (time) 15 A period of time (in minutes) the network statistics are calculated for (default 15 minutes)

Job Summary

SELECT bytes_received, bytes_sent FROM dbw_network_statistics_last

Report Summary

The output generated from this database monitoring job will typically be represented in a report that includes graphical representations of the network traffic per minute, received and sent data over the last 24 hours.

The graph will display the average network traffic per minute, broken down into the amount of data received and sent. This information can help provide a visual comparison of the amount of data being received and sent over time, which can be useful for identifying any unexpected spikes or drops in network activity.

Cleanup Process

In case of failure, the job has a cleanup process defined which includes dropping the network statistics tables and procedures:

DROP TABLE dbw_network_statistics_histr
DROP TABLE dbw_network_statistics_last
DROP PROCEDURE dbw_network_statistics

Other Features