-
Notifications
You must be signed in to change notification settings - Fork 1
chore: WPB-28096 Enable JVM metrics and add business metrics #147
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
0166a47
Add dependencies for metrics
bbaarriiss bfbeeda
Init metrics mechanism
bbaarriiss 2f7e983
Use onAppAddedToConversation metric in the flow
bbaarriiss 6749e84
Use onHelpCommand metric in the flow
bbaarriiss 9227945
* Add more business metrics
bbaarriiss File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,24 @@ | ||
| package com.wire.github.metrics | ||
|
|
||
| import io.ktor.server.application.Application | ||
| import io.ktor.server.application.install | ||
| import io.ktor.server.metrics.micrometer.MicrometerMetrics | ||
| import io.ktor.server.response.respond | ||
| import io.ktor.server.routing.get | ||
| import io.ktor.server.routing.routing | ||
| import io.micrometer.prometheusmetrics.PrometheusMeterRegistry | ||
| import org.koin.core.context.GlobalContext | ||
|
|
||
| fun Application.configureMetrics() { | ||
| val prometheusRegistry = GlobalContext.get().get<PrometheusMeterRegistry>() | ||
|
|
||
| install(plugin = MicrometerMetrics) { | ||
| registry = prometheusRegistry | ||
| } | ||
|
|
||
| routing { | ||
| get("/metrics") { | ||
| call.respond(prometheusRegistry.scrape()) | ||
| } | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,92 @@ | ||
| package com.wire.github.metrics | ||
|
|
||
| import io.micrometer.core.instrument.Counter | ||
| import io.micrometer.core.instrument.MeterRegistry | ||
|
|
||
| class UsageMetrics( | ||
| private val registry: MeterRegistry | ||
| ) { | ||
| private val helpCommandCounter: Counter = Counter | ||
| .builder("githubapp_help_commands_total") | ||
| .description("Number of Help commands received") | ||
| .register(registry) | ||
|
|
||
| private val appAddedToConversationCounter: Counter = Counter | ||
| .builder("githubapp_added_to_conversation_total") | ||
| .description("Number of times the app is added to a conversation") | ||
| .register(registry) | ||
|
|
||
| private fun webhookEventsReceivedCounter(event: String): Counter = | ||
| Counter | ||
| .builder("githubapp_webhook_events_received_total") | ||
| .description("Number of GitHub webhook deliveries accepted for processing") | ||
| .tag(TAG_EVENT, event) | ||
| .register(registry) | ||
|
|
||
| private fun notificationsSentCounter(event: String): Counter = | ||
| Counter | ||
| .builder("githubapp_notifications_sent_total") | ||
| .description("Number of messages sent to a conversation for a webhook delivery") | ||
| .tag(TAG_EVENT, event) | ||
| .register(registry) | ||
|
|
||
| private fun unsupportedEventsCounter( | ||
| event: String, | ||
| action: String? | ||
| ): Counter = | ||
| Counter | ||
| .builder("githubapp_unsupported_events_total") | ||
| .description("Number of webhook deliveries with no matching message template") | ||
| .tag(TAG_EVENT, event) | ||
| .tag(TAG_ACTION, action ?: NO_ACTION) | ||
| .register(registry) | ||
|
|
||
| /** | ||
| * A help command was received in a conversation. | ||
| * Signals how often users come back for the setup instructions. | ||
| */ | ||
| fun onHelpCommand() { | ||
| helpCommandCounter.increment() | ||
| } | ||
|
|
||
| /** | ||
| * The app was added to a conversation. | ||
| * First step of onboarding, before any webhook is configured. | ||
| */ | ||
| fun onAppAddedToConversation() { | ||
| appAddedToConversationCounter.increment() | ||
| } | ||
|
|
||
| /** | ||
| * A webhook delivery passed signature validation and entered processing. | ||
| * Top of the delivery funnel. | ||
| */ | ||
| fun onWebhookEventReceived(event: String) { | ||
| webhookEventsReceivedCounter(event).increment() | ||
| } | ||
|
|
||
| /** | ||
| * A webhook delivery was rendered and sent to the conversation. | ||
| * Bottom of the delivery funnel. | ||
| */ | ||
| fun onNotificationSent(event: String) { | ||
| notificationsSentCounter(event).increment() | ||
| } | ||
|
|
||
| /** | ||
| * A webhook delivery had no matching message template, so nothing was sent. | ||
| * Ranks the event/action pairs worth adding templates for. | ||
| */ | ||
| fun onUnsupportedEvent( | ||
| event: String, | ||
| action: String? | ||
| ) { | ||
| unsupportedEventsCounter(event, action).increment() | ||
| } | ||
|
|
||
| private companion object { | ||
| const val TAG_EVENT = "event" | ||
| const val TAG_ACTION = "action" | ||
| const val NO_ACTION = "none" | ||
| } | ||
| } |
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.