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.