|
1 | 1 | <OnboardingOptionButtons |
2 | | - options={["error-monitoring", "performance", {id: "opentelemetry", checked: true}]} |
| 2 | + options={["error-monitoring", "performance", {id: "opentelemetry", checked: true}, "profiling"]} |
3 | 3 | /> |
4 | 4 |
|
5 | 5 | ```xml {tabTitle:Maven Plugin}{filename:pom.xml} |
|
35 | 35 | </execution> |
36 | 36 | </executions> |
37 | 37 | </plugin> |
| 38 | +// ___PRODUCT_OPTION_START___ profiling |
| 39 | +<dependencies> |
| 40 | + <dependency> |
| 41 | + <groupId>io.sentry</groupId> |
| 42 | + <artifactId>sentry-async-profiler</artifactId> |
| 43 | + <version>{{@inject packages.version('sentry.java.async-profiler', '8.23.0') }}</version> |
| 44 | + </dependency> |
| 45 | +</dependencies> |
| 46 | +// ___PRODUCT_OPTION_END___ profiling |
38 | 47 | ``` |
39 | 48 |
|
40 | 49 | ```xml {tabTitle:Maven} |
|
43 | 52 | <artifactId>sentry-logback</artifactId> |
44 | 53 | <version>{{@inject packages.version('sentry.java.logback', '4.2.0') }}</version> |
45 | 54 | </dependency> |
| 55 | +// ___PRODUCT_OPTION_START___ profiling |
| 56 | +<dependency> |
| 57 | + <groupId>io.sentry</groupId> |
| 58 | + <artifactId>sentry-async-profiler</artifactId> |
| 59 | + <version>{{@inject packages.version('sentry.java.async-profiler', '8.23.0') }}</version> |
| 60 | +</dependency> |
| 61 | +// ___PRODUCT_OPTION_END___ profiling |
46 | 62 | ``` |
47 | 63 |
|
48 | 64 | ```groovy {tabTitle:Gradle Plugin} |
49 | 65 | plugins { |
50 | 66 | id "io.sentry.jvm.gradle" version "{{@inject packages.version('sentry.java.android.gradle-plugin', '3.12.0') }}" |
51 | 67 | } |
| 68 | +// ___PRODUCT_OPTION_START___ profiling |
| 69 | +dependencies { |
| 70 | + implementation 'io.sentry:sentry-async-profiler:{{@inject packages.version('sentry.java.async-profiler', '8.23.0') }}' |
| 71 | +} |
| 72 | +// ___PRODUCT_OPTION_END___ profiling |
52 | 73 | ``` |
53 | 74 |
|
54 | 75 | ```groovy {tabTitle:Gradle} |
55 | 76 | implementation 'io.sentry:sentry-logback:{{@inject packages.version('sentry.java.logback', '4.2.0') }}' |
| 77 | +// ___PRODUCT_OPTION_START___ profiling |
| 78 | +implementation 'io.sentry:sentry-async-profiler:{{@inject packages.version('sentry.java.async-profiler', '8.23.0') }}' |
| 79 | +// ___PRODUCT_OPTION_END___ profiling |
56 | 80 | ``` |
57 | 81 |
|
58 | 82 | ```scala {tabTitle: SBT} |
59 | 83 | libraryDependencies += "io.sentry" % "sentry-logback" % "{{@inject packages.version('sentry.java.logback', '4.2.0') }}" |
| 84 | +// ___PRODUCT_OPTION_START___ profiling |
| 85 | +libraryDependencies += "io.sentry" % "sentry-async-profiler" % "{{@inject packages.version('sentry.java.async-profiler', '8.23.0') }}" |
| 86 | +// ___PRODUCT_OPTION_END___ profiling |
60 | 87 | ``` |
61 | 88 |
|
62 | 89 | For other dependency managers, see the [central Maven repository](https://search.maven.org/artifact/io.sentry/sentry-logback). |
|
0 commit comments