Class CicdIncubatingAttributes.CicdPipelineTaskRunResultIncubatingValues

java.lang.Object
io.opentelemetry.semconv.incubating.CicdIncubatingAttributes.CicdPipelineTaskRunResultIncubatingValues
Enclosing class:
CicdIncubatingAttributes

public static final class CicdIncubatingAttributes.CicdPipelineTaskRunResultIncubatingValues extends Object
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The task run was cancelled, eg. by a user manually cancelling the task run.
    static final String
    The task run failed due to an error in the CICD system, eg. due to the worker being killed.
    static final String
    The task run did not finish successfully, eg. due to a compile error or a failing test.
    static final String
    The task run was skipped, eg. due to a precondition not being met.
    static final String
    The task run finished successfully.
    static final String
    A timeout caused the task run to be interrupted.
  • Method Summary

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • SUCCESS

      public static final String SUCCESS
      The task run finished successfully.
      See Also:
    • FAILURE

      public static final String FAILURE
      The task run did not finish successfully, eg. due to a compile error or a failing test. Such failures are usually detected by non-zero exit codes of the tools executed in the task run.
      See Also:
    • ERROR

      public static final String ERROR
      The task run failed due to an error in the CICD system, eg. due to the worker being killed.
      See Also:
    • TIMEOUT

      public static final String TIMEOUT
      A timeout caused the task run to be interrupted.
      See Also:
    • CANCELLATION

      public static final String CANCELLATION
      The task run was cancelled, eg. by a user manually cancelling the task run.
      See Also:
    • SKIP

      public static final String SKIP
      The task run was skipped, eg. due to a precondition not being met.
      See Also: