Docs ยป Supported integrations in Splunk Observability Cloud ยป Configure application receivers for databases ยป MySQL (deprecated)

MySQL (deprecated) ๐Ÿ”—

Caution

The MySQL monitor is now deprecated and will reach of End of Support on October 31st, 2024. During this period only critical security and bug fixes are provided. When End of Support is reached, the monitor will be removed and no longer be supported, and you wonโ€™t be able to use it to send data to Splunk Observability Cloud.

To monitor your MySQL databases you can use the native OpenTelemetry MySQL receiver instead. See MySQL receiver to learn more.

The Splunk Distribution of the OpenTelemetry Collector uses the Smart Agent receiver with the MySQL monitor type to retrieve metrics and logs from MySQL.

This monitor connects to a MySQL instance and reports on the values returned by a SHOW STATUS command, which include the following:

  • Number of commands processed

  • Table and row operations (handlers)

  • State of the query cache

  • Status of MySQL threads

  • Network traffic

This integration is only available on Kubernetes and Linux.

Benefits ๐Ÿ”—

After you configure the integration, you can access these features:

Installation ๐Ÿ”—

Follow these steps to deploy this integration:

  1. Deploy the Splunk Distribution of OpenTelemetry Collector to your host or container platform:

  2. Configure the monitor, as described in the Configuration section.

  3. Restart the Splunk Distribution of OpenTelemetry Collector.

Creating a MySQL user for this monitor ๐Ÿ”—

To create a MySQL user for this monitor, run the following commands:

CREATE USER '<username>'@'localhost' IDENTIFIED BY '<password>';
-- Give appropriate permissions
-- ("GRANT USAGE" is synonymous to "no privileges")
GRANT USAGE ON *.* TO '<username>'@'localhost';
-- Permissions for the stats options
GRANT REPLICATION CLIENT ON *.* TO '<username>'@'localhost';

The new user only has enough privileges to connect to the database. Additional privileges are not required.

Note

If you want to define seperate DB names to connect to, then you have to grant at least SELECT permission to the user.

GRANT SELECT ON <db_name>.* TO '<user_name>'@'localhost';

Considerations on localhost ๐Ÿ”—

For connections to localhost, MySQL programs attempt to connect to the local server by using a Unix socket file. To ensure that the client makes a TCP/IP connection to the local server specify a host name value of 127.0.0.1, or the IP address or name of the local server.

Configuration ๐Ÿ”—

To use this integration of a Smart Agent monitor with the Collector:

  1. Include the Smart Agent receiver in your configuration file.

  2. Add the monitor type to the Collector configuration, both in the receiver and pipelines sections.

Example ๐Ÿ”—

To activate this integration, add the following to your Collector configuration:

receivers:
  smartagent/mysql:
    type: collectd/mysql
    host: 127.0.0.1
    port: 3306
    username: <global-username-for-all-db>
    password: <global-password-for-all-db>
    databases:
      - name: <name-of-db>
        username: <username> #Overrides global username
        password: <password> #Overrides global password

The following is a sample YAML configuration that shows how to connect multiple MySQL databases:

receivers:
  smartagent/mysql:
    type: collectd/mysql
    host: 127.0.0.1
    port: 3306
    databases:
      - name: <name>
        username: <username>
        password: <password>
      - name: <name>
        username: <username>
        password: <password>

Next, add the monitor to the service.pipelines.metrics.receivers section of your configuration file:

service:
  pipelines:
    metrics:
      receivers: [smartagent/mysql]

Configuration settings ๐Ÿ”—

The following table shows the configuration options for this monitor:

Option

Required

Type

Description

host

Yes

string

Hostname or IP address of the MySQL instance. For example,

127.0.0.1.

port

Yes

integer

The port of the MySQL instance. For example, 3306.

databases

Yes

list of objects

A list of databases along with optional authentication

credentials.

username

No

string

Username for all databases. You can override it by defining each

username in the databases object.

password

No

string

Password for all databases. You can override it by defining each

username in the databases object.

reportHost

No

bool

When set to true, the host dimension is set to the name

of the MySQL database host. When false, the monitor uses the global hostname configuration instead. The default value is false. When disableHostDimensions is set to true, the host name in which the agent or monitor is running is not used for the host metric dimension value.

innodbStats

No

bool

Collects InnoDB statistics. Before activating InnoDB metrics

make sure that you granted the PROCESS privilege to your user. The default value is false.

The nested databases configuration object has the following fields:

Option

Required

Type

Description

name

Yes

string

Name of the database.

username

No

string

Username of the database.

password

No

string

Password of the database.

Metrics ๐Ÿ”—

The following metrics are available for this integration:

NameDescriptionCategoryType
cache_result.qcache-hits

The number of hits on MySQL query cache.

Defaultcumulative
cache_result.qcache-inserts

The number of inserts into MySQL query cache.

Defaultcumulative
cache_result.cache_size

MySQL Qcache Size

Customgauge
cache_result.qcache-not_cached

The number of MySQL queries that were not cacheable or not cached.

Customcumulative
cache_result.qcache-prunes

The number of queries that were pruned from query cache because of low-memory condition.

Customcumulative
cache_size.qcache

The number of queries in MySQL query cache.

Defaultgauge
mysql_commands.admin_commands

The number of MySQL ADMIN commands executed

Customcumulative
mysql_commands.alter_db

The number of MySQL ALTER DB commands executed

Customcumulative
mysql_commands.alter_db_upgrade

The number of MySQL ALTER DB UPGRADE commands executed

Customcumulative
mysql_commands.alter_event

The number of MySQL ALTER EVENT commands executed

Customcumulative
mysql_commands.alter_function

The number of MySQL ALTER FUNCTION commands executed

Customcumulative
mysql_commands.alter_procedure

The number of MySQL ALTER PROCEDURE commands executed

Customcumulative
mysql_commands.alter_server

The number of MySQL ALTER SERVER commands executed

Customcumulative
mysql_commands.alter_table

The number of MySQL ALTER TABLE commands executed

Customcumulative
mysql_commands.alter_tablespace

The number of MySQL ALTER TABLESPACE commands executed

Customcumulative
mysql_commands.alter_user

The number of MySQL ALTER USER commands executed

Customcumulative
mysql_commands.analyze

The number of MySQL ANALYZE commands executed

Customcumulative
mysql_commands.assign_to_keycache

The number of MySQL ASSIGN TO KEYCACHE commands executed

Customcumulative
mysql_commands.begin

The number of MySQL BEGIN commands executed

Customcumulative
mysql_commands.binlog

The number of MySQL BINLOG commands executed

Customcumulative
mysql_commands.call_procedure

The number of MySQL CALL PROCEDURE commands executed

Customcumulative
mysql_commands.change_db

The number of MySQL CHANGE DB commands executed

Customcumulative
mysql_commands.change_master

The number of MySQL CHANGE MASTER commands executed

Customcumulative
mysql_commands.check

The number of MySQL CHECK commands executed

Customcumulative
mysql_commands.checksum

The number of MySQL CHECKSUM commands executed

Customcumulative
mysql_commands.commit

The number of MySQL COMMIT commands executed

Customcumulative
mysql_commands.create_db

The number of MySQL CREATE DB commands executed

Customcumulative
mysql_commands.create_event

The number of MySQL CREATE EVENT commands executed

Customcumulative
mysql_commands.create_function

The number of MySQL CREATE FUNCTION commands executed

Customcumulative
mysql_commands.create_index

The number of MySQL CREATE INDEX commands executed

Customcumulative
mysql_commands.create_procedure

The number of MySQL CREATE PROCEDURE commands executed

Customcumulative
mysql_commands.create_server

The number of MySQL CREATE SERVER commands executed

