-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
54 lines (50 loc) · 1.01 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
package main
import (
"os"
"github.com/urfave/cli/v2"
"golang.org/x/exp/slog"
)
func main() {
app := &cli.App{
Name: "PG sniffer",
Usage: "Capture PostgreSQL SQL-query",
Flags: []cli.Flag{
&cli.StringFlag{
Name: "device",
Value: "lo",
Usage: "network device for capturing",
},
&cli.IntFlag{
Name: "port",
Value: 5432,
Usage: "PostgreSQL port",
},
&cli.BoolFlag{
Name: "highlight",
Value: false,
Usage: "highlight SQL syntax",
},
},
Commands: []*cli.Command{
{
Name: "list",
Aliases: []string{"l"},
Usage: "network device list",
Action: func(*cli.Context) error {
return deviceList()
},
},
{
Name: "capture",
Aliases: []string{"c"},
Usage: "capture SQL-queries",
Action: func(ctx *cli.Context) error {
return capture(ctx.String("device"), ctx.Int("port"), ctx.Bool("highlight"))
},
},
},
}
if err := app.Run(os.Args); err != nil {
slog.Error("failed timeout execute", err)
}
}