forked from intelsdi-x/snap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
flags.go
74 lines (61 loc) · 2.34 KB
/
flags.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
http://www.apache.org/licenses/LICENSE-2.0.txt
Copyright 2015 Intel Corporation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package control
import (
"fmt"
"github.com/codegangsta/cli"
)
var (
flNumberOfPLs = cli.StringFlag{
Name: "max-running-plugins, m",
Usage: fmt.Sprintf("The maximum number of instances of a loaded plugin to run (default: %v)", defaultMaxRunningPlugins),
EnvVar: "SNAP_MAX_PLUGINS",
}
flPluginLoadTimeout = cli.StringFlag{
Name: "plugin-load-timeout",
Usage: fmt.Sprintf("The maximum number seconds a plugin can take to load (default: %v)", defaultPluginLoadTimeout),
EnvVar: "SNAP_PLUGIN_LOAD_TIMEOUT",
}
flPluginTrust = cli.StringFlag{
Name: "plugin-trust, t",
Usage: fmt.Sprintf("0-2 (Disabled, Enabled, Warning; default: %v)", defaultPluginTrust),
EnvVar: "SNAP_TRUST_LEVEL",
}
flAutoDiscover = cli.StringFlag{
Name: "auto-discover, a",
Usage: "Auto discover paths separated by colons.",
EnvVar: "SNAP_AUTODISCOVER_PATH",
}
flKeyringPaths = cli.StringFlag{
Name: "keyring-paths, k",
Usage: "Keyring paths for signing verification separated by colons",
EnvVar: "SNAP_KEYRING_PATHS",
}
flCache = cli.StringFlag{
Name: "cache-expiration",
Usage: fmt.Sprintf("The time limit for which a metric cache entry is valid (default: %v)", defaultCacheExpiration),
EnvVar: "SNAP_CACHE_EXPIRATION",
}
flControlRpcPort = cli.StringFlag{
Name: "control-listen-port",
Usage: fmt.Sprintf("Listen port for control RPC server (default: %v)", defaultListenPort),
EnvVar: "SNAP_CONTROL_LISTEN_PORT",
}
flControlRpcAddr = cli.StringFlag{
Name: "control-listen-addr",
Usage: "Listen address for control RPC server",
EnvVar: "SNAP_CONTROL_LISTEN_ADDR",
}
Flags = []cli.Flag{flNumberOfPLs, flPluginLoadTimeout, flAutoDiscover, flPluginTrust, flKeyringPaths, flCache, flControlRpcPort, flControlRpcAddr}
)