-
Notifications
You must be signed in to change notification settings - Fork 5
/
run_logs.go
109 lines (102 loc) · 2.52 KB
/
run_logs.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
// Copyright 2019 github.com/ucirello
//
// 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 (
"encoding/json"
"fmt"
"log"
"net/url"
"os"
"os/signal"
"time"
"cirello.io/runner/runner"
"github.com/gorilla/websocket"
cli "gopkg.in/urfave/cli.v1"
)
func logs() cli.Command {
return cli.Command{
Name: "logs",
Flags: []cli.Flag{
cli.StringFlag{
Name: "filter",
Usage: "service name to filter message",
},
},
Action: func(c *cli.Context) error {
interrupt := make(chan os.Signal, 1)
signal.Notify(interrupt, os.Interrupt)
u := url.URL{Scheme: "ws", Host: c.GlobalString("service-discovery"), Path: "/logs"}
if filter := c.String("filter"); filter != "" {
query := u.Query()
query.Set("filter", filter)
u.RawQuery = query.Encode()
}
log.Printf("connecting to %s", u.String())
follow := func() error {
ws, _, err := websocket.DefaultDialer.Dial(u.String(), nil)
if err != nil {
return fmt.Errorf("cannot dial to service discovery endpoint: %v s", err)
}
defer ws.Close()
done := make(chan struct{})
go func() {
defer close(done)
for {
_, message, err := ws.ReadMessage()
if err != nil {
log.Println("read:", err)
return
}
var msg runner.LogMessage
if err := json.Unmarshal(message, &msg); err != nil {
log.Println("decode:", err)
continue
}
fmt.Println(msg.PaddedName+":", msg.Line)
}
}()
for {
select {
case <-done:
return nil
case <-interrupt:
log.Println("interrupt")
err := ws.WriteMessage(
websocket.CloseMessage,
websocket.FormatCloseMessage(websocket.CloseNormalClosure, ""),
)
if err != nil {
log.Println("write close:", err)
return nil
}
select {
case <-done:
case <-time.After(time.Second):
}
return nil
}
}
}
var err error
for {
select {
case <-interrupt:
return err
default:
err = follow()
}
}
},
}
}