Skip to content

Commit

Permalink
chore(metrics): Update rds_max_disk_iops_average & rds_max_storage_th…
Browse files Browse the repository at this point in the history
…roughput_bytes description

Signed-off-by: Vincent Mercier <[email protected]>
  • Loading branch information
vmercierfr committed May 24, 2024
1 parent 691c053 commit e2867e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@ It collects key metrics about:
| rds_instance_tags | `aws_account_id`, `aws_region`, `dbidentifier`, `tag_<AWS_TAG>`... | AWS tags attached to the instance |
| rds_instance_vcpu_average | `aws_account_id`, `aws_region`, `instance_class` | Total vCPU for this instance class |
| rds_max_allocated_storage_bytes | `aws_account_id`, `aws_region`, `dbidentifier` | Upper limit in gibibytes to which Amazon RDS can automatically scale the storage of the DB instance |
| rds_max_disk_iops_average | `aws_account_id`, `aws_region`, `dbidentifier` | Max IOPS for the instance |
| rds_max_storage_throughput_bytes | `aws_account_id`, `aws_region`, `dbidentifier` | Max storage throughput |
| rds_max_disk_iops_average | `aws_account_id`, `aws_region`, `dbidentifier` | Max disk IOPS evaluated with disk IOPS and EC2 capacity |
| rds_max_storage_throughput_bytes | `aws_account_id`, `aws_region`, `dbidentifier` | Max disk throughput evaluated with disk throughput and EC2 capacity |
| rds_maximum_used_transaction_ids_average | `aws_account_id`, `aws_region`, `dbidentifier` | Maximum transaction IDs that have been used. Applies to only PostgreSQL |
| rds_quota_max_dbinstances_average | `aws_account_id`, `aws_region` | Maximum number of RDS instances allowed in the AWS account |
| rds_quota_maximum_db_instance_snapshots_average | `aws_account_id`, `aws_region` | Maximum number of manual DB instance snapshots |
Expand Down
4 changes: 2 additions & 2 deletions internal/app/exporter/exporter.go
Original file line number Diff line number Diff line change
Expand Up @@ -161,11 +161,11 @@ func NewCollector(logger slog.Logger, collectorConfiguration Configuration, awsA
[]string{"aws_account_id", "aws_region", "dbidentifier"}, nil,
),
maxIops: prometheus.NewDesc("rds_max_disk_iops_average",
"Max IOPS for the instance",
"Max disk IOPS evaluated with disk IOPS and EC2 capacity",
[]string{"aws_account_id", "aws_region", "dbidentifier"}, nil,
),
storageThroughput: prometheus.NewDesc("rds_max_storage_throughput_bytes",
"Max storage throughput",
"Max disk throughput evaluated with disk throughput and EC2 capacity",
[]string{"aws_account_id", "aws_region", "dbidentifier"}, nil,
),
readThroughput: prometheus.NewDesc("rds_read_throughput_bytes",
Expand Down

0 comments on commit e2867e2

Please sign in to comment.