mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-08 18:16:59 +00:00
232aef016c
This allows us in almost all places to use regions to further trace down long running tasks. Also removes an unused function.
26 lines
482 B
Go
26 lines
482 B
Go
package internal
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestTracing(t *testing.T) {
|
|
inCtx := context.Background()
|
|
|
|
task, ctx := StartTask(inCtx, "testing")
|
|
assert.NotNil(t, ctx)
|
|
assert.NotNil(t, task)
|
|
assert.NotEqual(t, inCtx, ctx)
|
|
task.SetTag("key", "value")
|
|
|
|
region, ctx2 := StartRegion(ctx, "testing")
|
|
assert.NotNil(t, ctx)
|
|
assert.NotNil(t, region)
|
|
assert.NotEqual(t, ctx, ctx2)
|
|
defer task.EndTask()
|
|
defer region.EndRegion()
|
|
}
|