For the complete documentation index, see llms.txt. Markdown versions are available by appending .md to documentation URLs.

Monitor GCP Cloud Storage Metrics with OpenTelemetry

SigNoz Cloud - This page applies to SigNoz Cloud editions.
Self-Hosted Enterprise - This page applies to self-hosted SigNoz with an active license.

The Cloud Storage integration brings bucket metrics (stored bytes and object counts, deleted bytes, API request activity, signed-request authentication, and network throughput) into SigNoz, with a pre-built dashboard for the service.

Cloud Storage publishes its metrics to Cloud Monitoring. SigNoz reads them through the OpenTelemetry Collector running in your GCP project.

Choose a setup method

Available now. You run the OpenTelemetry Collector in your own GCP project and add Cloud Storage metrics to its configuration. You control which metrics are pulled and how often.

Complete the GCP integration setup once, then follow the steps on this page for each project that hosts the buckets you want to monitor.

Prerequisites

Before configuring this service, complete the shared GCP integration setup:

Step 1: Enable the service in SigNoz

  1. In SigNoz, go to Integrations > Google Cloud Platform.
  2. Select GCP Cloud Storage from the service list.
  3. Toggle Metric Collection on to activate the pre-built dashboard.
  4. Open the Data Collected tab and note the metrics listed there. These are the metrics the dashboard's panels query.

Step 2: Add the metrics to your Collector config

Open the otel-collector-config.yaml you created in Deploy the Collector and add the Cloud Storage metric names to the metrics_list of the googlecloudmonitoring receiver for the project that owns your buckets. Only the metrics_list shown below changes; leave the rest of the file as is:

otel-collector-config.yaml
receivers:
  googlecloudmonitoring:
    project_id: "<monitored-project-id>"
    collection_interval: 300s   # 5 minutes; minimum is 60s
    metrics_list:
      # Stored data
      - metric_name: "storage.googleapis.com/storage/v2/total_bytes"
      - metric_name: "storage.googleapis.com/storage/v2/total_count"
      - metric_name: "storage.googleapis.com/storage/v2/deleted_bytes"
      # API activity
      - metric_name: "storage.googleapis.com/api/request_count"
      - metric_name: "storage.googleapis.com/authn/authentication_count"
      # Network
      - metric_name: "storage.googleapis.com/network/received_bytes_count"
      - metric_name: "storage.googleapis.com/network/sent_bytes_count"

Verify these values:

  • <monitored-project-id>: The GCP project that owns your buckets. It must be one of the entries in your Projects to Monitor list.

The receiver polls every metric in the list once per collection_interval, and the Monitoring API bills per read call, so keep the list to the metrics your dashboards and alerts actually use. See Cost and tuning.

Step 3: Apply the configuration

The Collector loads its config from the signoz-collector-config secret, so a config change needs a new secret version and a redeploy:

  1. Save your updated otel-collector-config.yaml.
  2. Add a new secret version (step 2 of Deploy the Collector).
  3. Redeploy the Cloud Run service (step 3).

Validate

  1. Wait one or two collection intervals (up to about 10 minutes with the default 300s).
  2. In SigNoz, go to Dashboards and open the Cloud Storage dashboard. The API, authentication, and network panels should start filling in first.
  3. To check a single metric, open Metrics Explorer and query storage.googleapis.com/api/request_count.

What's collected

Metrics

See the Data Collected tab in the SigNoz integration for the definitive list the dashboard uses, and the GCP metrics list for full definitions.

Metric nameUnitType
storage.googleapis.com/storage/v2/total_bytesBytesGauge
storage.googleapis.com/storage/v2/total_countCountGauge
storage.googleapis.com/storage/v2/deleted_bytesBytesSum
storage.googleapis.com/api/request_countCountSum
storage.googleapis.com/authn/authentication_countCountSum
storage.googleapis.com/network/received_bytes_countBytesSum
storage.googleapis.com/network/sent_bytes_countBytesSum

Troubleshooting

A dashboard panel is empty. The metric backing that panel is missing from your metrics_list. Compare the Data Collected tab against your otel-collector-config.yaml, add what's missing, and repeat step 3.

Bucket size and object count stay empty while other panels work. These come from storage/v2/total_bytes and storage/v2/total_count, which Cloud Storage measures once per day. Confirm that the selected buckets contain objects, then wait up to 24 hours for the next measurement before investigating further.

No Cloud Storage metrics at all. Confirm the signoz-integration service account holds roles/monitoring.viewer on the project in project_id, and that the Cloud Monitoring API is enabled there. Then check the Cloud Run logs for googlecloudmonitoring receiver errors.

The bucket_name variable lists far more buckets than expected. It lists every bucket reporting metrics in the selected project. On projects with many buckets, keep the selection narrow instead of using All, so panels stay responsive.

Deleted bytes looks high after a lifecycle change. deleted_bytes reports bytes deleted during the daily reporting interval, including deletions made by lifecycle rules. It does not report only client-initiated deletes.

Next steps

Get Help

If you need help with the steps in this topic, please reach out to us on SigNoz Community Slack. If you are a SigNoz Cloud user, please use in product chat support located at the bottom right corner of your SigNoz instance or contact us at cloud-support@signoz.io.

Is this page helpful

Last updated—August 18, 2026

Edit on GitHub