Skip to content

Mnesia metrics

Compare
Choose a tag to compare
@deadtrickster deadtrickster released this 10 Oct 15:34
· 22 commits to rabbitmq_v3_6_5 since this release
9f2167e

New Metrics

Queues

  • rabbitmq_queue_disk_size_bytes

    Type: gauge.

    Disk space occupied by the queue.

Mnesia Tables

Various metrics for RabbitMQ-specific Mnesia tables.

Labels: table.

  • rabbitmq_mnesia_table_read_only

    Type: boolean.

    Access mode of the table, 1 if table is read_only or 0 otherwise.
  • rabbitmq_mnesia_table_disc_copies

    Type: gauge.

    Number of the nodes where a disc_copy of the table resides according to the schema.
  • rabbitmq_mnesia_table_disc_only_copies

    Type: gauge.

    Number of the nodes where a disc_only_copy of the table resides according to the schema.
  • rabbitmq_mnesia_table_local_content

    Type: boolean.

    If the table is configured to have locally unique content on each node, value is 1 or 0 otherwise.
  • rabbitmq_mnesia_table_majority_required

    Type: boolean.

    If 1, a majority of the table replicas must be available for an update to succeed.
  • rabbitmq_mnesia_table_master_nodes

    Type: gauge.

    Number of the master nodes of a table.
  • rabbitmq_mnesia_table_memory_bytes

    Type: gauge.

    The number of bytes allocated to the table on this node.
  • rabbitmq_mnesia_table_ram_copies

    Type: gauge.

    Number of the nodes where a ram_copy of the table resides according to the schema.
  • rabbitmq_mnesia_table_records_count

    Type: gauge.

    Number of records inserted in the table.
  • rabbitmq_mnesia_table_disk_size_bytes

    Type: gauge.

    Disk space occupied by the table (DCL + DCD).