Logs
Patchsets
Range Diff ↕ rd-73
1: 7ec3569 = 1: 7ec3569 feat(auth): subscribe to pico's metric-drain pipe
2: 8a197f0 = 2: 8a197f0 chore: update pubsub
3: d4bda15 = 3: d4bda15 refactor: use pipe for analytics
-: ------- > 4: 2b7c358 chore: prep for release
Patchset ps-66
feat(auth): subscribe to pico's metric-drain pipe
Eric Bower
auth/api.go
+33
-1
db/db.go
+10
-10
pico/cli.go
+2
-7
shared/config.go
+2
-7
shared/pubsub.go
+16
-0
tui/logs/logs.go
+3
-8
refactor: use pipe for analytics
Eric Bower
shared/analytics.go
+13
-3
feat(auth): subscribe to pico's metric-drain pipe
We have a lot of services that need to record site usage analytics so we need a distributed way to receive these events. This overloads the auth service since it's now serving as a destination for our metric-drain.
auth/api.go
link
+33
-1
+33
-1
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 |
|
db/db.go
link
+10
-10
+10
-10
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 |
|
pico/cli.go
link
+2
-7
+2
-7
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
tui/logs/logs.go
link
+3
-8
+3
-8
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 |
|
chore: update pubsub
go.mod
link
+2
-2
+2
-2
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 |
|
go.sum
link
+2
-2
+2
-2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|