-
Notifications
You must be signed in to change notification settings - Fork 2.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[processor/transform] introduce aggregate_on_attributes function for …
…metrics (#33334) **Link to tracking Issue:** #16224 **Changes:** - implemented `aggregate_on_attributes` function (supporting sum/min/max/mean/median) for Sum, Gauge, Histogram, ExponentialHistogram - tests - documentation **Depends on** #33669 --------- Signed-off-by: odubajDT <[email protected]> Co-authored-by: Evan Bradley <[email protected]>
- Loading branch information
1 parent
1d31bc9
commit 1446a03
Showing
10 changed files
with
642 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Use this changelog template to create an entry for release notes. | ||
|
||
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix' | ||
change_type: enhancement | ||
|
||
# The name of the component, or a single word describing the area of concern, (e.g. filelogreceiver) | ||
component: transformprocessor | ||
|
||
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`). | ||
note: "Support aggregating metrics based on their attributes." | ||
|
||
# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists. | ||
issues: [16224] | ||
|
||
# (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: | ||
|
||
# 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. | ||
# Optional: The change log or logs in which this entry should be included. | ||
# e.g. '[user]' or '[user, api]' | ||
# 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: [user] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
processor/transformprocessor/internal/metrics/func_aggregate_on_attributes_metrics.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
// Copyright The OpenTelemetry Authors | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
package metrics // import "github.com/open-telemetry/opentelemetry-collector-contrib/processor/transformprocessor/internal/metrics" | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
|
||
"go.opentelemetry.io/collector/pdata/pmetric" | ||
|
||
"github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal/aggregateutil" | ||
"github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl" | ||
"github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl/contexts/ottlmetric" | ||
) | ||
|
||
type aggregateOnAttributesArguments struct { | ||
AggregationFunction string | ||
Attributes ottl.Optional[[]string] | ||
} | ||
|
||
func newAggregateOnAttributesFactory() ottl.Factory[ottlmetric.TransformContext] { | ||
return ottl.NewFactory("aggregate_on_attributes", &aggregateOnAttributesArguments{}, createAggregateOnAttributesFunction) | ||
} | ||
|
||
func createAggregateOnAttributesFunction(_ ottl.FunctionContext, oArgs ottl.Arguments) (ottl.ExprFunc[ottlmetric.TransformContext], error) { | ||
args, ok := oArgs.(*aggregateOnAttributesArguments) | ||
|
||
if !ok { | ||
return nil, fmt.Errorf("AggregateOnAttributesFactory args must be of type *AggregateOnAttributesArguments") | ||
} | ||
|
||
t, err := aggregateutil.ConvertToAggregationFunction(args.AggregationFunction) | ||
if err != nil { | ||
return nil, fmt.Errorf("invalid aggregation function: '%s', valid options: %s", err.Error(), aggregateutil.GetSupportedAggregationFunctionsList()) | ||
} | ||
|
||
return AggregateOnAttributes(t, args.Attributes) | ||
} | ||
|
||
func AggregateOnAttributes(aggregationFunction aggregateutil.AggregationType, attributes ottl.Optional[[]string]) (ottl.ExprFunc[ottlmetric.TransformContext], error) { | ||
return func(_ context.Context, tCtx ottlmetric.TransformContext) (any, error) { | ||
metric := tCtx.GetMetric() | ||
|
||
if metric.Type() == pmetric.MetricTypeSummary { | ||
return nil, fmt.Errorf("aggregate_on_attributes does not support aggregating Summary metrics") | ||
} | ||
|
||
ag := aggregateutil.AggGroups{} | ||
aggregateutil.FilterAttrs(metric, attributes.Get()) | ||
newMetric := pmetric.NewMetric() | ||
aggregateutil.CopyMetricDetails(metric, newMetric) | ||
aggregateutil.GroupDataPoints(metric, &ag) | ||
aggregateutil.MergeDataPoints(newMetric, aggregationFunction, ag) | ||
newMetric.MoveTo(metric) | ||
|
||
return nil, nil | ||
}, nil | ||
} |
Oops, something went wrong.