Customcumulative
mysql_commands.create_table

The number of MySQL CREATE TABLE commands executed

Customcumulative
mysql_commands.create_trigger

The number of MySQL CREATE TRIGGER commands executed

Customcumulative
mysql_commands.create_udf

The number of MySQL CREATE UDF commands executed

Customcumulative
mysql_commands.create_user

The number of MySQL CREATE USER commands executed

Customcumulative
mysql_commands.create_view

The number of MySQL CREATE VIEW commands executed

Customcumulative
mysql_commands.dealloc_sql

The number of MySQL DEALLOC SQL commands executed

Customcumulative
mysql_commands.delete

The number of MySQL DELETE commands executed

Defaultcumulative
mysql_commands.delete_multi

The number of MySQL DELETE MULTI commands executed

Customcumulative
mysql_commands.do

The number of MySQL DO commands executed

Customcumulative
mysql_commands.drop_db

The number of MySQL DROP DB commands executed

Customcumulative
mysql_commands.drop_event

The number of MySQL DROP EVENT commands executed

Customcumulative
mysql_commands.drop_function

The number of MySQL DROP FUNCTION commands executed

Customcumulative
mysql_commands.drop_index

The number of MySQL DROP INDEX commands executed

Customcumulative
mysql_commands.drop_procedure

The number of MySQL DROP PROCEDURE commands executed

Customcumulative
mysql_commands.drop_server

The number of MySQL DROP SERVER commands executed

Customcumulative
mysql_commands.drop_table

The number of MySQL DROP TABLE commands executed

Customcumulative
mysql_commands.drop_trigger

The number of MySQL DROP TRIGGER commands executed

Customcumulative
mysql_commands.drop_user

The number of MySQL DROP USER commands executed

Customcumulative
mysql_commands.drop_view

The number of MySQL DROP VIEW commands executed

Customcumulative
mysql_commands.empty_query

The number of MySQL EMPTY QUERY commands executed

Customcumulative
mysql_commands.execute_sql

The number of MySQL EXECUTE SQL commands executed

Customcumulative
mysql_commands.flush

The number of MySQL FLUSH commands executed

Customcumulative
mysql_commands.get_diagnostics

The number of MySQL GET DIAGNOSTICS commands executed

Customcumulative
mysql_commands.grant

The number of MySQL GRANT commands executed

Customcumulative
mysql_commands.ha_close

The number of MySQL HA CLOSE commands executed

Customcumulative
mysql_commands.ha_open

The number of MySQL HA OPEN commands executed

Customcumulative
mysql_commands.ha_read

The number of MySQL HA READ commands executed

Customcumulative
mysql_commands.help

The number of MySQL HELP commands executed

Customcumulative
mysql_commands.insert

The number of MySQL INSERT commands executed

Defaultcumulative
mysql_commands.insert_select

The number of MySQL INSERT SELECT commands executed

Customcumulative
mysql_commands.install_plugin

The number of MySQL INSTALL PLUGIN commands executed

Customcumulative
mysql_commands.kill

The number of MySQL KILL commands executed

Customcumulative
mysql_commands.load

The number of MySQL LOAD commands executed

Customcumulative
mysql_commands.lock_tables

The number of MySQL LOCK TABLES commands executed

Customcumulative
mysql_commands.optimize

The number of MySQL OPTIMIZE commands executed

Customcumulative
mysql_commands.preload_keys

The number of MySQL PRELOAD KEYS commands executed

Customcumulative
mysql_commands.prepare_sql

The number of MySQL PREPARE SQL commands executed

Customcumulative
mysql_commands.purge

The number of MySQL PURGE commands executed

Customcumulative
mysql_commands.purge_before_date

The number of MySQL PURGE BEFORE DATE commands executed

Customcumulative
mysql_commands.release_savepoint

The number of MySQL RELEASE SAVEPOINT commands executed

Customcumulative
mysql_commands.rename_table

The number of MySQL RENAME TABLE commands executed

Customcumulative
mysql_commands.rename_user

The number of MySQL RENAME USER commands executed

Customcumulative
mysql_commands.repair

The number of MySQL REPAIR commands executed

Customcumulative
mysql_commands.replace

The number of MySQL REPLACE commands executed

Customcumulative
mysql_commands.replace_select

The number of MySQL REPLACE SELECT commands executed

Customcumulative
mysql_commands.reset

The number of MySQL RESET commands executed

Customcumulative
mysql_commands.resignal

The number of MySQL RESIGNAL commands executed

Customcumulative
mysql_commands.revoke

The number of MySQL REVOKE commands executed

Customcumulative
mysql_commands.revoke_all

The number of MySQL REVOKE ALL commands executed

Customcumulative
mysql_commands.rollback

The number of MySQL ROLLBACK commands executed

Customcumulative
mysql_commands.rollback_to_savepoint

The number of MySQL ROLLBACK TO SAVEPOINT commands executed

Customcumulative
mysql_commands.savepoint

The number of MySQL SAVEPOINT commands executed

Customcumulative
mysql_commands.select

The number of MySQL SELECT commands executed

Defaultcumulative
mysql_commands.set_option

The number of MySQL SET OPTION commands executed

Customcumulative
mysql_commands.show_binlog_events

The number of MySQL SHOW BINLOG EVENTS commands executed

Customcumulative
mysql_commands.show_binlogs

The number of MySQL SHOW BINLOGS commands executed

Customcumulative
mysql_commands.show_charsets

The number of MySQL SHOW CHARSETS commands executed

Customcumulative
mysql_commands.show_collations

The number of MySQL SHOW COLLATIONS commands executed

Customcumulative
mysql_commands.show_create_db

The number of MySQL SHOW CREATE DB commands executed

Customcumulative
mysql_commands.show_create_event

The number of MySQL SHOW CREATE EVENT commands executed

Customcumulative
mysql_commands.show_create_func

The number of MySQL SHOW CREATE FUNC commands executed

Customcumulative
mysql_commands.show_create_proc

The number of MySQL SHOW CREATE PROC commands executed

Customcumulative
mysql_commands.show_create_table

The number of MySQL SHOW CREATE TABLE commands executed

Customcumulative
mysql_commands.show_create_trigger

The number of MySQL SHOW CREATE TRIGGER commands executed

Customcumulative
mysql_commands.show_databases

The number of MySQL SHOW DATABASES commands executed

Customcumulative
mysql_commands.show_engine_logs

The number of MySQL SHOW ENGINE LOGS commands executed

Customcumulative
mysql_commands.show_engine_mutex

The number of MySQL SHOW ENGINE MUTEX commands executed

Customcumulative
mysql_commands.show_engine_status

The number of MySQL SHOW ENGINE STATUS commands executed

Customcumulative
mysql_commands.show_errors

The number of MySQL SHOW ERRORS commands executed

Customcumulative
mysql_commands.show_events

The number of MySQL SHOW EVENTS commands executed

Customcumulative
mysql_commands.show_fields

The number of MySQL SHOW FIELDS commands executed

Customcumulative
mysql_commands.show_function_code

The number of MySQL SHOW FUNCTION CODE commands executed

Customcumulative
mysql_commands.show_function_status

The number of MySQL SHOW FUNCTION STATUS commands executed

Customcumulative
mysql_commands.show_grants

The number of MySQL SHOW GRANTS commands executed

Customcumulative
mysql_commands.show_keys

The number of MySQL SHOW KEYS commands executed

Customcumulative
mysql_commands.show_master_status

The number of MySQL SHOW MASTER STATUS commands executed

Customcumulative
mysql_commands.show_open_tables

The number of MySQL SHOW OPEN TABLES commands executed

Customcumulative
mysql_commands.show_plugins

