Rename cloud.zone to cloud.availability_zone (#1495)
Co-authored-by: Christian Neumüller <christian+github@neumueller.me> Co-authored-by: Armin Ruech <armin.ruech@dynatrace.com>
This commit is contained in:
parent
c670bbd8fd
commit
580121698c
|
|
@ -33,15 +33,15 @@ groups:
|
||||||
[AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or
|
[AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or
|
||||||
[Google Cloud regions](https://cloud.google.com/about/locations).
|
[Google Cloud regions](https://cloud.google.com/about/locations).
|
||||||
examples: ['us-central1', 'us-east-1']
|
examples: ['us-central1', 'us-east-1']
|
||||||
- id: zone
|
- id: availability_zone
|
||||||
type: string
|
type: string
|
||||||
brief: >
|
brief: >
|
||||||
Cloud regions often have multiple, isolated locations known as zones
|
Cloud regions often have multiple, isolated locations known as zones
|
||||||
to increase availability. Zone represents the zone where the resource
|
to increase availability. Availability zone represents the
|
||||||
is running.
|
zone where the resource is running.
|
||||||
note: >
|
note: >
|
||||||
AWS and Azure calls them availability zones or AZs.
|
Availability zones are called "zones" on Google Cloud.
|
||||||
examples: ['us-central1-a', 'us-east-1c']
|
examples: ['us-east-1c']
|
||||||
- id: infrastructure_service
|
- id: infrastructure_service
|
||||||
type:
|
type:
|
||||||
allow_custom_values: true
|
allow_custom_values: true
|
||||||
|
|
|
||||||
|
|
@ -12,10 +12,10 @@
|
||||||
| `cloud.provider` | string | Name of the cloud provider. | `gcp` | No |
|
| `cloud.provider` | string | Name of the cloud provider. | `gcp` | No |
|
||||||
| `cloud.account.id` | string | The cloud account ID the resource is assigned to. | `111111111111`; `opentelemetry` | No |
|
| `cloud.account.id` | string | The cloud account ID the resource is assigned to. | `111111111111`; `opentelemetry` | No |
|
||||||
| `cloud.region` | string | The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations). | `us-central1`; `us-east-1` | No |
|
| `cloud.region` | string | The geographical region the resource is running. Refer to your provider's docs to see the available regions, for example [AWS regions](https://aws.amazon.com/about-aws/global-infrastructure/regions_az/), [Azure regions](https://azure.microsoft.com/en-us/global-infrastructure/geographies/), or [Google Cloud regions](https://cloud.google.com/about/locations). | `us-central1`; `us-east-1` | No |
|
||||||
| `cloud.zone` | string | Cloud regions often have multiple, isolated locations known as zones to increase availability. Zone represents the zone where the resource is running. [1] | `us-central1-a`; `us-east-1c` | No |
|
| `cloud.availability_zone` | string | Cloud regions often have multiple, isolated locations known as zones to increase availability. Availability zone represents the zone where the resource is running. [1] | `us-east-1c` | No |
|
||||||
| `cloud.infrastructure_service` | string | The cloud infrastructure resource in use. [2] | `aws_ec2`; `azure_vm`; `gcp_compute_engine` | No |
|
| `cloud.infrastructure_service` | string | The cloud infrastructure resource in use. [2] | `aws_ec2`; `azure_vm`; `gcp_compute_engine` | No |
|
||||||
|
|
||||||
**[1]:** AWS and Azure calls them availability zones or AZs.
|
**[1]:** Availability zones are called "zones" on Google Cloud.
|
||||||
|
|
||||||
**[2]:** The prefix of the service SHOULD match the one specified in `cloud.provider`.
|
**[2]:** The prefix of the service SHOULD match the one specified in `cloud.provider`.
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue