Skip to content

Commit

Permalink
fix: incorrectly labeled span list(String,Map) (#946)
Browse files Browse the repository at this point in the history
rename create(String,Map) -> list(String,Map)
  • Loading branch information
BenWhitehead committed Aug 11, 2021
1 parent 645b51d commit 0c1fdcf
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -27,7 +27,7 @@ class HttpStorageRpcSpans {
static final String SPAN_NAME_CREATE_OBJECT =
getTraceSpanName("create(StorageObject,InputStream,Map)");
static final String SPAN_NAME_LIST_BUCKETS = getTraceSpanName("list(Map)");
static final String SPAN_NAME_LIST_OBJECTS = getTraceSpanName("create(String,Map)");
static final String SPAN_NAME_LIST_OBJECTS = getTraceSpanName("list(String,Map)");
static final String SPAN_NAME_GET_BUCKET = getTraceSpanName("get(Bucket,Map)");
static final String SPAN_NAME_GET_OBJECT = getTraceSpanName("get(StorageObject,Map)");
static final String SPAN_NAME_PATCH_BUCKET = getTraceSpanName("patch(Bucket,Map)");
Expand Down

0 comments on commit 0c1fdcf

Please sign in to comment.