The number of MySQL SHOW PLUGINS commands executed

Customcumulative
mysql_commands.show_privileges

The number of MySQL SHOW PRIVILEGES commands executed

Customcumulative
mysql_commands.show_procedure_code

The number of MySQL SHOW PROCEDURE CODE commands executed

Customcumulative
mysql_commands.show_procedure_status

The number of MySQL SHOW PROCEDURE STATUS commands executed

Customcumulative
mysql_commands.show_processlist

The number of MySQL SHOW PROCESSLIST commands executed

Customcumulative
mysql_commands.show_profile

The number of MySQL SHOW PROFILE commands executed

Customcumulative
mysql_commands.show_profiles

The number of MySQL SHOW PROFILES commands executed

Customcumulative
mysql_commands.show_relaylog_events

The number of MySQL SHOW RELAYLOG EVENTS commands executed

Customcumulative
mysql_commands.show_slave_hosts

The number of MySQL SHOW SLAVE HOSTS commands executed

Customcumulative
mysql_commands.show_slave_status

The number of MySQL SHOW SLAVE STATUS commands executed

Customcumulative
mysql_commands.show_status

The number of MySQL SHOW STATUS commands executed

Customcumulative
mysql_commands.show_storage_engines

The number of MySQL SHOW STORAGE ENGINES commands executed

Customcumulative
mysql_commands.show_table_status

The number of MySQL SHOW TABLE STATUS commands executed

Customcumulative
mysql_commands.show_tables

The number of MySQL SHOW TABLES commands executed

Customcumulative
mysql_commands.show_triggers

The number of MySQL SHOW TRIGGERS commands executed

Customcumulative
mysql_commands.show_variables

The number of MySQL SHOW VARIABLES commands executed

Customcumulative
mysql_commands.show_warnings

The number of MySQL SHOW WARNINGS commands executed

Customcumulative
mysql_commands.signal

The number of MySQL SIGNAL commands executed

Customcumulative
mysql_commands.slave_start

The number of MySQL SLAVE START commands executed

Customcumulative
mysql_commands.slave_stop

The number of MySQL SLAVE STOP commands executed

Customcumulative
mysql_commands.truncate

The number of MySQL TRUNCATE commands executed

Customcumulative
mysql_commands.uninstall_plugin

The number of MySQL UNINSTALL PLUGIN commands executed

Customcumulative
mysql_commands.unlock_tables

The number of MySQL UNLOCK TABLES commands executed

Customcumulative
mysql_commands.update

The number of MySQL UPDATE commands executed

Defaultcumulative
mysql_commands.update_multi

The number of MySQL UPDATE MULTI commands executed

Customcumulative
mysql_commands.xa_commit

The number of MySQL XA COMMIT commands executed

Customcumulative
mysql_commands.xa_end

The number of MySQL XA END commands executed

Customcumulative
mysql_commands.xa_prepare

The number of MySQL XA PREPARE commands executed

Customcumulative
mysql_commands.xa_recover

The number of MySQL XA RECOVER commands executed

Customcumulative
mysql_commands.xa_rollback

The number of MySQL XA ROLLBACK commands executed

Customcumulative
mysql_commands.xa_start

The number of MySQL XA START commands executed

Customcumulative
mysql_handler.commit

The number of internal COMMIT statements.

Customcumulative
mysql_handler.delete

The number of times rows have been deleted from tables.

Customcumulative
mysql_handler.prepare

The number of times "Prepare" phase was executed in the two-phase commit operations.

Customcumulative
mysql_handler.read_first

The number of times the first entry in an index was read.

Customcumulative
mysql_handler.read_key

The number of times a row was read based on a key.

Customcumulative
mysql_handler.read_next

The number of requests to read the next row in key order.

Customcumulative
mysql_handler.read_prev

The number of requests to read the previous row in key order.

Customcumulative
mysql_handler.read_rnd

