Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion opentelemetry_configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -1485,7 +1485,7 @@
"string",
"null"
],
"description": "The value of the pair.\nProperty must be present, but if null TODO.\n"
"description": "The value of the pair.\nProperty must be present, but if null the behavior is dependent on usage context.\n"
}
},
"required": [
Expand Down
6 changes: 3 additions & 3 deletions schema-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -940,8 +940,8 @@ This is a enum type.

| Value | Description |
|---|---|
| `base2_exponential_bucket_histogram` | TODO |
| `explicit_bucket_histogram` | TODO |
| `base2_exponential_bucket_histogram` | Use base2 exponential histogram as the default aggregation for histogram instruments. |
| `explicit_bucket_histogram` | Use explicit bucket histogram as the default aggregation for histogram instruments. |

<details>
<summary>Language support status</summary>
Expand Down Expand Up @@ -1694,7 +1694,7 @@ Usages:
| Property | Type | Required? | Default and Null Behavior | Constraints | Description |
|---|---|---|---|---|---|
| `name` | `string` | `true` | Property is required and must be non-null. | No constraints. | The name of the pair. |
| `value` | one of:<br>* `string`<br>* `null`<br> | `true` | Property must be present, but if null TODO. | No constraints. | The value of the pair. |
| `value` | one of:<br>* `string`<br>* `null`<br> | `true` | Property must be present, but if null the behavior is dependent on usage context. | No constraints. | The value of the pair. |

<details>
<summary>Language support status</summary>
Expand Down
2 changes: 1 addition & 1 deletion schema/common.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ $defs:
- string
- "null"
description: The value of the pair.
nullBehavior: TODO
nullBehavior: the behavior is dependent on usage context
required:
- name
- value
Expand Down
4 changes: 2 additions & 2 deletions schema/meter_provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -330,8 +330,8 @@ $defs:
- explicit_bucket_histogram
- base2_exponential_bucket_histogram
enumDescriptions:
base2_exponential_bucket_histogram: TODO
explicit_bucket_histogram: TODO
base2_exponential_bucket_histogram: Use base2 exponential histogram as the default aggregation for histogram instruments.
explicit_bucket_histogram: Use explicit bucket histogram as the default aggregation for histogram instruments.
OtlpHttpMetricExporter:
type:
- object
Expand Down
Loading