Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat][doc] PIP-264: Add OpenTelemetry messaging rate limit metrics reference #943

Merged
Changes from all commits
Commits
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
25 changes: 25 additions & 0 deletions docs/reference-metrics-opentelemetry.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,17 @@ The number of connection create operations.
* `success`
* `failure`

#### pulsar.broker.connection.rate_limit.count
The number of times a connection has been rate limited.
* Type: Counter
* Unit: `{operation}`
* Attributes:
* `pulsar.connection.rate_limit.operation.name` - The name of the rate limiting operation performed. Can be one of:
* `paused`
* `resumed`
* `throttled`
* `unthrottled`

### Topic Messaging metrics

#### pulsar.broker.topic.subscription.count
Expand Down Expand Up @@ -669,6 +680,20 @@ The total number of mark delete operations for this ledger.
* `pulsar.namespace` - The managed ledger namespace.
* `pulsar.managed_ledger.name` - The name of the managed ledger.

#### pulsar.broker.managed_ledger.inflight.read.limit
Maximum number of bytes that can be retained by managed ledger data read from storage or cache.
* Type: Counter
* Unit: `By`

#### pulsar.broker.managed_ledger.inflight.read.usage
Estimated number of bytes retained by managed ledger data read from storage or cache.
* Type: Counter
* Unit: `By`
* Attributes:
* `pulsar.managed_ledger.inflight.read.usage.state` - Indicates managed ledger memory limiter usage state. Can be one of:
* `used`
* `free`

### Schema Registry Metrics

#### pulsar.broker.request.schema_registry.duration
Expand Down
Loading