Fix JVM buffer pool attribute description (#3423)
Follow-up to #3413 --------- Co-authored-by: jack-berg <34418638+jack-berg@users.noreply.github.com>
This commit is contained in:
parent
e4613f98af
commit
92a5b9ef64
|
|
@ -154,7 +154,7 @@ groups:
|
|||
brief: "Describes JVM buffer metric attributes."
|
||||
attributes:
|
||||
- ref: pool
|
||||
brief: Name of the memory pool.
|
||||
brief: Name of the buffer pool.
|
||||
examples: [ "mapped", "direct" ]
|
||||
note: >
|
||||
Pool names are generally obtained via
|
||||
|
|
|
|||
|
|
@ -333,7 +333,7 @@ This metric is [recommended](../metric-requirement-level.md#recommended).
|
|||
<!-- semconv metric.process.runtime.jvm.buffer.usage(full) -->
|
||||
| Attribute | Type | Description | Examples | Requirement Level |
|
||||
|---|---|---|---|---|
|
||||
| `pool` | string | Name of the memory pool. [1] | `mapped`; `direct` | Recommended |
|
||||
| `pool` | string | Name of the buffer pool. [1] | `mapped`; `direct` | Recommended |
|
||||
|
||||
**[1]:** Pool names are generally obtained via [BufferPoolMXBean#getName()](https://docs.oracle.com/en/java/javase/11/docs/api/java.management/java/lang/management/BufferPoolMXBean.html#getName()).
|
||||
<!-- endsemconv -->
|
||||
|
|
@ -351,7 +351,7 @@ This metric is [recommended](../metric-requirement-level.md#recommended).
|
|||
<!-- semconv metric.process.runtime.jvm.buffer.limit(full) -->
|
||||
| Attribute | Type | Description | Examples | Requirement Level |
|
||||
|---|---|---|---|---|
|
||||
| `pool` | string | Name of the memory pool. [1] | `mapped`; `direct` | Recommended |
|
||||
| `pool` | string | Name of the buffer pool. [1] | `mapped`; `direct` | Recommended |
|
||||
|
||||
**[1]:** Pool names are generally obtained via [BufferPoolMXBean#getName()](https://docs.oracle.com/en/java/javase/11/docs/api/java.management/java/lang/management/BufferPoolMXBean.html#getName()).
|
||||
<!-- endsemconv -->
|
||||
|
|
@ -369,7 +369,7 @@ This metric is [recommended](../metric-requirement-level.md#recommended).
|
|||
<!-- semconv metric.process.runtime.jvm.buffer.count(full) -->
|
||||
| Attribute | Type | Description | Examples | Requirement Level |
|
||||
|---|---|---|---|---|
|
||||
| `pool` | string | Name of the memory pool. [1] | `mapped`; `direct` | Recommended |
|
||||
| `pool` | string | Name of the buffer pool. [1] | `mapped`; `direct` | Recommended |
|
||||
|
||||
**[1]:** Pool names are generally obtained via [BufferPoolMXBean#getName()](https://docs.oracle.com/en/java/javase/11/docs/api/java.management/java/lang/management/BufferPoolMXBean.html#getName()).
|
||||
<!-- endsemconv -->
|
||||
|
|
|
|||
Loading…
Reference in New Issue