Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save darinpope/e762417311aa0621697a98fa795991f9 to your computer and use it in GitHub Desktop.
Save darinpope/e762417311aa0621697a98fa795991f9 to your computer and use it in GitHub Desktop.

Gist to support https://youtu.be/3XzVOxvNpGM

Documentation

Jenkinsfile

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"
        }
      }
    }
  }
}
@luckydonald
Copy link

luckydonald commented Dec 8, 2021

@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/demo seems broken.
Sadly it isn't a permanent link, and thus with changes there, no longer available.

@luckydonald
Copy link

luckydonald commented Dec 8, 2021

It was moved to the contrib git, over at open-telemetry/opentelemetry-collector-contrib (permanent link)

For reference, the last proper version in the main repo was at commit 9fd1f5, but were later removed/relocated because of open-telemetry/opentelemetry-collector#3888 and open-telemetry/opentelemetry-collector#3889.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment