com.atkinsondev.opentelemetry-build
Owner: Craig Atkinson
Instrument your Gradle build with OpenTelemetry observability to find and element build bottlenecks
https://github.com/craigatk/opentelemetry-gradle-plugin
Sources: https://github.com/craigatk/opentelemetry-gradle-plugin
Version 2.1.0 (latest)
2.1.0
Created 16 October 2024.
Instrument your Gradle build with OpenTelemetry observability to find and eliminate build bottlenecks
Using the plugins DSL:
plugins {
id("com.atkinsondev.opentelemetry-build") version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.atkinsondev:opentelemetry-gradle-plugin:2.1.0")
}
}
apply(plugin = "com.atkinsondev.opentelemetry-build")
Using the plugins DSL:
plugins {
id "com.atkinsondev.opentelemetry-build" version "2.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.atkinsondev:opentelemetry-gradle-plugin:2.1.0"
}
}
apply plugin: "com.atkinsondev.opentelemetry-build"