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
1,144 changes: 676 additions & 468 deletions NOTICE-fips.txt

Large diffs are not rendered by default.

1,344 changes: 669 additions & 675 deletions NOTICE.txt

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# REQUIRED
# Kind can be one of:
# - breaking-change: a change to previously-documented behavior
# - deprecation: functionality that is being removed in a later release
# - bug-fix: fixes a problem in a previous version
# - enhancement: extends functionality but does not break or fix existing behavior
# - feature: new functionality
# - known-issue: problems that we are aware of in a given version
# - security: impacts on the security of a product or a user’s deployment.
# - upgrade: important information for someone upgrading from a prior version
# - other: does not fit into any of the other categories
kind: enhancement

# REQUIRED for all kinds
# Change summary; a 80ish characters long description of the change.
summary: Update OTel Collector components to v0.141.0

# REQUIRED for breaking-change, deprecation, known-issue
# Long description; in case the summary is not enough to describe the change
# this field accommodate a description without length limits.
# description:

# REQUIRED for breaking-change, deprecation, known-issue
# impact:

# REQUIRED for breaking-change, deprecation, known-issue
# action:

# REQUIRED for all kinds
# Affected component; usually one of "elastic-agent", "fleet-server", "filebeat", "metricbeat", "auditbeat", "all", etc.
component: elastic-agent

# AUTOMATED
# OPTIONAL to manually add other PR URLs
# PR URL: A link the PR that added the changeset.
# If not present is automatically filled by the tooling finding the PR where this changelog fragment has been added.
# NOTE: the tooling supports backports, so it's able to fill the original PR number instead of the backport PR number.
# Please provide it if you are adding a fragment for a different PR.
# pr: https://github.com/owner/repo/1234

# AUTOMATED
# OPTIONAL to manually add other issue URLs
# Issue URL; optional; the GitHub issue related to this changeset (either closes or is part of).
# If not present is automatically filled by the tooling with the issue linked to the PR number.
# issue: https://github.com/owner/repo/1234
442 changes: 221 additions & 221 deletions go.mod

Large diffs are not rendered by default.

966 changes: 484 additions & 482 deletions go.sum

Large diffs are not rendered by default.

431 changes: 215 additions & 216 deletions internal/edot/go.mod

Large diffs are not rendered by default.

943 changes: 472 additions & 471 deletions internal/edot/go.sum

Large diffs are not rendered by default.

5 changes: 4 additions & 1 deletion internal/edot/otelcol/components.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import (
"go.opentelemetry.io/collector/otelcol"
"go.opentelemetry.io/collector/processor"
"go.opentelemetry.io/collector/receiver"
"go.opentelemetry.io/collector/service/telemetry/otelconftelemetry"

// Receivers:
apachereceiver "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/apachereceiver"
Expand Down Expand Up @@ -102,7 +103,9 @@ import (
func components(extensionFactories ...extension.Factory) func() (otelcol.Factories, error) {
return func() (otelcol.Factories, error) {
var err error
factories := otelcol.Factories{}
factories := otelcol.Factories{
Telemetry: otelconftelemetry.NewFactory(),
}

// Receivers
receivers := []receiver.Factory{
Expand Down
134 changes: 67 additions & 67 deletions internal/pkg/otel/README.md

Large diffs are not rendered by default.

3 changes: 0 additions & 3 deletions internal/pkg/otel/samples/linux/profiles_metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ receivers:

connectors:
profilingmetrics:
by_frametype: true
by_frame: true
by_classification: true

exporters:
elasticsearch:
Expand Down