-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmain.go
107 lines (85 loc) · 2.7 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
// Copyright 2019 The NATS Authors
// 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"
"log"
"sync"
"github.com/nats-io/nats.go"
"github.com/nats-io/not.go"
"github.com/opentracing/opentracing-go"
"github.com/opentracing/opentracing-go/ext"
)
func usage() {
log.Fatalf("Usage: subscribe [-s server] [-creds file] [-t] [-n msgs] <subject>")
}
func printMsg(m *nats.Msg, i int) {
log.Printf("[#%d] Received on [%s]: '%s'", i, m.Subject, string(m.Data))
}
func main() {
var urls = flag.String("s", nats.DefaultURL, "The nats server URLs (separated by comma)")
var userCreds = flag.String("creds", "", "User Credentials File")
var showTime = flag.Bool("t", false, "Display timestamps")
var numMsgs = flag.Int("n", 1, "Exit after N msgs received.")
log.SetFlags(0)
flag.Usage = usage
flag.Parse()
args := flag.Args()
if len(args) != 1 {
usage()
}
tracer, closer := not.InitTracing("NATS Subscriber")
opentracing.SetGlobalTracer(tracer)
defer closer.Close()
// Connect Options.
opts := []nats.Option{nats.Name("NATS Sample Tracing Subscriber")}
opts = not.SetupConnOptions(tracer, opts)
// Use UserCredentials.
if *userCreds != "" {
opts = append(opts, nats.UserCredentials(*userCreds))
}
// Connect to NATS.
nc, err := nats.Connect(*urls, opts...)
if err != nil {
log.Fatal(err)
}
// Process N messages then exit.
wg := sync.WaitGroup{}
wg.Add(*numMsgs)
subj := args[0]
nc.Subscribe(subj, func(msg *nats.Msg) {
defer wg.Done()
// Create new TraceMsg from normal NATS message.
t := not.NewTraceMsg(msg)
// Extract the span context.
sc, err := tracer.Extract(opentracing.Binary, t)
if err != nil {
log.Printf("Extract error: %v", err)
}
// Setup a span referring to the span context of the incoming NATS message.
span := tracer.StartSpan("Received Message", ext.SpanKindConsumer, opentracing.FollowsFrom(sc))
ext.MessageBusDestination.Set(span, msg.Subject)
defer span.Finish()
// The rest of t<TraceMsg> that has not been read is the payload.
fmt.Printf("Received msg: %q\n", t)
})
if err := nc.LastError(); err != nil {
log.Fatal(err)
}
log.Printf("Listening on [%s]", subj)
if *showTime {
log.SetFlags(log.LstdFlags)
}
wg.Wait()
}