@@ -31,8 +31,9 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
31
31
}
32
32
m := message .FromTMI (msg )
33
33
log := slog .With (slog .String ("trace" , m .ID ), slog .String ("in" , ch .Name ))
34
- from := m .Sender
35
- if ch .Ignore [from ] {
34
+ log .InfoContext (ctx , "privmsg" , slog .Duration ("bias" , time .Since (m .Time ())))
35
+ defer log .InfoContext (ctx , "end" )
36
+ if ch .Ignore [m .Sender ] {
36
37
log .InfoContext (ctx , "message from ignored user" )
37
38
return
38
39
}
@@ -41,7 +42,7 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
41
42
return
42
43
}
43
44
if cmd , ok := parseCommand (robo .tmi .name , m .Text ); ok {
44
- robo .command (ctx , log , ch , m , from , cmd )
45
+ robo .command (ctx , log , ch , m , m . Sender , cmd )
45
46
return
46
47
}
47
48
ch .History .Add (m .Time (), m )
@@ -55,7 +56,7 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
55
56
m .Text = t
56
57
}
57
58
robo .learn (ctx , log , ch , robo .hashes (), m )
58
- switch err := ch .Memery .Check (m .Time (), from , m .Text ); err {
59
+ switch err := ch .Memery .Check (m .Time (), m . Sender , m .Text ); err {
59
60
case channel .ErrNotCopypasta : // do nothing
60
61
case nil :
61
62
// Meme detected. Copypasta.
@@ -99,11 +100,11 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
99
100
s , trace , err := brain .Speak (ctx , robo .brain , ch .Send , "" )
100
101
cost := time .Since (start )
101
102
if err != nil {
102
- log .ErrorContext (ctx , "wanted to speak but failed" , slog .Any ("err" , err ))
103
+ log .ErrorContext (ctx , "wanted to speak but failed" , slog .Any ("err" , err ), slog . Duration ( "cost" , cost ) )
103
104
return
104
105
}
105
106
if s == "" {
106
- log .InfoContext (ctx , "spoke nothing" , slog .String ("tag" , ch .Send ))
107
+ log .InfoContext (ctx , "spoke nothing" , slog .String ("tag" , ch .Send ), slog . Duration ( "cost" , cost ) )
107
108
return
108
109
}
109
110
x := rand .Uint64 ()
@@ -113,6 +114,7 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
113
114
slog .String ("text" , s ),
114
115
slog .String ("emote" , e ),
115
116
slog .String ("effect" , f ),
117
+ slog .Duration ("cost" , cost ),
116
118
)
117
119
se := strings .TrimSpace (s + " " + e )
118
120
sef := command .Effect (log , f , se )
@@ -121,7 +123,7 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
121
123
return
122
124
}
123
125
if ch .Block .MatchString (se ) || ch .Block .MatchString (sef ) {
124
- log .WarnContext (ctx , "wanted to send blocked message" , slog .String ("text" , sef ))
126
+ log .WarnContext (ctx , "wanted to send blocked message" , slog .String ("text" , sef ), slog . Any ( "ids" , trace ) )
125
127
return
126
128
}
127
129
// Now that we've done all the work, which might take substantial time,
@@ -213,7 +215,6 @@ func (robo *Robot) learn(ctx context.Context, log *slog.Logger, ch *channel.Chan
213
215
return
214
216
}
215
217
user := hasher .Hash (msg .Sender , msg .To , msg .Time ())
216
- start := time .Now ()
217
218
m := brain.Message {
218
219
ID : msg .ID ,
219
220
To : msg .To ,
@@ -224,12 +225,16 @@ func (robo *Robot) learn(ctx context.Context, log *slog.Logger, ch *channel.Chan
224
225
IsModerator : msg .IsModerator ,
225
226
IsElevated : msg .IsElevated ,
226
227
}
227
- if err := brain .Learn (ctx , robo .brain , ch .Learn , & m ); err != nil {
228
+ start := time .Now ()
229
+ err := brain .Learn (ctx , robo .brain , ch .Learn , & m )
230
+ cost := time .Since (start )
231
+ if err != nil {
228
232
log .ErrorContext (ctx , "failed to learn" , slog .Any ("err" , err ))
229
233
return
230
234
}
231
- robo .Metrics .LearnLatency .Observe (time . Since ( start ) .Seconds (), ch .Learn )
235
+ robo .Metrics .LearnLatency .Observe (cost .Seconds (), ch .Learn )
232
236
robo .Metrics .LearnedCount .Observe (1 )
237
+ log .InfoContext (ctx , "learned" , slog .Duration ("cost" , cost ))
233
238
}
234
239
235
240
// sendTMI sends a message to TMI after waiting for the global rate limit.
0 commit comments