Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
55e077c
[processor/transform] Introduce convert_summary_quantile_val_to_gauge…
odubajDT Jan 15, 2025
658cef2
wprking version with multiple gauges
odubajDT Jan 16, 2025
ae7101b
fix lint
odubajDT Jan 16, 2025
0f55599
one datapoint per quantile
odubajDT Jan 17, 2025
71fe4d2
Update processor/transformprocessor/README.md
odubajDT Mar 4, 2025
56901e9
move to metric transform context
odubajDT Mar 4, 2025
378a14d
add optional suffix
odubajDT Mar 5, 2025
d884531
add test
odubajDT Mar 5, 2025
e568a4b
fix lint
odubajDT Apr 16, 2025
9a0f2ff
adapt readme
odubajDT May 23, 2025
c68f3e9
Merge branch 'main' into transform-convert-summary-gauge
odubajDT Jun 3, 2025
2e82da9
Merge branch 'main' into transform-convert-summary-gauge
odubajDT Jun 13, 2025
1af321b
Merge branch 'main' into transform-convert-summary-gauge
odubajDT Jun 16, 2025
8159b3c
Merge branch 'main' into transform-convert-summary-gauge
odubajDT Jun 20, 2025
89d2ea4
Merge branch 'main' into transform-convert-summary-gauge
odubajDT Aug 1, 2025
f160b89
Update processor/transformprocessor/internal/metrics/func_convert_sum…
odubajDT Aug 1, 2025
6c11cc0
Merge branch 'main' into transform-convert-summary-gauge
odubajDT Aug 5, 2025
88ccd19
use double instead of string
odubajDT Aug 6, 2025
6471315
Update processor/transformprocessor/internal/metrics/func_convert_sum…
odubajDT Aug 7, 2025
ba3565d
Update processor/transformprocessor/README.md
evan-bradley Aug 8, 2025
fef51a4
Merge branch 'main' into transform-convert-summary-gauge
evan-bradley Aug 8, 2025
9a618bc
Merge branch 'main' into transform-convert-summary-gauge
evan-bradley Aug 8, 2025
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
Prev Previous commit
Next Next commit
Update processor/transformprocessor/README.md
Co-authored-by: Edmo Vamerlatti Costa <[email protected]>
  • Loading branch information
evan-bradley and edmocosta authored Aug 8, 2025
commit ba3565d0caeca0ecd4efecfe1ac63f6b01e5c0eb
2 changes: 1 addition & 1 deletion processor/transformprocessor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ The `convert_summary_quantile_val_to_gauge` function creates a new Gauge metric
`attributeKey` is an optional string that specifies the attribute key holding the quantile value for each corresponding output data point. The default key is `quantile`.
`suffix` is an optional string representing the suffix of the metric name. The default value is `.quantiles`.

The name for the new metric will be `<summary metric name>.quantiles`. The fields that are copied are: `timestamp`, `starttimestamp`, `attributes`, `unit` and `description`. The new metric that is created will be passed to all functions in the metrics statements list. Function conditions will apply.
The name for the new metric will be `<summary metric name>.quantiles`. The fields that are copied are: `timestamp`, `starttimestamp`, `attributes`, `unit` and `description`. The new metric that is created will be passed to all functions in the metrics statements list. Function conditions will apply.

Examples:

Expand Down
Loading