2023-10-13 11:54:33 +00:00
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 {
2024-06-18 12:14:30 +00:00
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 .
` ,
2023-10-13 11:54:33 +00:00
Required : true ,
} ,
& cli . BoolFlag {
Name : "disableAlertgroupLabel" ,
Usage : "disable adding group's Name as label to generated alerts and time series." ,
Required : false ,
} ,
2024-08-19 19:29:28 +00:00
& 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 ,
} ,
2023-10-13 11:54:33 +00:00
} ,
Action : func ( c * cli . Context ) error {
2024-08-19 19:29:28 +00:00
if failed := unittest . UnitTest ( c . StringSlice ( "files" ) , c . Bool ( "disableAlertgroupLabel" ) , c . StringSlice ( "external.label" ) , c . String ( "external.url" ) ) ; failed {
2023-10-13 11:54:33 +00:00
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 ) )
}