com.personio.synthetics.model.config.MonitorPriority.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datadog-synthetic-test-support Show documentation
Show all versions of datadog-synthetic-test-support Show documentation
Kotlin library for managing Datadog Synthetic test as code
package com.personio.synthetics.model.config
enum class MonitorPriority(val priorityValue: Int) {
P1_CRITICAL(1),
P2_HIGH(2),
P3_MEDIUM(3),
P4_LOW(4),
P5_INFO(5),
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy