You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/opentelemetry/get-started/apm-monitoring/opentelemetry-apm-ui.mdx
+23-26Lines changed: 23 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -407,9 +407,9 @@ The following resource attributes are copied from source data on to APM metrics:
407
407
408
408
| Attribute | Type | Description | Example |
409
409
|---|---|---|---|
410
-
|`transactionName`|`string`| The name of the transaction. |`WebTransaction/server/GET /users/:id`,`OtherTransaction/consumer/unknown`|
411
-
|`transactionType`|`string`| The type of the transaction. |`Web`,`Other`|
412
-
|`error.type`|`string`| Describes a class of error the transaction ended with. |`500`,`TimeoutException`|
410
+
|`transactionName`|`string`| The name of the transaction. |`WebTransaction/server/GET /users/:id`,`OtherTransaction/consumer/unknown`|
411
+
|`transactionType`|`string`| The type of the transaction. |`Web`,`Other`|
412
+
|`error.type`|`string`| Describes a class of error the transaction ended with. |`500`,`TimeoutException`|
413
413
414
414
**[1]**: Unit from source metric is copied.
415
415
@@ -431,27 +431,24 @@ The following resource attributes are copied from source data on to APM metrics:
431
431
432
432
| Attribute | Type | Description | Example |
433
433
|---|---|---|---|
434
-
|`transactionName`|`string`| The name of the transaction. |`WebTransaction/server/GET /users/:id`,`OtherTransaction/consumer/unknown`|
435
-
|`transactionType`|`string`| The type of the transaction. |`Web`,`Other`|
436
-
|`db.system`|`string`| The database management system (DBMS) product as identified by the client instrumentation. |`postgresql`,`mysql`,`mariadb`|
437
-
|`db.sql.table`|`string`| The name of a collection (table, container) within the database. |`public.users`,`customers`|
438
-
|`db.operation`|`string`| The name of the operation or command being executed. |`findAndModify`,`HMSET`,`SELECT`|
439
-
|`external.host`|`string`| Server domain if available without reverse DNS lookup; otherwise, IP address or Unix domain socket name |`example.com`,`10.1.2.80`,`/tmp/my.sock`|
434
+
|`transactionName`|`string`| The name of the transaction. |`WebTransaction/server/GET /users/:id`, `OtherTransaction/consumer/unknown`|
435
+
|`transactionType`|`string`| The type of the transaction. |`Web`, `Other`|
436
+
| domain attributes | various | Domain specific attributes dependent on the source convention including: `db.system`, `db.sql.table`, `db.operation`, `external.host`| See `apm.service.external.host.duration`, `apm.service.datastore.operation.duration`|
|[`OtelHttpServer1_23`](https://github.com/open-telemetry/semantic-conventions/blob/v1.23.0/docs/http/http-metrics.md)|`server`|`http.request.method IS NOT NULL`|`WebTransaction/server/${http.request.method} ${http.route}`|`Web`|||||
446
-
|[`OtelHttpServer1_20`](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.20.0/specification/metrics/semantic_conventions/http-metrics.md)|`server`|`http.method IS NOT NULL`|`WebTransaction/server/${http.method} ${http.route}`|`Web`|||||
447
-
|[`OtelRpcServer1_20`](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.20.0/specification/trace/semantic_conventions/rpc.md)|`server`|`rpc.system IS NOT NULL`|`WebTransaction/server/${rpc.system}/${rpc.service:-unknown}.${rpc.method:-unknown}`|`Web`|||||
448
-
|[`OtelMessagingConsumer1_24`](https://github.com/open-telemetry/semantic-conventions/blob/v1.24.0/docs/messaging/messaging-spans.md)|`consumer`|`messaging.operation IS NOT NULL`|`OtherTransaction/consumer/${messaging.operation:-unknown}/${messaging.destination.template:-${messaging.destination.name:-unknown}}`|`Other`|||||
449
-
|[`OtelDbClient1_33`](https://github.com/open-telemetry/semantic-conventions/blob/v1.33.0/docs/database/database-metrics.md)|`internal`<br/>`client`|`db.system.name IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span |`${db.system.name}`|`${db.stored_procedure.name:-${db.collection.name:-${__db_summary_to_sql_table__}}}`|`${db.operation.name:-${__db_summary_to_operation__:-unknown}}`||
450
-
|[`OtelDbClientRedis1_24`](https://github.com/open-telemetry/semantic-conventions/blob/v1.24.0/docs/database/database-spans.md)|`client`|`db.system IS NOT NULL`<br/>`db.system = 'redis'`|`transactionName` of the local root span |`transactionType` of the local root span |`${db.system}`|`${db.sql.table}`|`${name:-unknown}`||
451
-
|[`OtelDbClient1_24`](https://github.com/open-telemetry/semantic-conventions/blob/v1.24.0/docs/database/database-spans.md)|`client`|`db.system IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span |`${db.system}`|`${db.sql.table}`|`${db.operation:-unknown}`||
452
-
|[`OtelHttpClient1_23`](https://github.com/open-telemetry/semantic-conventions/blob/v1.23.1/docs/http/http-metrics.md)|`client`|`http.request.method IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span ||||`${server.address:-unknown}`|
453
-
|[`OtelHttpClient1_20`](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.20.0/specification/metrics/semantic_conventions/http-metrics.md)|`client`|`http.method IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span ||||`${net.peer.name:-unknown}`|
454
-
|[`OtelRpcClient1_20`](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.20.0/specification/metrics/semantic_conventions/rpc-metrics.md)|`client`|`rpc.system IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span ||||`${net.peer.name:-unknown}`|
|[`OtelHttpServer1_23`](https://github.com/open-telemetry/semantic-conventions/blob/v1.23.0/docs/http/http-metrics.md)|`server`|`http.request.method IS NOT NULL`|`WebTransaction/server/${http.request.method} ${http.route}`|`Web`||
443
+
|[`OtelHttpServer1_20`](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.20.0/specification/metrics/semantic_conventions/http-metrics.md)|`server`|`http.method IS NOT NULL`|`WebTransaction/server/${http.method} ${http.route}`|`Web`||
444
+
|[`OtelRpcServer1_20`](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.20.0/specification/trace/semantic_conventions/rpc.md)|`server`|`rpc.system IS NOT NULL`|`WebTransaction/server/${rpc.system}/${rpc.service:-unknown}.${rpc.method:-unknown}`|`Web`||
445
+
|[`OtelMessagingConsumer1_24`](https://github.com/open-telemetry/semantic-conventions/blob/v1.24.0/docs/messaging/messaging-spans.md)|`consumer`|`messaging.operation IS NOT NULL`|`OtherTransaction/consumer/${messaging.operation:-unknown}/${messaging.destination.template:-${messaging.destination.name:-unknown}}`|`Other`||
446
+
|[`OtelDbClient1_33`](https://github.com/open-telemetry/semantic-conventions/blob/v1.33.0/docs/database/database-metrics.md)|`internal`<br/>`client`|`db.system.name IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span |`db.system`: `${db.system.name}`<br/>`db.sql.table`: `${db.stored_procedure.name:-${db.collection.name:-${__db_summary_to_sql_table__}}}`<br/>`db.operation`: `${db.operation.name:-${__db_summary_to_operation__:-unknown}}`|
447
+
|[`OtelDbClientRedis1_24`](https://github.com/open-telemetry/semantic-conventions/blob/v1.24.0/docs/database/database-spans.md)|`client`|`db.system IS NOT NULL`<br/>`db.system = 'redis'`|`transactionName` of the local root span |`transactionType` of the local root span |`db.system`: `${db.system}`<br/>`db.sql.table`: `${db.sql.table}`<br/>`db.operation`: `${name:-unknown}`|
448
+
|[`OtelDbClient1_24`](https://github.com/open-telemetry/semantic-conventions/blob/v1.24.0/docs/database/database-spans.md)|`client`|`db.system IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span |`db.system`: `${db.system}`<br/>`db.sql.table`: `${db.sql.table}`<br/>`db.operation`: `${db.operation:-unknown}`|
449
+
|[`OtelHttpClient1_23`](https://github.com/open-telemetry/semantic-conventions/blob/v1.23.1/docs/http/http-metrics.md)|`client`|`http.request.method IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span |`external.host`:`${server.address:-unknown}`|
450
+
|[`OtelHttpClient1_20`](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.20.0/specification/metrics/semantic_conventions/http-metrics.md)|`client`|`http.method IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span |`external.host`:`${net.peer.name:-unknown}`|
451
+
|[`OtelRpcClient1_20`](https://github.com/open-telemetry/opentelemetry-specification/blob/v1.20.0/specification/metrics/semantic_conventions/rpc-metrics.md)|`client`|`rpc.system IS NOT NULL`|`transactionName` of the local root span |`transactionType` of the local root span |`external.host`:`${net.peer.name:-unknown}`|
455
452
456
453
## Metric: `apm.service.external.host.duration`
457
454
@@ -461,7 +458,7 @@ The following resource attributes are copied from source data on to APM metrics:
461
458
462
459
| Attribute | Type | Description | Example |
463
460
|---|---|---|---|
464
-
|`external.host`|`string`| Server domain if available without reverse DNS lookup; otherwise, IP address or Unix domain socket name |`example.com`,`10.1.2.80`,`/tmp/my.sock`|
461
+
|`external.host`|`string`| Server domain if available without reverse DNS lookup; otherwise, IP address or Unix domain socket name |`example.com`,`10.1.2.80`,`/tmp/my.sock`|
465
462
466
463
**[1]**: Unit from source metric is copied.
467
464
@@ -481,10 +478,10 @@ The following resource attributes are copied from source data on to APM metrics:
481
478
482
479
| Attribute | Type | Description | Example |
483
480
|---|---|---|---|
484
-
|`db.system`|`string`| The database management system (DBMS) product as identified by the client instrumentation. |`postgresql`,`mysql`,`mariadb`|
485
-
|`db.sql.table`|`string`| The name of a collection (table, container) within the database. |`public.users`,`customers`|
486
-
|`db.operation`|`string`| The name of the operation or command being executed. |`findAndModify`,`HMSET`,`SELECT`|
487
-
|`db.query.summary`|`string`| Low cardinality summary of a database query. |`SELECT wuser_table`,`INSERT shipping_details`,`SELECT order`|
481
+
|`db.system`|`string`| The database management system (DBMS) product as identified by the client instrumentation. |`postgresql`,`mysql`,`mariadb`|
482
+
|`db.sql.table`|`string`| The name of a collection (table, container) within the database. |`public.users`,`customers`|
483
+
|`db.operation`|`string`| The name of the operation or command being executed. |`findAndModify`,`HMSET`,`SELECT`|
484
+
|`db.query.summary`|`string`| Low cardinality summary of a database query. |`SELECT wuser_table`,`INSERT shipping_details`,`SELECT order`|
0 commit comments