mirror of
https://github.com/Icinga/icingadb.git
synced 2026-05-28 04:35:54 -04:00
Icinga 2 sets now the `state_type` field to either `hard` or `soft`, thus the mappings within the Icinga DB code is no longer needed.
6 lines
176 B
Go
6 lines
176 B
Go
package common
|
|
|
|
const (
|
|
SoftState = "soft" // SoftState represents an Icinga 2 soft state change.
|
|
HardState = "hard" // HardState represents an Icinga 2 hard state change.
|
|
)
|