-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
135 lines (119 loc) · 3.46 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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
package main
import (
"os"
"code.cloudfoundry.org/cli/cf/terminal"
"code.cloudfoundry.org/cli/cf/trace"
"code.cloudfoundry.org/cli/plugin"
"github.com/cloudfoundry-community/firehose-plugin/firehose"
"github.com/simonleung8/flags"
)
type NozzlerCmd struct {
ui terminal.UI
}
func (c *NozzlerCmd) GetMetadata() plugin.PluginMetadata {
return plugin.PluginMetadata{
Name: "FirehosePlugin",
Version: plugin.VersionType{
Major: 0,
Minor: 13,
Build: 0,
},
MinCliVersion: plugin.VersionType{
Major: 6,
Minor: 17,
Build: 0,
},
Commands: []plugin.Command{
{
Name: "nozzle",
HelpText: "Displays messages from the firehose",
UsageDetails: plugin.Usage{
Usage: "cf nozzle",
Options: map[string]string{
"debug": "-d, enable debugging",
"no-filter": "-n, no firehose filter. Display all messages",
"filter": "-f, specify message filter such as LogMessage, ValueMetric, CounterEvent, HttpStartStop",
"subscription-id": "-s, specify subscription id for distributing firehose output between clients",
},
},
},
{
Name: "app-nozzle",
HelpText: "Displays messages from the firehose for a given app",
UsageDetails: plugin.Usage{
Usage: "cf app-nozzle APP_NAME",
Options: map[string]string{
"debug": "-d, enable debugging",
"no-filter": "-n, no filter. Display all messages",
"filter": "-f, specify message filter such as LogMessage, ValueMetric, CounterEvent, HttpStartStop",
},
},
},
},
}
}
func main() {
plugin.Start(new(NozzlerCmd))
}
func (c *NozzlerCmd) Run(cliConnection plugin.CliConnection, args []string) {
var options *firehose.ClientOptions
traceLogger := trace.NewLogger(os.Stdout, true, os.Getenv("CF_TRACE"), "")
c.ui = terminal.NewUI(os.Stdin, os.Stdout, terminal.NewTeePrinter(os.Stdout), traceLogger)
switch args[0] {
case "nozzle":
options = c.buildClientOptions(args)
case "app-nozzle":
options = c.buildClientOptions(args)
appModel, err := cliConnection.GetApp(args[1])
if err != nil {
c.ui.Warn(err.Error())
return
}
options.AppGUID = appModel.Guid
default:
return
}
dopplerEndpoint, err := cliConnection.DopplerEndpoint()
if err != nil {
c.ui.Failed(err.Error())
}
authToken, err := cliConnection.AccessToken()
if err != nil {
c.ui.Failed(err.Error())
}
client := firehose.NewClient(authToken, dopplerEndpoint, options, c.ui)
client.Start()
}
func (c *NozzlerCmd) buildClientOptions(args []string) *firehose.ClientOptions {
var debug bool
var noFilter bool
var filter string
var subscriptionId string
fc := flags.New()
fc.NewBoolFlag("debug", "d", "used for debugging")
fc.NewBoolFlag("no-filter", "n", "no firehose filter. Display all messages")
fc.NewStringFlag("filter", "f", "specify message filter such as LogMessage, ValueMetric, CounterEvent, HttpStartStop")
fc.NewStringFlag("subscription-id", "s", "specify subscription id for distributing firehose output between clients")
err := fc.Parse(args[1:]...)
if err != nil {
c.ui.Failed(err.Error())
}
if fc.IsSet("debug") {
debug = fc.Bool("debug")
}
if fc.IsSet("no-filter") {
noFilter = fc.Bool("no-filter")
}
if fc.IsSet("filter") {
filter = fc.String("filter")
}
if fc.IsSet("subscription-id") {
subscriptionId = fc.String("subscription-id")
}
return &firehose.ClientOptions{
Debug: debug,
NoFilter: noFilter,
Filter: filter,
SubscriptionID: subscriptionId,
}
}