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: Add new export error metrics to App Service common config #4696

Merged
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
12 changes: 7 additions & 5 deletions cmd/core-common-config-bootstrapper/res/configuration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,13 @@ app-services:
Metrics:
MessagesReceived: false
InvalidMessagesReceived: false
PipelineMessagesProcessed: false # Pipeline IDs are added as the tag for the metric for each pipeline defined
PipelineMessageProcessingTime: false # Pipeline IDs are added as the tag for the metric for each pipeline defined
PipelineProcessingErrors: false # Pipeline IDs are added as the tag for the metric for each pipeline defined
HttpExportSize: false # Single metric used for all HTTP Exports
MqttExportSize: false # BrokerAddress and Topic are added as the tag for this metric for each MqttExport defined
PipelineMessagesProcessed: false # Pipeline IDs are added as the tag for this metric for each pipeline defined
PipelineMessageProcessingTime: false # Pipeline IDs are added as the tag for this metric for each pipeline defined
PipelineProcessingErrors: false # Pipeline IDs are added as the tag for this metric for each pipeline defined
HttpExportSize: false # Url is added as tag for this metric for each HTTP export defined
HttpExportErrors: false # Url is added as tag for this metric for each HTTP export defined
MqttExportSize: false # BrokerAddress and Topic are added as the tag for this metric for each MQTT export defined
MqttExportErrors: false # BrokerAddress and Topic are added as the tag for this metric for each MQTT export defined
Clients:
core-metadata:
Protocol: "http"
Expand Down