Uploaded image for project: 'Jenkins'
  1. Jenkins
  2. JENKINS-38455

Add correctly computed node labels

XMLWordPrintable

      With the newer pipeline stage view plugin versions (1.7 & 2.0) the small labels which used to display on which agent a stage was executed are gone.
      This information used to be very useful for us. Hope it was not removed by purpose.

      Please check the attached screen shots for an example. Unfortunately I had to remove the slave name in the picture for stage view V1.4

      Pipeline itself is rather simple:

      stage('first') {
          node('test') {
              stage('node') {
                  println 'test'
              }
          }
      }
      

      or:

      stage('first')
      node('test') {
          stage('node')
          println 'test'
      }
      

            svanoort Sam Van Oort
            macdrega Joerg Schwaerzler
            Votes:
            1 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: