Skip to content

Commit 0cf77ac

Browse files
committed
robot: adjust logging again
In particular, record the start and end of processing each PRIVMSG, and log time cost of speaking and learning.
1 parent ab8a407 commit 0cf77ac

File tree

1 file changed

+15
-10
lines changed

1 file changed

+15
-10
lines changed

privmsg.go

+15-10
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,9 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
3131
}
3232
m := message.FromTMI(msg)
3333
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] {
3637
log.InfoContext(ctx, "message from ignored user")
3738
return
3839
}
@@ -41,7 +42,7 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
4142
return
4243
}
4344
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)
4546
return
4647
}
4748
ch.History.Add(m.Time(), m)
@@ -55,7 +56,7 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
5556
m.Text = t
5657
}
5758
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 {
5960
case channel.ErrNotCopypasta: // do nothing
6061
case nil:
6162
// Meme detected. Copypasta.
@@ -99,11 +100,11 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
99100
s, trace, err := brain.Speak(ctx, robo.brain, ch.Send, "")
100101
cost := time.Since(start)
101102
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))
103104
return
104105
}
105106
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))
107108
return
108109
}
109110
x := rand.Uint64()
@@ -113,6 +114,7 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
113114
slog.String("text", s),
114115
slog.String("emote", e),
115116
slog.String("effect", f),
117+
slog.Duration("cost", cost),
116118
)
117119
se := strings.TrimSpace(s + " " + e)
118120
sef := command.Effect(log, f, se)
@@ -121,7 +123,7 @@ func (robo *Robot) tmiMessage(ctx context.Context, send chan<- *tmi.Message, msg
121123
return
122124
}
123125
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))
125127
return
126128
}
127129
// 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
213215
return
214216
}
215217
user := hasher.Hash(msg.Sender, msg.To, msg.Time())
216-
start := time.Now()
217218
m := brain.Message{
218219
ID: msg.ID,
219220
To: msg.To,
@@ -224,12 +225,16 @@ func (robo *Robot) learn(ctx context.Context, log *slog.Logger, ch *channel.Chan
224225
IsModerator: msg.IsModerator,
225226
IsElevated: msg.IsElevated,
226227
}
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 {
228232
log.ErrorContext(ctx, "failed to learn", slog.Any("err", err))
229233
return
230234
}
231-
robo.Metrics.LearnLatency.Observe(time.Since(start).Seconds(), ch.Learn)
235+
robo.Metrics.LearnLatency.Observe(cost.Seconds(), ch.Learn)
232236
robo.Metrics.LearnedCount.Observe(1)
237+
log.InfoContext(ctx, "learned", slog.Duration("cost", cost))
233238
}
234239

235240
// sendTMI sends a message to TMI after waiting for the global rate limit.

0 commit comments

Comments
 (0)