The number of requests that read a random fixed position in the data file.

Customcumulative
mysql_handler.read_rnd_next

The number of requests for the next row in the data file.

Customcumulative
mysql_handler.rollback

The number of requests for a rollback operation on the storage engine.

Customcumulative
mysql_handler.savepoint

The number of requests to place a savepoint on the storage engine. This can be used to roll back later.

Customcumulative
mysql_handler.savepoint_rollback

The number of requests to roll back to a savepoint.

Customcumulative
mysql_handler.update

The number of requests to update a row in a table.

Customcumulative
mysql_handler.write

The number of requests to insert a row in a table.

Customcumulative
mysql_handler.external_lock

The number of external_lock occurences.

Customcumulative
mysql_locks.immediate

The number of MySQL table locks which were granted immediately.

Defaultcumulative
mysql_locks.waited

The number of MySQL table locks which had to wait before being granted.

Defaultcumulative
mysql_octets.rx

The number of bytes received by MySQL server from all clients.

Defaultcumulative
mysql_octets.tx

The number of bytes sent by MySQL server to all clients.

Defaultcumulative
mysql_select.full_join

The number of joins that perform full table scans.

Customcumulative
mysql_select.full_range_join

The number of joins that used a range search on a reference table.

Customcumulative
mysql_select.range

The number of joins that used a range on the first table.

Customcumulative
mysql_select.range_check

The number of joins without keys that check for key usage after each row.

Customcumulative
mysql_select.scan

The number of joins that did a full scan of the first table.

Customcumulative
mysql_sort_merge_passes

The number of merge passes done by the sorting algorithm.

Customcumulative
mysql_sort.range

The number of sorts that were done using ranges.

Customcumulative
mysql_sort_rows

The number of rows that were sorted.

Customcumulative
mysql_sort.scan

The number of sorts that were done by scanning the table.

Customcumulative
mysql_slow_queries

The number of queries that have taken more than long_query_time seconds.

Customcumulative
threads.cached

The number of threads cached by MySQL for re-use on a new client connection. A MySQL thread corresponds to a single MySQL connection.

Defaultgauge
threads.connected

The number of currently open MySQL connections. A MySQL thread corresponds to a single MySQL connection.

Defaultgauge
threads.running

The number of MySQL threads that are processing a query. A MySQL thread corresponds to a single MySQL connection.

Customgauge
total_threads.created

The total number of threads created by MySQL for client connections. A MySQL thread corresponds to a single MySQL connection.

Customcumulative
mysql_bpool_pages.data

The number of pages in the InnoDB buffer pool containing data. The number includes both dirty and clean pages.

Customgauge
mysql_bpool_pages.dirty

The current number of dirty pages in the InnoDB buffer pool.

Customgauge
mysql_bpool_pages.free

The number of free pages in the InnoDB buffer pool.

Customgauge
mysql_bpool_pages.misc

The number of pages in the InnoDB buffer pool that are busy because they have been allocated for administrative overhead, such as row locks or the adaptive hash index.

Customgauge
mysql_bpool_pages.total

The total size of the InnoDB buffer pool, in pages.

Customgauge
mysql_bpool_counters.pages_flushed

The number of requests to flush pages from the InnoDB buffer pool.

Customcumulative
mysql_bpool_counters.read_ahead_rnd

The number of โ€œrandomโ€ read-aheads initiated by InnoDB. This happens when a query scans a large portion of a table but in random order.

Customcumulative
mysql_bpool_counters.read_ahead

The number of pages read into the InnoDB buffer pool by the read-ahead background thread.

Customcumulative
mysql_bpool_counters.read_ahead_evicted

The number of pages read into the InnoDB buffer pool by the read-ahead background thread that were subsequently evicted without having been accessed by queries.

Customcumulative
mysql_bpool_counters.read_requests

The number of logical read requests.

Customcumulative
mysql_bpool_counters.reads

The number of logical reads that InnoDB could not satisfy from the buffer pool, and had to read directly from disk.

Customcumulative
mysql_bpool_counters.wait_free

Normally, writes to the InnoDB buffer pool happen in the background. When InnoDB needs to read or create a page and no clean pages are available, InnoDB flushes some dirty pages first and waits for that operation to finish. This counter counts instances of these waits.

Customcumulative
mysql_bpool_counters.write_requests

The number of writes done to the InnoDB buffer pool.

Customcumulative
mysql_bpool_bytes.data

The total number of bytes in the InnoDB buffer pool containing data. The number includes both dirty and clean pages.

Customgauge
mysql_bpool_bytes.dirty

The total current number of bytes held in dirty pages in the InnoDB buffer pool.

Customgauge
mysql_innodb_data.fsyncs

The number of fsync() operations so far.

Customcumulative
mysql_innodb_data.read

The amount of data read since the server was started (in bytes).

Customcumulative
mysql_innodb_data.reads

The total number of data reads (OS file reads).

Customcumulative
mysql_innodb_data.writes

The total number of data writes.

Customcumulative
mysql_innodb_data.written

The amount of data written so far, in bytes.

Customcumulative
mysql_innodb_dblwr.writes

The number of doublewrite operations that have been performed.

Customcumulative
mysql_innodb_dblwr.written

The number of pages that have been written to the doublewrite buffer.

Customcumulative
mysql_innodb_log.waits

The number of times that the log buffer was too small and a wait was required for it to be flushed before continuing.

Customcumulative
mysql_innodb_log.write_requests

The number of write requests for the InnoDB redo log.

Customcumulative
mysql_innodb_log.writes

The number of physical writes to the InnoDB redo log file.

Customcumulative
mysql_innodb_log.fsyncs

The number of fsync() writes done to the InnoDB redo log files.

Customcumulative
mysql_innodb_log.written

The number of bytes written to the InnoDB redo log files.

Customcumulative
mysql_innodb_pages.created

The number of pages created by operations on InnoDB tables.

Customcumulative
mysql_innodb_pages.read

The number of pages read from the InnoDB buffer pool by operations on InnoDB tables.

Customcumulative
mysql_innodb_pages.written

The number of pages written by operations on InnoDB tables.

Customcumulative
mysql_innodb_row_lock.time

The total time spent in acquiring row locks for InnoDB tables, in milliseconds.

Customcumulative
mysql_innodb_row_lock.waits

The number of times operations on InnoDB tables had to wait for a row lock.

Customcumulative
mysql_innodb_rows.deleted

The number of rows deleted from InnoDB tables.

Customcumulative
mysql_innodb_rows.inserted

The number of rows inserted into InnoDB tables.

Customcumulative
mysql_innodb_rows.read

The number of rows read from InnoDB tables.

Customcumulative
mysql_innodb_rows.updated

The number of rows updated in InnoDB tables.

Customcumulative

Notes ๐Ÿ”—

  • To learn more about the available in Splunk Observability Cloud see Metric types

  • In host-based subscription plans, default metrics are those metrics included in host-based subscriptions in Splunk Observability Cloud, such as host, container, or bundled metrics. Custom metrics are not provided by default and might be subject to charges. See Metric categories for more information.

  • In MTS-based subscription plans, all metrics are custom.

  • To add additional metrics, see how to configure extraMetrics in Add additional metrics

Troubleshooting ๐Ÿ”—

If you are a Splunk Observability Cloud customer and are not able to see your data in Splunk Observability Cloud, you can get help in the following ways.

Available to Splunk Observability Cloud customers

Available to prospective customers and free trial users

  • Ask a question and get answers through community support at Splunk Answers .

  • Join the Splunk #observability user group Slack channel to communicate with customers, partners, and Splunk employees worldwide. To join, see Chat groups in the Get Started with Splunk Community manual.

This page was last updated on Feb 11, 2025.