🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mysqlreceiver

Package Overview
Dependencies
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

github.com/open-telemetry/opentelemetry-collector-contrib/receiver/mysqlreceiver

Source
Go
Version
v0.138.0
Version published
Created
Source

MySQL Receiver

Status
Stabilitydevelopment: logs
beta: metrics
Distributionscontrib
IssuesOpen issues Closed issues
Code coveragecodecov
Code Owners@antonblock, @ishleenk17 | Seeking more code owners!
Emeritus@djaglowski

This receiver queries MySQL's global status and InnoDB tables.

Some metrics will not appear if their corresponding feature is inactive.
There are also optional metrics that you must specify in your configuration to collect, listed in documentation.md

Prerequisites

This receiver supports MySQL version 8.0 and MariaDB 10.11.

Collecting most metrics requires the ability to execute SHOW GLOBAL STATUS.

Collecting query samples requires the performance_schema to be enabled:

GRANT SELECT ON performance_schema.* TO <your-user>@'%';

Configuration

The following settings are optional:

  • endpoint: (default = localhost:3306)

  • tls: Defines the TLS configuration to use. If tls is not set, the default is to disable TLS connections.

    • insecure: (default = false) Set this to true to disable TLS connections.
    • insecure_skip_verify: (default = false) Set this to true to enable TLS but not verify the certificate.
    • server_name_override: This sets the ServerName in the TLSConfig.
  • username: (default = root)

  • password: The password to the username.

  • allow_native_passwords: (default = true)

  • database: The database name. If not specified, metrics will be collected for all databases.

  • collection_interval (default = 10s): This receiver collects metrics on an interval. This value must be a string readable by Golang's time.ParseDuration. Valid time units are ns, us (or µs), ms, s, m, h.

  • initial_delay (default = 1s): defines how long this receiver waits before starting.

  • transport: (default = tcp): Defines the network to use for connecting to the server.

  • statement_events: Additional configuration for query to build mysql.statement_events.count and mysql.statement_events.wait.time metrics:

    • digest_text_limit - maximum length of digest_text. Longer text will be truncated (default=120)
    • time_limit - maximum time from since the statements have been observed last time (default=24h)
    • limit - limit of records, which is maximum number of generated metrics (default=250)
  • query_sample_collection: Additional configuration for query sample collection(db.server.query_sample event):

    • max_rows_per_query - maximum number of rows to collect per scrape (default=100)
  • top_query_collection: Additional configuration for top queries collection (db.server.top_query event):

    • lookback_time (optional, example = 60, default = 2 * collection_interval): The time window (in seconds) in which to query for top queries.
      • Queries that finished execution outside the lookback window are not included in the collection. Increasing the lookback window will be useful for capturing long-running queries.
    • max_query_sample_count (optional, example = 5000, default = 1000): The maximum number of records to fetch in a single run.
    • top_query_count: (optional, example = 100, default = 200): The maximum number of active queries to report (to the next consumer) in a single run.
    • collection_interval: (optional, default = 60s): The interval at which top queries should be emitted by this receiver.
      • This value can only guarantee that the top queries are collected at most once in this interval.
        • For instance, you have global collection_interval set to 10s and top_query_collection.collection_interval set to 60s.
          • In this case, the default receiver scraper will still run every 10 seconds.
          • However, the top queries collection will only run after 60 seconds have passed since the last collection.
        • For instance, you have global collection_interval set to 10s and top_query_collection.collection_interval set to 5s.
          • In this case, top_query_collection.collection_interval will have no impact on the collection frequency, which will run every 10s.
    • query_plan_cache_size: (optional, default = 1000). The query plan cache size. Once we got query plan results from explain queries, we will store them in the cache. This defines the cache's size for query plan.
    • query_plan_cache_ttl: (optional, example = 1m, default = 1h). How long until a query plan expires in the cache. The receiver will run an explain query to MySQL to get the query plan after it expires.

Example Configuration

receivers:
  mysql:
    endpoint: localhost:3306
    username: otel
    password: ${env:MYSQL_PASSWORD}
    database: otel
    collection_interval: 10s
    initial_delay: 1s
    statement_events:
      digest_text_limit: 120
      time_limit: 24h
      limit: 250

The full list of settings exposed for this receiver are documented in config.go with detailed sample configurations in testdata/config.yaml.

Metrics

Details about the metrics produced by this receiver can be found in metadata.yaml

Logs

Details about the logs produced by this receiver can be found in documentation.md

MySQL Requirements to enable log collection

ParameterValueDescription
performance_schemaEnabled (Required)Enable performance schema
max_digest_length4096 (Recommended)Maximum length of digest text
performance_schema_max_digest_length4096 (Recommended)Maximum length of digest text on performance schema
performance_schema_max_sql_text_length4096 (Recommended)Maximum length of sql text

FAQs

Package last updated on 20 Oct 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts