-
Notifications
You must be signed in to change notification settings - Fork 776
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
Add spannable tracking around SyncResponseHandler #7514
Merged
Merged
Changes from 7 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
a6d6c89
Add spannable tracking around SyncResponseHandler
amitkma e312881
Update LICENSE header
amitkma f3ccec8
Refactor handleResponse and MetricsExtensions
amitkma 7f8781f
Merge branch 'develop' into feature/amitkma/sync-duration-tracking
amitkma e2c1a96
Update changelog.d
amitkma 5ced6c3
Improve code docs and comments
amitkma ecd51e7
Check if Sentry is enabled before tracking
amitkma 3e6dc49
Merge branch 'develop' into feature/amitkma/sync-duration-tracking
amitkma 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 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 @@ | ||
[Metrics] Add `SpannableMetricPlugin` to support spans within transactions. |
This file contains 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 |
---|---|---|
|
@@ -17,25 +17,51 @@ | |
package org.matrix.android.sdk.api.extensions | ||
|
||
import org.matrix.android.sdk.api.metrics.MetricPlugin | ||
import org.matrix.android.sdk.api.metrics.SpannableMetricPlugin | ||
import kotlin.contracts.ExperimentalContracts | ||
import kotlin.contracts.InvocationKind | ||
import kotlin.contracts.contract | ||
|
||
/** | ||
* Executes the given [block] while measuring the transaction. | ||
* | ||
* @param block Action/Task to be executed within this span. | ||
*/ | ||
@OptIn(ExperimentalContracts::class) | ||
inline fun List<MetricPlugin>.measureMetric(block: () -> Unit) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Yes I think we should update to avoid any confusion. |
||
contract { | ||
callsInPlace(block, InvocationKind.EXACTLY_ONCE) | ||
} | ||
try { | ||
this.forEach { plugin -> plugin.startTransaction() } // Start the transaction. | ||
block() | ||
} catch (throwable: Throwable) { | ||
this.forEach { plugin -> plugin.onError(throwable) } // Capture if there is any exception thrown. | ||
throw throwable | ||
} finally { | ||
this.forEach { plugin -> plugin.finishTransaction() } // Finally, finish this transaction. | ||
} | ||
} | ||
|
||
/** | ||
* Executes the given [block] while measuring a span. | ||
* | ||
* @param operation Name of the new span. | ||
* @param description Description of the new span. | ||
* @param block Action/Task to be executed within this span. | ||
*/ | ||
@OptIn(ExperimentalContracts::class) | ||
inline fun measureMetric(metricMeasurementPlugins: List<MetricPlugin>, block: () -> Unit) { | ||
inline fun List<SpannableMetricPlugin>.measureSpan(operation: String, description: String, block: () -> Unit) { | ||
contract { | ||
callsInPlace(block, InvocationKind.EXACTLY_ONCE) | ||
} | ||
try { | ||
metricMeasurementPlugins.forEach { plugin -> plugin.startTransaction() } // Start the transaction. | ||
this.forEach { plugin -> plugin.startSpan(operation, description) } // Start the transaction. | ||
block() | ||
} catch (throwable: Throwable) { | ||
metricMeasurementPlugins.forEach { plugin -> plugin.onError(throwable) } // Capture if there is any exception thrown. | ||
this.forEach { plugin -> plugin.onError(throwable) } // Capture if there is any exception thrown. | ||
throw throwable | ||
} finally { | ||
metricMeasurementPlugins.forEach { plugin -> plugin.finishTransaction() } // Finally, finish this transaction. | ||
this.forEach { plugin -> plugin.finishSpan() } // Finally, finish this transaction. | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
matrix-sdk-android/src/main/java/org/matrix/android/sdk/api/metrics/SpannableMetricPlugin.kt
This file contains 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,36 @@ | ||
/* | ||
* Copyright (c) 2022 The Matrix.org Foundation C.I.C. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.matrix.android.sdk.api.metrics | ||
|
||
/** | ||
* A plugin that tracks span along with transactions. | ||
*/ | ||
interface SpannableMetricPlugin : MetricPlugin { | ||
|
||
/** | ||
* Starts the span for a sub-task. | ||
* | ||
* @param operation Name of the new span. | ||
* @param description Description of the new span. | ||
*/ | ||
fun startSpan(operation: String, description: String) | ||
|
||
/** | ||
* Finish the span when sub-task is completed. | ||
*/ | ||
fun finishSpan() | ||
} |
32 changes: 32 additions & 0 deletions
32
...-sdk-android/src/main/java/org/matrix/android/sdk/api/metrics/SyncDurationMetricPlugin.kt
This file contains 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,32 @@ | ||
/* | ||
* Copyright 2022 The Matrix.org Foundation C.I.C. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
package org.matrix.android.sdk.api.metrics | ||
|
||
import org.matrix.android.sdk.api.logger.LoggerTag | ||
import timber.log.Timber | ||
|
||
private val loggerTag = LoggerTag("SyncDurationMetricPlugin", LoggerTag.CRYPTO) | ||
|
||
/** | ||
* An spannable metric plugin for sync response handling task. | ||
*/ | ||
interface SyncDurationMetricPlugin : SpannableMetricPlugin { | ||
|
||
override fun logTransaction(message: String?) { | ||
Timber.tag(loggerTag.value).v("## syncResponseHandler() : $message") | ||
} | ||
} |
This file contains 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 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 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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wonder why this class is called
MetricsExtensions
and is in the packageextensions
? It seems to me there is no extension methods in this file. Maybe we should rename and move it somewhere else?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, you are right. Initially, I was thinking of making them as extension of
MetricsPlugin
but now they are just functions so we need to rename it.