This repository was archived by the owner on May 17, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions.go
93 lines (78 loc) · 3.77 KB
/
options.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
Copyright 2018 The Kubernetes Authors All rights reserved.
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 main
import (
"flag"
"fmt"
"os"
"github.com/spf13/pflag"
)
type Options struct {
Apiserver string
Kubeconfig string
Help bool
Port int
Host string
TelemetryPort int
TelemetryHost string
Collectors collectorSet
Namespace string
//MetricBlacklist MetricSet
//MetricWhitelist MetricSet
Version bool
//DisablePodNonGenericResourceMetrics bool
//DisableNodeNonGenericResourceMetrics bool
EnableGZIPEncoding bool
flags *pflag.FlagSet
}
func NewOptions() *Options {
return &Options{
Collectors: collectorSet{},
//MetricWhitelist: MetricSet{},
//MetricBlacklist: MetricSet{},
}
}
func (o *Options) AddFlags() {
o.flags = pflag.NewFlagSet("", pflag.ExitOnError)
// add glog flags
o.flags.AddGoFlagSet(flag.CommandLine)
o.flags.Lookup("logtostderr").Value.Set("true")
o.flags.Lookup("logtostderr").DefValue = "true"
o.flags.Lookup("logtostderr").NoOptDefVal = "true"
o.flags.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage of %s:\n", os.Args[0])
o.flags.PrintDefaults()
}
o.flags.StringVar(&o.Apiserver, "apiserver", "", `The URL of the apiserver to use as a master`)
o.flags.StringVar(&o.Kubeconfig, "kubeconfig", "", "Absolute path to the kubeconfig file")
o.flags.BoolVarP(&o.Help, "help", "h", false, "Print Help text")
o.flags.IntVar(&o.Port, "port", 80, `Port to expose metrics on.`)
o.flags.StringVar(&o.Host, "host", "0.0.0.0", `Host to expose metrics on.`)
o.flags.IntVar(&o.TelemetryPort, "telemetry-port", 81, `Port to expose oapi-exporter self metrics on.`)
o.flags.StringVar(&o.TelemetryHost, "telemetry-host", "0.0.0.0", `Host to expose oapi-exporter self metrics on.`)
o.flags.Var(&o.Collectors, "collectors", fmt.Sprintf("Comma-separated list of collectors to be enabled. Defaults to %q", &defaultCollectors))
o.flags.StringVar(&o.Namespace, "namespace", "", fmt.Sprintf("Nnamespaces to be enabled. Defaults to all" ))
//o.flags.Var(&o.MetricWhitelist, "metric-whitelist", "Comma-separated list of metrics to be exposed. The whitelist and blacklist are mutually exclusive.")
//o.flags.Var(&o.MetricBlacklist, "metric-blacklist", "Comma-separated list of metrics not to be enabled. The whitelist and blacklist are mutually exclusive.")
o.flags.BoolVarP(&o.Version, "version", "", false, "oapi-exporter build version information")
//o.flags.BoolVarP(&o.DisablePodNonGenericResourceMetrics, "disable-pod-non-generic-resource-metrics", "", false, "Disable pod non generic resource request and limit metrics")
//o.flags.BoolVarP(&o.DisableNodeNonGenericResourceMetrics, "disable-node-non-generic-resource-metrics", "", false, "Disable node non generic resource request and limit metrics")
//o.flags.BoolVar(&o.EnableGZIPEncoding, "enable-gzip-encoding", false, "Gzip responses when requested by clients via 'Accept-Encoding: gzip' header.")
}
func (o *Options) Parse() error {
err := o.flags.Parse(os.Args)
return err
}
func (o *Options) Usage() {
o.flags.Usage()
}