How can I query custom tags in spans? I have tried .foo = “bar”, and that give a syntax error. I have tried span.foo = “bar”, and that returns nothing, though there are spans that match. I have tried span.tags[“foo”] = “bar”, but again returns nothing.
Here is part of a json version of a trace. How can I query IsCompleted, for example.
Thank you.
"scopeSpans": [
{
"scope": {
"name": "MCosmos"
},
"spans": [
{
"traceId": "r2TGkURCEh6FBAIK4d0aGw==",
"spanId": "S9nx8m9CRk0=",
"name": "WaitForUpdateTasks=12000049",
"kind": "SPAN_KIND_INTERNAL",
"startTimeUnixNano": "1694202508467015000",
"endTimeUnixNano": "1694202509205924000",
"attributes": [
{
"key": "IsCompleted",
"value": {
"boolValue": true
}
},
{
"key": "IsFaulted",
"value": {
"boolValue": false
}
}
],
"status": {}
},