forked from open-telemetry/opentelemetry-specification
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add schema definition for direction change
This is a follow up to open-telemetry#2617 now that open-telemetry#2653 has been merged.
- Loading branch information
Alex Boten
committed
Jul 22, 2022
1 parent
42081e0
commit e6aba90
Showing
1 changed file
with
82 additions
and
0 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,82 @@ | ||
file_format: 1.1.0 | ||
schema_url: https://opentelemetry.io/schemas/1.13.0 | ||
versions: | ||
1.13.0: | ||
metrics: | ||
changes: | ||
- split: | ||
apply_to_metric: system.paging.operations | ||
by_attribute: direction | ||
metrics_from_attributes: | ||
system.paging.operations.in: in | ||
system.paging.operations.out: out | ||
- split: | ||
apply_to_metric: system.disk.io | ||
by_attribute: direction | ||
metrics_from_attributes: | ||
system.disk.io.read: read | ||
system.disk.io.write: write | ||
- split: | ||
apply_to_metric: system.disk.operations | ||
by_attribute: direction | ||
metrics_from_attributes: | ||
system.disk.operations.read: read | ||
system.disk.operations.write: write | ||
- split: | ||
apply_to_metric: system.disk.operation_time | ||
by_attribute: direction | ||
metrics_from_attributes: | ||
system.disk.operation_time.read: read | ||
system.disk.operation_time.write: write | ||
- split: | ||
apply_to_metric: system.disk.merged | ||
by_attribute: direction | ||
metrics_from_attributes: | ||
system.disk.merged.read: read | ||
system.disk.merged.write: write | ||
- split: | ||
apply_to_metric: system.network.dropped | ||
by_attribute: direction | ||
metrics_from_attributes: | ||
system.network.dropped.receive: receive | ||
system.network.dropped.transmit: transmit | ||
- split: | ||
apply_to_metric: system.network.packets | ||
by_attribute: direction | ||
metrics_from_attributes: | ||
system.network.packets.receive: receive | ||
system.network.packets.transmit: transmit | ||
- split: | ||
apply_to_metric: system.network.errors | ||
by_attribute: direction | ||
metrics_from_attributes: | ||
system.network.errors.receive: receive | ||
system.network.errors.transmit: transmit | ||
- split: | ||
apply_to_metric: system.network.io | ||
by_attribute: direction | ||
metrics_from_attributes: | ||
system.network.io.receive: receive | ||
system.network.io.transmit: transmit | ||
|
||
1.12.0: | ||
spans: | ||
changes: | ||
- rename_attributes: | ||
attribute_map: | ||
net.peer.ip: net.sock.peer.addr | ||
net.host.ip: net.sock.host.addr | ||
1.11.0: | ||
1.10.0: | ||
1.9.0: | ||
1.8.0: | ||
spans: | ||
changes: | ||
- rename_attributes: | ||
attribute_map: | ||
db.cassandra.keyspace: db.name | ||
db.hbase.namespace: db.name | ||
1.7.0: | ||
1.6.1: | ||
1.5.0: | ||
1.4.0: |