Skip to content

Commit 6b08dd6

Browse files
committed
Reduce table width
1 parent e1eeb18 commit 6b08dd6

File tree

1 file changed

+23
-26
lines changed

1 file changed

+23
-26
lines changed

src/content/docs/opentelemetry/get-started/apm-monitoring/opentelemetry-apm-ui.mdx

Lines changed: 23 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -407,9 +407,9 @@ The following resource attributes are copied from source data on to APM metrics:
407407

408408
| Attribute | Type | Description | Example |
409409
|---|---|---|---|
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` |
413413

414414
**[1]**: Unit from source metric is copied.
415415

@@ -431,27 +431,24 @@ The following resource attributes are copied from source data on to APM metrics:
431431

432432
| Attribute | Type | Description | Example |
433433
|---|---|---|---|
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` |
440437

441438
### Span sources
442439

443-
| Semantic Convention | Span kind | Conditions | `transactionName` | `transactionType` | `db.system` | `db.sql.table` | `db.operation` | `external.host` |
444-
|---|---|---|---|---|---|---|---|---|
445-
| [`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}` |
440+
| Semantic Convention | Span kind | Conditions | `transactionName` | `transactionType` | domain attributes |
441+
|---|---|---|---|---|---|
442+
| [`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}` |
455452

456453
## Metric: `apm.service.external.host.duration`
457454

@@ -461,7 +458,7 @@ The following resource attributes are copied from source data on to APM metrics:
461458

462459
| Attribute | Type | Description | Example |
463460
|---|---|---|---|
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` |
465462

466463
**[1]**: Unit from source metric is copied.
467464

@@ -481,10 +478,10 @@ The following resource attributes are copied from source data on to APM metrics:
481478

482479
| Attribute | Type | Description | Example |
483480
|---|---|---|---|
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` |
488485

489486
**[1]**: Unit from source metric is copied.
490487

0 commit comments

Comments
 (0)