24 lines
379 B
CUE
24 lines
379 B
CUE
package options
|
|
|
|
import (
|
|
"github.com/cortezaproject/corteza-server/codegen/schema"
|
|
)
|
|
|
|
monitor: schema.#optionsGroup & {
|
|
handle: "monitor"
|
|
|
|
imports: [
|
|
"\"time\"",
|
|
]
|
|
|
|
options: {
|
|
interval: {
|
|
type: "time.Duration"
|
|
defaultGoExpr: "5 * time.Minute"
|
|
defaultValue: "5m"
|
|
description: "Output (log) interval for monitoring."
|
|
}
|
|
}
|
|
title: "Monitoring"
|
|
}
|