-
Notifications
You must be signed in to change notification settings - Fork 731
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 metrics plugin to track device download keys task #7438
Merged
Merged
Changes from 2 commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
96ffa97
Add metrics tracking plugin for download device keys
amitkma f5357f6
Merge branch 'develop' into feature/amitkma/sentry-tracking
amitkma 961d620
Add support for multiple metrics plugin
amitkma fb91466
Update copyright license header in matrix-sdk-android
amitkma d3c4982
Add tests for MetricExtension
amitkma c32e02b
Merge branch 'develop' into feature/amitkma/sentry-tracking
amitkma 43841b6
Update changelog
amitkma e6598f2
Improve MetricsExtension and reformatting
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
36 changes: 36 additions & 0 deletions
36
matrix-sdk-android/src/main/java/org/matrix/android/sdk/api/extensions/MetricsExtensions.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 New Vector Ltd | ||
* | ||
* 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.extensions | ||
|
||
import org.matrix.android.sdk.api.metrics.MetricsPlugin | ||
import kotlin.contracts.ExperimentalContracts | ||
import kotlin.contracts.InvocationKind | ||
import kotlin.contracts.contract | ||
|
||
/** | ||
* Executes the given [block] while measuring the transaction. | ||
*/ | ||
@OptIn(ExperimentalContracts::class) | ||
public inline fun <T> measureMetric(metricMeasurementPlugin: MetricsPlugin, block: () -> T): T { | ||
contract { | ||
callsInPlace(block, InvocationKind.EXACTLY_ONCE) | ||
} | ||
metricMeasurementPlugin.startTransaction() | ||
val answer = block() | ||
amitkma marked this conversation as resolved.
Show resolved
Hide resolved
|
||
metricMeasurementPlugin.finishTransaction() | ||
return answer | ||
} |
19 changes: 19 additions & 0 deletions
19
...droid/src/main/java/org/matrix/android/sdk/api/metrics/DownloadDeviceKeysMetricsPlugin.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,19 @@ | ||
/* | ||
* Copyright (c) 2022 New Vector Ltd | ||
* | ||
* 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 | ||
|
||
interface DownloadDeviceKeysMetricsPlugin: MetricsPlugin |
34 changes: 34 additions & 0 deletions
34
matrix-sdk-android/src/main/java/org/matrix/android/sdk/api/metrics/MetricsPlugin.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,34 @@ | ||
/* | ||
* Copyright (c) 2022 New Vector Ltd | ||
* | ||
* 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 can be used to capture metrics in Client. | ||
*/ | ||
interface MetricsPlugin { | ||
/** | ||
* Start the measurement of the metrics as soon as task is started. | ||
*/ | ||
fun startTransaction() | ||
|
||
/** | ||
* Mark the measuring transaction finished once the task is completed. | ||
*/ | ||
fun finishTransaction() | ||
|
||
fun onError(throwable: Throwable) | ||
} |
36 changes: 36 additions & 0 deletions
36
...ix-sdk-android/src/main/java/org/matrix/android/sdk/api/metrics/impl/NoOpMetricsPlugin.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 New Vector Ltd | ||
* | ||
* 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.impl | ||
|
||
import org.matrix.android.sdk.api.metrics.MetricsPlugin | ||
|
||
/** | ||
* A no-op implementation of metrics plugin. This class simply bypasses all the transaction methods. | ||
*/ | ||
class NoOpMetricsPlugin: MetricsPlugin { | ||
override fun startTransaction() { | ||
// No-op | ||
} | ||
|
||
override fun finishTransaction() { | ||
// No-op | ||
} | ||
|
||
override fun onError(throwable: Throwable) { | ||
// No-op | ||
} | ||
} |
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
30 changes: 30 additions & 0 deletions
30
vector/src/main/java/im/vector/app/features/analytics/metrics/VectorMetricsPlugin.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,30 @@ | ||
/* | ||
* Copyright (c) 2022 New Vector Ltd | ||
* | ||
* 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 im.vector.app.features.analytics.metrics | ||
|
||
import im.vector.app.features.analytics.metrics.sentry.SentryDownloadDeviceKeysMetrics | ||
import org.matrix.android.sdk.api.metrics.DownloadDeviceKeysMetricsPlugin | ||
import javax.inject.Inject | ||
import javax.inject.Singleton | ||
|
||
/** | ||
* Default implementation of MetricsPlugin. | ||
*/ | ||
@Singleton | ||
class VectorMetricsPlugin @Inject constructor( | ||
private val sentryDownloadDeviceKeysMetrics: SentryDownloadDeviceKeysMetrics | ||
) : DownloadDeviceKeysMetricsPlugin by sentryDownloadDeviceKeysMetrics |
42 changes: 42 additions & 0 deletions
42
...n/java/im/vector/app/features/analytics/metrics/sentry/SentryDownloadDeviceKeysMetrics.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,42 @@ | ||
/* | ||
* Copyright (c) 2022 New Vector Ltd | ||
* | ||
* 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 im.vector.app.features.analytics.metrics.sentry | ||
|
||
import io.sentry.ITransaction | ||
import io.sentry.Sentry | ||
import io.sentry.SpanStatus | ||
import org.matrix.android.sdk.api.metrics.DownloadDeviceKeysMetricsPlugin | ||
import javax.inject.Inject | ||
|
||
class SentryDownloadDeviceKeysMetrics @Inject constructor(): DownloadDeviceKeysMetricsPlugin { | ||
private var transaction: ITransaction? = null | ||
|
||
override fun startTransaction() { | ||
transaction = Sentry.startTransaction("download_device_keys", "task"); | ||
} | ||
|
||
override fun finishTransaction() { | ||
transaction?.finish() | ||
} | ||
|
||
override fun onError(throwable: Throwable) { | ||
transaction?.apply { | ||
this.throwable = throwable | ||
this.status = SpanStatus.INTERNAL_ERROR | ||
} | ||
} | ||
} |
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.
what's contract? Do we really need it (i can see it's experimental)
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.
It is basically a way to tell the compiler about how the function behaves. Sometimes the compiler doesn't know or is not fully aware of certain conditions or returns. So you can specify an effect when a function is invoked to help the compiler.
In our case, it allows us to write this code: