Skip to content

Commit

Permalink
Merge branch 'main' into extra-labels-for-service-graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
t00mas authored Jun 19, 2024
2 parents e03f97d + 2c274ba commit 2f45995
Show file tree
Hide file tree
Showing 2,437 changed files with 49,728 additions and 39,219 deletions.
27 changes: 0 additions & 27 deletions .chloggen/add-month-converter.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .chloggen/add-year-converter.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .chloggen/add_filelog_metrics.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .chloggen/awss3receiver_obsreport.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .chloggen/awsxrayexporter_localrootspans.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,24 @@
change_type: breaking

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: vcenterreceiver
component: clickhouseexporter

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: vcenterreceiver replaces deprecated packet metrics by removing them and enabling by default the newer ones.
note: Add `AggregationTemporality` column to histogram and exponential histogram tables. Rename `AggTemp` column to `AggregationTemporality` in sum table.

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
issues: [32929, 32835]
issues: [33424]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext: |
Removes the following metrics: `vcenter.host.network.packet.errors`, `vcenter.host.network.packet.count`, and
`vcenter.vm.network.packet.count`.
Also enables by default the following metrics: `vcenter.host.network.packet.error.rate`,
`vcenter.host.network.packet.rate`, and `vcenter.vm.network.packet.rate`.
It's a breaking change. users who upgrade to the latest version need to alter the Clickhouse table:
```sql
ALTER TABLE otel_metrics_exponential_histogram ADD COLUMN AggregationTemporality Int32 CODEC(ZSTD(1));
ALTER TABLE otel_metrics_histogram ADD COLUMN AggregationTemporality Int32 CODEC(ZSTD(1));
ALTER TABLE otel_metrics_sum RENAME COLUMN AggTemp TO AggregationTemporality;
```
# If your change doesn't affect end users or the exported elements of any package,
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@
change_type: enhancement

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: pkg/ottl
component: clickhouseexporter

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Add the `Day` Converter to extract the int Day component from a time.Time
note: Updated the default logs table to a more optimized schema

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
issues: [33106]
issues: [33611]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
subtext: Simplified data types, improved partitioning and time range queries.

# If your change doesn't affect end users or the exported elements of any package,
# you should instead start your pull request title with [chore] or use the "Skip Changelog" label.
Expand Down
27 changes: 0 additions & 27 deletions .chloggen/drosiek-tracing.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .chloggen/feat_support_azure_tags.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .chloggen/feature_solarwindsapmsettingsextension-concreteimpl.yaml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
change_type: bug_fix

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: kafkareceiver
component: otelarrowreceiver

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Fix bug that was blocking shutdown
note: Ensure consume operations are not canceled at stream EOF.

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
issues: [30789]
issues: [33570]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
Expand All @@ -24,4 +24,4 @@ subtext:
# Include 'user' if the change is relevant to end users.
# Include 'api' if there is a change to a library API.
# Default: '[user]'
change_logs: []
change_logs: [user]
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@
change_type: enhancement

# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver)
component: pkg/stanza
component: solacereceiver

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Expose recombine max log size option in the container parser configuration
note: "Renamed some SemConv fields to support latest semantic conventions for messaging spans (version `1.25.0`)"

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
issues: [33186]
issues: [33499]

# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
Expand Down
1 change: 1 addition & 0 deletions .github/ALLOWLIST
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ internal/common

## UNMAINTAINED components
exporter/skywalkingexporter/
receiver/googlecloudspannerreceiver/
Loading

0 comments on commit 2f45995

Please sign in to comment.