Gist to support https://youtu.be/3XzVOxvNpGM
- https://plugins.jenkins.io/opentelemetry/
- https://github.com/open-telemetry/opentelemetry-collector/tree/main/examples/demo
git clone https://github.com/open-telemetry/opentelemetry-collector.git
cd opentelemetry-collector/examples/demo/
docker-compose up -d
pipeline {
agent any
stages {
stage('Build') {
steps {
git 'https://github.com/jglick/simple-maven-project-with-tests.git'
sh "mvn -Dmaven.test.failure.ignore=true clean package"
}
post {
success {
echo "success"
}
}
}
}
}
@darinpope:
Thanks for the cool youtube video finally being a useful introduction to that open telemetry thingo.
However the link
https://github.com/open-telemetry/opentelemetry-collector/tree/main/examples/demoseems broken.Sadly it isn't a permanent link, and thus with changes there, no longer available.