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 1.7.1-rc-1
1.7.1-rc-1
Created 18 November 2023.
Instrument your Gradle build with OpenTelemetry observability to find and eliminate build bottlenecks
Using the plugins DSL:
plugins {
id("com.atkinsondev.opentelemetry-build") version "1.7.1-rc-1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.atkinsondev:opentelemetry-gradle-plugin:1.7.1-rc-1")
}
}
apply(plugin = "com.atkinsondev.opentelemetry-build")
Using the plugins DSL:
plugins {
id "com.atkinsondev.opentelemetry-build" version "1.7.1-rc-1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.atkinsondev:opentelemetry-gradle-plugin:1.7.1-rc-1"
}
}
apply plugin: "com.atkinsondev.opentelemetry-build"