From 6868642c96ef2ed40af840144b9cc7f046e2a02f Mon Sep 17 00:00:00 2001 From: Aaron Jacobs Date: Fri, 1 May 2015 12:21:22 +1000 Subject: [PATCH] Expanded description of PID spans. --- fuseops/common_op.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fuseops/common_op.go b/fuseops/common_op.go index 9ae47a1..faeddf4 100644 --- a/fuseops/common_op.go +++ b/fuseops/common_op.go @@ -140,7 +140,7 @@ func (o *commonOp) maybeTraceByPID( // Set up a new one and stick it in the map. var report reqtrace.ReportFunc - out, report = reqtrace.Trace(in, fmt.Sprintf("PID %v", pid)) + out, report = reqtrace.Trace(in, fmt.Sprintf("Requests from PID %v", pid)) gPIDMap[pid] = out // Ensure we close the trace and remove it from the map eventually.