Skip to content

Commit 629f995

Browse files
Rename Table.Call span to table name instead (#126)
1 parent 8293fdf commit 629f995

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/table/table.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ func (t *Plugin) Routes() osquery.ExtensionPluginResponse {
5454
}
5555

5656
func (t *Plugin) Call(ctx context.Context, request osquery.ExtensionPluginRequest) osquery.ExtensionResponse {
57-
ctx, span := traces.StartSpan(ctx, "Table.Call", "action", request["action"], "table_name", t.name)
57+
ctx, span := traces.StartSpan(ctx, t.name, "action", request["action"], "table_name", t.name)
5858
defer span.End()
5959

6060
ok := osquery.ExtensionStatus{Code: 0, Message: "OK"}

0 commit comments

Comments
 (0)