Logs
Patchsets
Range Diff ↕ rd-70
1: 4bd8050 = 1: 4bd8050 feat: metric drain
-: ------- > 2: ea49338 chore: add userId to metric drain visit
Range Diff ↕ rd-71
1: 4bd8050 = 1: 4bd8050 feat: metric drain
2: ea49338 = 2: ea49338 chore: add userId to metric drain visit
-: ------- > 3: 343f29e chore: update pubsub
Patchset ps-71
feat: metric drain
Eric Bower
Makefile
+4
-0
cmd/sish.go
+7
-2
go.mod
+2
-0
httpmuxer/httpmuxer.go
+28
-0
sshmuxer/sshmuxer.go
+13
-0
utils/conn.go
+10
-0
utils/state.go
+1
-0
utils/utils.go
+6
-0
chore: add userId to metric drain visit
Eric Bower
httpmuxer/httpmuxer.go
+24
-19
feat: metric drain
This change will enable http remote forwards to have site analytics enabled automatically.
Makefile
link
+4
-0
+4
-0
cmd/sish.go
link
+7
-2
+7
-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 28 29 30 31 32 33 34 35 36 |
|
go.mod
link
+2
-0
+2
-0
1 2 3 4 5 6 7 8 9 10 11 12 13 |
|
httpmuxer/httpmuxer.go
link
+28
-0
+28
-0
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 |
|
sshmuxer/sshmuxer.go
link
+13
-0
+13
-0
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 |
|
utils/conn.go
link
+10
-0
+10
-0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
|
utils/state.go
link
+1
-0
+1
-0
1 2 3 4 5 6 7 8 9 10 11 12 |
|
utils/utils.go
link
+6
-0
+6
-0
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
|
chore: add userId to metric drain visit
chore: add user scope to http request log line
httpmuxer/httpmuxer.go
link
+24
-19
+24
-19
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 |
|
chore: update pubsub
go.mod
link
+1
-3
+1
-3
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
|
go.sum
link
+2
-2
+2
-2
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
|