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

Allow executing additional action in timeout step before wrapped steps will be cancelled

XMLWordPrintable

      It would be very useful to allow users to define additional steps which will be executed on timeout, but before the processes will be stopped. For example in our case we want to generate threaddump.log and dump.hprof files when the executed Java logic is frozen. It is possible to do it by using Time-out actions provided by Build Timeout plugin. Unfortunately, I cannot use it with Jenkins Declarative Pipelines.

      timeout(time: 30, onTimeout: {
          sh """#!/bin/bash
              echo "Performing thread dump"
              for pid in \$(ps auxwwe | grep APPLICATION_ID | grep -v grep | grep BUILD_ID=${env.BUILD_ID} | awk '{print \$2}'); do
                  echo "thread dump of \$pid"
                  jstack \$pid > threaddump_\$pid.log
              done
          """
      }) {
          sh "mvn verify"
      }
      

            Unassigned Unassigned
            agabrys Adam Gabryś
            Votes:
            2 Vote for this issue
            Watchers:
            2 Start watching this issue

              Created:
              Updated: