Class CicdIncubatingAttributes.CicdPipelineResultIncubatingValues

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

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

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The pipeline run was cancelled, eg. by a user manually cancelling the pipeline run.
    static final String
    The pipeline run failed due to an error in the CICD system, eg. due to the worker being killed.
    static final String
    The pipeline run did not finish successfully, eg. due to a compile error or a failing test.
    static final String
    The pipeline run was skipped, eg. due to a precondition not being met.
    static final String
    The pipeline run finished successfully.
    static final String
    A timeout caused the pipeline 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 pipeline run finished successfully.
      See Also:
    • FAILURE

      public static final String FAILURE
      The pipeline 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 pipeline run.
      See Also:
    • ERROR

      public static final String ERROR
      The pipeline 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 pipeline run to be interrupted.
      See Also:
    • CANCELLATION

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

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