-
Notifications
You must be signed in to change notification settings - Fork 32
/
commands.go
42 lines (40 loc) · 1 KB
/
commands.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
package main
import (
"github.com/mackerelio/mkr/alerts"
"github.com/mackerelio/mkr/annotations"
"github.com/mackerelio/mkr/aws_integrations"
"github.com/mackerelio/mkr/channels"
"github.com/mackerelio/mkr/checks"
"github.com/mackerelio/mkr/dashboards"
"github.com/mackerelio/mkr/hosts"
"github.com/mackerelio/mkr/metrics"
"github.com/mackerelio/mkr/monitors"
"github.com/mackerelio/mkr/org"
"github.com/mackerelio/mkr/plugin"
"github.com/mackerelio/mkr/services"
"github.com/mackerelio/mkr/status"
"github.com/mackerelio/mkr/wrap"
"github.com/urfave/cli"
)
// Commands cli.Command object list
var Commands = []cli.Command{
status.Command,
hosts.CommandHosts,
hosts.CommandCreate,
hosts.CommandUpdate,
metrics.CommandThrow,
metrics.Command,
metrics.CommandFetch,
hosts.CommandRetire,
services.Command,
monitors.Command,
channels.Command,
alerts.Command,
dashboards.Command,
annotations.Command,
org.Command,
plugin.CommandPlugin,
checks.Command,
wrap.Command,
aws_integrations.Command,
}