feat(sdk): Add Prometheus exposition format export #48
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Summary
Adds support for exporting metrics in Prometheus text-based exposition format, enabling scraping by Prometheus or compatible monitoring systems.
Changes
prometheusfeature flag to buswatch-sdkprometheus.rsmodule with:PrometheusConfigbuilder for configurationPrometheusExporterfor storing and rendering metricsformat_prometheus()function to convert snapshots to Prometheus formatOutput::prometheus()variant/healthand/healthzendpoints for Kubernetes probesMetrics Exported
buswatch_read_count(counter) - Total messages readbuswatch_write_count(counter) - Total messages writtenbuswatch_read_backlog(gauge) - Unread message countbuswatch_read_pending_seconds(gauge) - Read wait timebuswatch_write_pending_seconds(gauge) - Write wait timebuswatch_read_rate_per_second(gauge) - Read throughputbuswatch_write_rate_per_second(gauge) - Write throughputbuswatch_snapshot_timestamp_seconds(gauge) - Snapshot timestampAll metrics include
moduleandtopiclabels.Usage
Closes #10