emit start event to trace with the limiter

This commit is contained in:
vyzo 2022-01-15 18:35:43 +02:00
parent 8a60c5d336
commit f51ceca509

View File

@ -174,6 +174,11 @@ func (t *trace) Start(limits Limiter) error {
go t.background(out)
t.push(traceEvt{
Type: traceStartEvt,
Limit: limits,
})
return nil
}