mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
0fc1130f47
…flags to perform the same as vmalert address https://github.com/VictoriaMetrics/VictoriaMetrics/issues/6735 --------- Signed-off-by: hagen1778 <roman@victoriametrics.com> Co-authored-by: hagen1778 <roman@victoriametrics.com>
70 lines
2.2 KiB
Go
70 lines
2.2 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"time"
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmalert-tool/unittest"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/buildinfo"
|
|
)
|
|
|
|
func main() {
|
|
start := time.Now()
|
|
app := &cli.App{
|
|
Name: "vmalert-tool",
|
|
Usage: "VMAlert command-line tool",
|
|
UsageText: "More info in https://docs.victoriametrics.com/vmalert-tool.html",
|
|
Version: buildinfo.Version,
|
|
Commands: []*cli.Command{
|
|
{
|
|
Name: "unittest",
|
|
Usage: "Run unittest for alerting and recording rules.",
|
|
UsageText: "More info in https://docs.victoriametrics.com/vmalert-tool.html#Unit-testing-for-rules",
|
|
Flags: []cli.Flag{
|
|
&cli.StringSliceFlag{
|
|
Name: "files",
|
|
Usage: `File path or http url with test files. Supports an array of values separated by comma or specified via multiple flags.
|
|
Supports hierarchical patterns and regexpes.
|
|
Examples:
|
|
-files="/path/to/file". Path to a single test file.
|
|
-files="http://<some-server-addr>/path/to/test.yaml". HTTP URL to a test file.
|
|
-files="dir/**/*.yaml". Includes all the .yaml files in "dir" subfolders recursively.
|
|
`,
|
|
Required: true,
|
|
},
|
|
&cli.BoolFlag{
|
|
Name: "disableAlertgroupLabel",
|
|
Usage: "disable adding group's Name as label to generated alerts and time series.",
|
|
Required: false,
|
|
},
|
|
&cli.StringSliceFlag{
|
|
Name: "external.label",
|
|
Usage: `Optional label in the form 'name=value' to add to all generated recording rules and alerts. Supports an array of values separated by comma or specified via multiple flags.`,
|
|
Required: false,
|
|
},
|
|
&cli.StringFlag{
|
|
Name: "external.url",
|
|
Usage: `Optional external URL to template in rule's labels or annotations.`,
|
|
Required: false,
|
|
},
|
|
},
|
|
Action: func(c *cli.Context) error {
|
|
if failed := unittest.UnitTest(c.StringSlice("files"), c.Bool("disableAlertgroupLabel"), c.StringSlice("external.label"), c.String("external.url")); failed {
|
|
return fmt.Errorf("unittest failed")
|
|
}
|
|
return nil
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
err := app.Run(os.Args)
|
|
if err != nil {
|
|
log.Fatalln(err)
|
|
}
|
|
log.Printf("Total time: %v", time.Since(start))
|
|
}
|