52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
package checker
|
|
|
|
import (
|
|
"time"
|
|
|
|
sdk "git.happydns.org/checker-sdk-go/checker"
|
|
)
|
|
|
|
// Version defaults to "built-in"; standalone and plugin builds override it via
|
|
// -ldflags "-X .../checker.Version=...".
|
|
var Version = "built-in"
|
|
|
|
// Definition returns the CheckerDefinition for the TLS checker.
|
|
func Definition() *sdk.CheckerDefinition {
|
|
return &sdk.CheckerDefinition{
|
|
ID: "tls",
|
|
Name: "TLS",
|
|
Version: Version,
|
|
Availability: sdk.CheckerAvailability{
|
|
ApplyToDomain: true,
|
|
},
|
|
ObservationKeys: []sdk.ObservationKey{ObservationKeyTLSProbes},
|
|
Options: sdk.CheckerOptionsDocumentation{
|
|
UserOpts: []sdk.CheckerOptionDocumentation{
|
|
{
|
|
Id: OptionProbeTimeoutMs,
|
|
Type: "number",
|
|
Label: "Per-endpoint probe timeout (ms)",
|
|
Description: "Maximum time allowed for dial + STARTTLS + TLS handshake on a single endpoint.",
|
|
Default: float64(DefaultProbeTimeoutMs),
|
|
},
|
|
},
|
|
RunOpts: []sdk.CheckerOptionDocumentation{
|
|
{
|
|
Id: OptionEndpoints,
|
|
Label: "Discovery entries",
|
|
Description: "Entries published by other checkers for this domain; this checker decodes the tls.endpoint.v1 contract and ignores the rest.",
|
|
AutoFill: sdk.AutoFillDiscoveryEntries,
|
|
Hide: true,
|
|
},
|
|
},
|
|
},
|
|
Rules: []sdk.CheckRule{
|
|
Rule(),
|
|
},
|
|
Interval: &sdk.CheckIntervalSpec{
|
|
Min: 6 * time.Hour,
|
|
Max: 7 * 24 * time.Hour,
|
|
Default: 24 * time.Hour,
|
|
},
|
|
}
|
|
}
|