Table: aws_rds_db_instance_metric_read_iops - Query AWS RDS DBInstanceMetricReadIops using SQL
The AWS RDS DB Instance Metric Read IOPS is a performance metric for Amazon Relational Database Service (RDS) that measures the average number of disk I/O operations per second for read operations. This metric is useful to monitor the read activity on your RDS DB instance and can help you identify potential performance issues. It is part of the suite of CloudWatch metrics for RDS that provides detailed visibility into the health, performance, and availability of your RDS databases.
Table Usage Guide
The aws_rds_db_instance_metric_read_iops
table in Steampipe provides you with information about the read IOPS metrics of AWS RDS DB instances. This table allows you, as a DevOps engineer or database administrator, to query and monitor the read IOPS metrics, which can be useful for performance tuning and capacity planning. The read IOPS refers to the number of read input/output operations per second. The schema outlines the various attributes of the DB instance metric, including the DB instance identifier, timestamp, minimum, maximum, sum, sample count, and unit of measurement for you.
The aws_rds_db_instance_metric_read_iops
table provides you with metric statistics at 5 minute intervals for the most recent 5 days.
Examples
Basic info
Explore the performance metrics of your AWS RDS database instances over time. This can be crucial for identifying trends, optimizing performance, and planning for future capacity needs.
select db_instance_identifier, timestamp, minimum, maximum, average, sum, sample_countfrom aws_rds_db_instance_metric_read_iopsorder by db_instance_identifier, timestamp;
select db_instance_identifier, timestamp, minimum, maximum, average, sum, sample_countfrom aws_rds_db_instance_metric_read_iopsorder by db_instance_identifier, timestamp;
Intervals where volumes exceed 1000 average read ops
Explore instances when the average read operations on your AWS RDS DB instances exceed 1000. This could help you identify potential overuse or performance issues and take appropriate action.
select db_instance_identifier, timestamp, minimum, maximum, average, sum, sample_countfrom aws_rds_db_instance_metric_read_iopswhere average > 1000order by db_instance_identifier, timestamp;
select db_instance_identifier, timestamp, minimum, maximum, average, sum, sample_countfrom aws_rds_db_instance_metric_read_iopswhere average > 1000order by db_instance_identifier, timestamp;
Intervals where volumes exceed 8000 max read ops
Identify instances where the maximum read operations exceed 8000 in your AWS RDS database instances. This can help in analyzing performance patterns and pinpointing potential areas for optimization.
select db_instance_identifier, timestamp, minimum, maximum, average, sum, sample_countfrom aws_rds_db_instance_metric_read_iopswhere maximum > 8000order by db_instance_identifier, timestamp;
select db_instance_identifier, timestamp, minimum, maximum, average, sum, sample_countfrom aws_rds_db_instance_metric_read_iopswhere maximum > 8000order by db_instance_identifier, timestamp;
Read, Write, and Total IOPS
Gain insights into the performance of your AWS RDS instances by analyzing input/output operations per second (IOPS). This query allows you to monitor the average, maximum, and minimum read and write operations, which can help optimize database performance and capacity planning.
select r.db_instance_identifier, r.timestamp, round(r.average) + round(w.average) as iops_avg, round(r.average) as read_ops_avg, round(w.average) as write_ops_avg, round(r.maximum) + round(w.maximum) as iops_max, round(r.maximum) as read_ops_max, round(w.maximum) as write_ops_max, round(r.minimum) + round(w.minimum) as iops_min, round(r.minimum) as read_ops_min, round(w.minimum) as write_ops_minfrom aws_rds_db_instance_metric_read_iops as r, aws_rds_db_instance_metric_write_iops as wwhere r.db_instance_identifier = w.db_instance_identifier and r.timestamp = w.timestamporder by r.db_instance_identifier, r.timestamp;
select r.db_instance_identifier, r.timestamp, round(r.average) + round(w.average) as iops_avg, round(r.average) as read_ops_avg, round(w.average) as write_ops_avg, round(r.maximum) + round(w.maximum) as iops_max, round(r.maximum) as read_ops_max, round(w.maximum) as write_ops_max, round(r.minimum) + round(w.minimum) as iops_min, round(r.minimum) as read_ops_min, round(w.minimum) as write_ops_minfrom aws_rds_db_instance_metric_read_iops as r, aws_rds_db_instance_metric_write_iops as wwhere r.db_instance_identifier = w.db_instance_identifier and r.timestamp = w.timestamporder by r.db_instance_identifier, r.timestamp;
Schema for aws_rds_db_instance_metric_read_iops
Name | Type | Operators | Description |
---|---|---|---|
_ctx | jsonb | Steampipe context in JSON form. | |
account_id | text | =, !=, ~~, ~~*, !~~, !~~* | The AWS Account ID in which the resource is located. |
average | double precision | The average of the metric values that correspond to the data point. | |
db_instance_identifier | text | The friendly name to identify the DB Instance. | |
maximum | double precision | The maximum metric value for the data point. | |
metric_name | text | The name of the metric. | |
minimum | double precision | The minimum metric value for the data point. | |
namespace | text | The metric namespace. | |
partition | text | The AWS partition in which the resource is located (aws, aws-cn, or aws-us-gov). | |
region | text | The AWS Region in which the resource is located. | |
sample_count | double precision | The number of metric values that contributed to the aggregate value of this data point. | |
sp_connection_name | text | =, !=, ~~, ~~*, !~~, !~~* | Steampipe connection name. |
sp_ctx | jsonb | Steampipe context in JSON form. | |
sum | double precision | The sum of the metric values for the data point. | |
timestamp | timestamp with time zone | The time stamp used for the data point. | |
unit | text | The standard unit for the data point. |
Export
This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.
You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh
script:
/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- aws
You can pass the configuration to the command with the --config
argument:
steampipe_export_aws --config '<your_config>' aws_rds_db_instance_metric_read_iops