Skipped tests that are not problematic should be UNKNOWN rather than INFO; the affected rules cannot evaluate without their input, so they are non-evaluations, not findings.
15 lines
276 B
Go
15 lines
276 B
Go
package checker
|
|
|
|
import (
|
|
sdk "git.happydns.org/checker-sdk-go/checker"
|
|
)
|
|
|
|
func Provider() sdk.ObservationProvider {
|
|
return &autoconfigProvider{}
|
|
}
|
|
|
|
type autoconfigProvider struct{}
|
|
|
|
func (p *autoconfigProvider) Key() sdk.ObservationKey {
|
|
return ObservationKeyAutoconfig
|
|
}
|