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
6 changes: 3 additions & 3 deletions opentelemetry_configuration.json
Original file line number Diff line number Diff line change
Expand Up @@ -231,22 +231,22 @@
],
"minimum": -10,
"maximum": 20,
"description": "TODO\nIf omitted or null, TODO.\n"
"description": "Configure the max scale factor.\nIf omitted or null, TODO.\n"
},
"max_size": {
"type": [
"integer",
"null"
],
"minimum": 2,
"description": "TODO\nIf omitted or null, TODO.\n"
"description": "Configure the maximum number of buckets in each of the positive and negative ranges, not counting the special zero bucket.\nIf omitted or null, TODO.\n"
},
"record_min_max": {
"type": [
"boolean",
"null"
],
"description": "TODO\nIf omitted or null, TODO.\n"
"description": "Configure whether or not to record min and max.\nIf omitted or null, TODO.\n"
}
}
},
Expand Down
6 changes: 3 additions & 3 deletions schema-docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -401,9 +401,9 @@ Usages:

| Property | Type | Required? | Default and Null Behavior | Constraints | Description |
|---|---|---|---|---|---|
| `max_scale` | one of:<br>* `integer`<br>* `null`<br> | `false` | If omitted or null, TODO. | * `minimum`: `-10`<br>* `maximum`: `20`<br> | TODO |
| `max_size` | one of:<br>* `integer`<br>* `null`<br> | `false` | If omitted or null, TODO. | * `minimum`: `2`<br> | TODO |
| `record_min_max` | one of:<br>* `boolean`<br>* `null`<br> | `false` | If omitted or null, TODO. | No constraints. | TODO |
| `max_scale` | one of:<br>* `integer`<br>* `null`<br> | `false` | If omitted or null, TODO. | * `minimum`: `-10`<br>* `maximum`: `20`<br> | Configure the max scale factor. |
| `max_size` | one of:<br>* `integer`<br>* `null`<br> | `false` | If omitted or null, TODO. | * `minimum`: `2`<br> | Configure the maximum number of buckets in each of the positive and negative ranges, not counting the special zero bucket. |
| `record_min_max` | one of:<br>* `boolean`<br>* `null`<br> | `false` | If omitted or null, TODO. | No constraints. | Configure whether or not to record min and max. |

<details>
<summary>Language support status</summary>
Expand Down
6 changes: 3 additions & 3 deletions schema/meter_provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -698,20 +698,20 @@ $defs:
- "null"
minimum: -10
maximum: 20
description: TODO
description: Configure the max scale factor.
defaultBehavior: TODO
max_size:
type:
- integer
- "null"
minimum: 2
description: TODO
description: Configure the maximum number of buckets in each of the positive and negative ranges, not counting the special zero bucket.
defaultBehavior: TODO
record_min_max:
type:
- boolean
- "null"
description: TODO
description: Configure whether or not to record min and max.
defaultBehavior: TODO
LastValueAggregation:
type:
Expand Down
Loading