Grafana Cloud

Determine Grafana Cloud URLs based on region

Grafana Cloud URLs follow one of two formats, depending on when your region was created. The format for a given stack doesn’t change after the stack is created.

Whenever possible, copy the exact URL from your Grafana Cloud portal or the Grafana Cloud application you want to connect to. Refer to Find a URL in the Grafana Cloud portal.

URL format differences

Grafana Cloud uses a flat format for regions created before January 15, 2026, and a nested format for regions created on or after that date.

Region creation dateURL formatExample (OTLP gateway)
Before 2026-01-15 (flat)<service-host>.grafana.netotlp-gateway-prod-us-east-0.grafana.net
On or after 2026-01-15 (nested)<service-host>.<csp>-<csp-region>-<counter>.grafana.netotlp-gateway-prod-us-east-4.aws-us-east-4-1.grafana.net

In the nested format:

  • <service-host> identifies the service and the cluster, for example, otlp-gateway-prod-us-east-4 or prometheus-prod-56-prod-us-east-2.
  • <csp> is the cloud provider: aws, gcp, or azure.
  • <csp-region> is the cloud provider’s region identifier, for example, us-east-1, us-central1, or westeurope.
  • <counter> distinguishes multiple Grafana Cloud regions hosted in the same cloud provider region.

Only regions listed under Legacy regions use the flat format. All other regions, including any region created after January 15, 2026, use the nested format.

Find your region in the Grafana Cloud portal

To determine which region your stack is in, check your Grafana Cloud portal. The portal includes information for every service in your stack, including region, endpoints, and other instance specific settings.

To find the region your stack is in using the portal as the authoritative source:

  1. Sign in to your Grafana Cloud account.
  2. From the Overview page, select the organization you want to connect to.
  3. Choose your stack and click Details.
  4. On the Grafana or service card, click Details.

If a procedure or code sample in Grafana documentation shows a URL template that you need to adapt, model the URL based on the format (flat or nested) you found in your portal. You can double-check which format to use by comparing the region you see in your portal to the list of legacy regions.

Legacy regions

The following regions use the flat <service-host>.grafana.net format. Any region not listed here uses the nested format.

Cloud providerLocationRegion slug
AWSAustraliaprod-au-southeast-1
AWSBrazilprod-sa-east-1
AWSCanadaprod-ca-east-0
AWSGermanyprod-eu-west-2
AWSGermanyprod-eu-west-4
AWSIndiaprod-ap-south-1
AWSIndonesiaprod-ap-southeast-2
AWSIrelandprod-eu-west-6
AWSJapanprod-ap-northeast-0
AWSSingaporeprod-ap-southeast-1
AWSSwedenprod-eu-north-0
AWSSwitzerlandprod-eu-central-0
AWSUAEprod-me-central-1
AWSUKprod-gb-south-1
AWSUS East (OH)prod-us-east-0
AWSUS East (OH)prod-us-east-2
AWSUS East (VA)prod-us-east-3
AWSUS Westprod-us-west-0
AzureGermany BYOCprod-eu-west-5
AzureNetherlandsprod-eu-west-3
AzureUS Centralprod-us-central-7
GCPAustraliaprod-au-southeast-0
GCPBelgiumprod-eu-west-0
GCPBrazilprod-sa-east-0
GCPIndiaprod-ap-south-0
GCPSaudi Arabiaprod-me-central-0
GCPSingaporeprod-ap-southeast-0
GCPUKprod-gb-south-0
GCPUS Central (dedicated-0)prod-us-central-5
GCPUS Central (general-use-0)prod-us-central-0
GCPUS Central (HG-free-0)prod-us-central-3
GCPUS Central (HG-free-1)prod-us-central-4
GCPUS Eastprod-us-east-1

Examples

Service URLs appear in several places across Grafana Cloud documentation. The examples below show how the same URL looks for a legacy region and for a new region.

API and ingestion endpoints

Remote-write, query, and OpenTelemetry endpoints follow the URL formats described above. Grafana Cloud application APIs also follow these patterns.

ServiceLegacy region exampleNew region example
Prometheus remote writeprometheus-prod-03-prod-us-central-0.grafana.netprometheus-prod-56-prod-us-east-2.aws-us-east-4-1.grafana.net
Loki pushlogs-prod3.grafana.netlogs-prod-012-prod-us-east-4.aws-us-east-4-1.grafana.net
OTLP gatewayotlp-gateway-prod-us-east-0.grafana.netotlp-gateway-prod-us-east-4.aws-us-east-4-1.grafana.net

For more information on determining stack instance endpoints, refer to Find instance endpoints in the Grafana Cloud Stack documentation.

Private connectivity

Hostnames used with AWS PrivateLink, Azure Private Link, and GCP Private Service Connect follow the same formats as public URLs. For example, the Loki push URL exposed through AWS PrivateLink is:

  • Legacy region: logs-prod3.grafana.net
  • New region: logs-prod-012-prod-us-east-4.aws-us-east-1-1.grafana.net

When you configure a VPC endpoint, interface endpoint, or consumer endpoint, use the full hostname that appears in the Grafana Cloud portal for your stack.

Terraform and infrastructure as code

Terraform resources and other infrastructure-as-code tools accept the same URLs as manual configuration. When a module documents a URL template, substitute the full hostname for your region:

hcl
resource "grafana_cloud_stack" "example" {
  # ...
  prometheus_remote_write_endpoint = "https://prometheus-prod-56-prod-us-east-2.aws-us-east-4-1.grafana.net/api/prom/push"
  loki_url                         = "https://logs-prod-012.aws-us-east-1-1.grafana.net"
}

For legacy regions, the same configuration uses the flat format:

hcl
resource "grafana_cloud_stack" "example" {
  # ...
  prometheus_remote_write_endpoint = "https://prometheus-prod-56-prod-us-east-2.grafana.net/api/prom/push"
  loki_url                         = "https://logs-prod-003.grafana.net"
}

To find out where the Grafana Cloud service is available, refer to regional availability.