summaryrefslogtreecommitdiff
path: root/probe/tracer.go
diff options
context:
space:
mode:
Diffstat (limited to 'probe/tracer.go')
-rw-r--r--probe/tracer.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/probe/tracer.go b/probe/tracer.go
index bea1334..e59e1aa 100644
--- a/probe/tracer.go
+++ b/probe/tracer.go
@@ -33,7 +33,7 @@ type ProbeTracer struct {
stats *stats.TraceStats
trace *httptrace.ClientTrace
debug debug.DebugLevel
- probeid uint64
+ probeid uint
probeType ProbeType
}
@@ -41,7 +41,7 @@ func (p *ProbeTracer) String() string {
return fmt.Sprintf("(Probe %v): stats: %v\n", p.probeid, p.stats)
}
-func (p *ProbeTracer) ProbeId() uint64 {
+func (p *ProbeTracer) ProbeId() uint {
return p.probeid
}
@@ -293,7 +293,7 @@ func (probe *ProbeTracer) SetHttpResponseReadyTime(
func NewProbeTracer(
client *http.Client,
probeType ProbeType,
- probeId uint64,
+ probeId uint,
debugging *debug.DebugWithPrefix,
) *ProbeTracer {
probe := &ProbeTracer{