Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7c74939
Started metric health metrics
JonasKunz Mar 18, 2025
e8793de
Adjust names and generate markdown
JonasKunz Mar 26, 2025
37bc732
Merge remote-tracking branch 'otel/main' into metric-health-metrics
JonasKunz Mar 26, 2025
f5bb34e
Fix data point unit
JonasKunz Mar 26, 2025
f23c072
Added changelog
JonasKunz Mar 26, 2025
fcf5ff7
Fix metric name
JonasKunz Mar 26, 2025
9910b0a
lint
JonasKunz Mar 26, 2025
bfd6d85
more linting
JonasKunz Mar 26, 2025
b8c3180
lint
JonasKunz Mar 26, 2025
4286899
fix changelog
JonasKunz Mar 26, 2025
b83b5c7
Merge branch 'main' into metric-health-metrics
JonasKunz Mar 28, 2025
c0fc67b
Merge branch 'main' into metric-health-metrics
JonasKunz Apr 8, 2025
b825cd0
Fix merge problems
JonasKunz Apr 8, 2025
a7e6115
Add missing heading
JonasKunz Apr 8, 2025
ae98178
Add missing metric component types
JonasKunz Apr 8, 2025
08679ec
Replace forgotten occurences of LogRecord with log_record
JonasKunz Apr 8, 2025
d628a22
Remove trailing spaces
JonasKunz Apr 8, 2025
51c14aa
Merge branch 'main' into metric-health-metrics
JonasKunz Apr 9, 2025
bce0774
Merge branch 'main' into metric-health-metrics
JonasKunz Apr 10, 2025
5c33543
Change metric reader metric to duration histogram
JonasKunz Apr 10, 2025
39378f6
change metricreader to metric_reader
JonasKunz Apr 11, 2025
c82b8c5
Merge branch 'main' into metric-health-metrics
JonasKunz Apr 11, 2025
a2058b6
Merge branch 'main' into metric-health-metrics
AlexanderWert Apr 13, 2025
e6a4d3d
Merge branch 'main' into metric-health-metrics
Apr 13, 2025
87e4626
Review style fixes
JonasKunz Apr 14, 2025
3d4e12e
Use metric_data_point in metric names
JonasKunz Apr 14, 2025
e59c737
Merge branch 'main' into metric-health-metrics
JonasKunz Apr 14, 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
22 changes: 22 additions & 0 deletions .chloggen/metric-health-metrics.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Use this changelog template to create an entry for release notes.
#
# If your change doesn't affect end users you should instead start
# your pull request title with [chore] or use the "Skip Changelog" label.

# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: 'enhancement'

# The name of the area of concern in the attributes-registry, (e.g. http, cloud, db)
component: 'otel'

# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Adds SDK self-monitoring metrics for metric processing

# Mandatory: One or more tracking issues related to the change. You can use the PR number here if no issue exists.
# The values here must be integers.
issues: [2016]

# (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:
18 changes: 11 additions & 7 deletions docs/attributes-registry/otel.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,16 +69,20 @@ E.g. for Java the fully qualified classname SHOULD be used in this case.

| Value | Description | Stability |
|---|---|---|
| `batching_log_processor` | The builtin SDK Batching LogRecord Processor | ![Development](https://img.shields.io/badge/-development-blue) |
| `batching_span_processor` | The builtin SDK Batching Span Processor | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_grpc_log_exporter` | OTLP LogRecord exporter over gRPC with protobuf serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `batching_log_processor` | The builtin SDK batching log record processor | ![Development](https://img.shields.io/badge/-development-blue) |
| `batching_span_processor` | The builtin SDK batching span processor | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_grpc_log_exporter` | OTLP log record exporter over gRPC with protobuf serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_grpc_metric_exporter` | OTLP metric exporter over gRPC with protobuf serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_grpc_span_exporter` | OTLP span exporter over gRPC with protobuf serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_http_json_log_exporter` | OTLP LogRecord exporter over HTTP with JSON serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_http_json_log_exporter` | OTLP log record exporter over HTTP with JSON serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_http_json_metric_exporter` | OTLP metric exporter over HTTP with JSON serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_http_json_span_exporter` | OTLP span exporter over HTTP with JSON serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_http_log_exporter` | OTLP LogRecord exporter over HTTP with protobuf serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_http_log_exporter` | OTLP log record exporter over HTTP with protobuf serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_http_metric_exporter` | OTLP metric exporter over HTTP with protobuf serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `otlp_http_span_exporter` | OTLP span exporter over HTTP with protobuf serialization | ![Development](https://img.shields.io/badge/-development-blue) |
| `simple_log_processor` | The builtin SDK Simple LogRecord Processor | ![Development](https://img.shields.io/badge/-development-blue) |
| `simple_span_processor` | The builtin SDK Simple Span Processor | ![Development](https://img.shields.io/badge/-development-blue) |
| `periodic_metric_reader` | The builtin SDK periodically exporting metric reader | ![Development](https://img.shields.io/badge/-development-blue) |
| `simple_log_processor` | The builtin SDK simple log record processor | ![Development](https://img.shields.io/badge/-development-blue) |
| `simple_span_processor` | The builtin SDK simple span processor | ![Development](https://img.shields.io/badge/-development-blue) |

## OTel Scope Attributes

Expand Down
Loading
Loading