Skip to content

Commit

Permalink
refactor: add space cols to qs config (#46)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaron-steinfeld authored Dec 18, 2020
1 parent 388eb22 commit 6a44a93
Showing 1 changed file with 15 additions and 6 deletions.
21 changes: 15 additions & 6 deletions query-service/src/main/resources/configs/common/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ service.config = {
"TRACE.services": "services",
"TRACE.duration": "duration_millis",
"TRACE.numServices": "num_services",
"TRACE.numSpans": "num_spans"
"TRACE.numSpans": "num_spans",
"TRACE.spaceIds": "space_ids"
}
}
}
Expand Down Expand Up @@ -72,7 +73,8 @@ service.config = {
"EVENT.displayEntityName": "display_entity_name",
"EVENT.displaySpanName": "display_span_name",
"EVENT.errorCount": "error_count",
"EVENT.exceptionCount": "exception_count"
"EVENT.exceptionCount": "exception_count",
"EVENT.spaceIds": "space_ids"
}
}
}
Expand All @@ -98,7 +100,8 @@ service.config = {
"SERVICE.errorCount": "error_count",
"SERVICE.exceptionCount": "exception_count",
"SERVICE.numCalls": "num_calls",
"API.isExternal" : "api_is_external"
"API.isExternal" : "api_is_external",
"EVENT.spaceIds": "space_ids"
}
}
}
Expand Down Expand Up @@ -147,7 +150,8 @@ service.config = {
"API_TRACE.apiDiscoveryState" : "api_discovery_state",
"API_TRACE.userIdentifier" : "user_identifier",
"API_TRACE.userRole" : "user_role",
"API_TRACE.userScore" : "user_score"
"API_TRACE.userScore" : "user_score",
"API_TRACE.spaceIds": "space_ids"
}
}
}
Expand Down Expand Up @@ -180,6 +184,7 @@ service.config = {
"BACKEND_TRACE.status" : "status",
"BACKEND_TRACE.statusMessage" : "status_message",
"BACKEND_TRACE.tags" : "tags",
"BACKEND_TRACE.spaceIds": "space_ids"
}
}
}
Expand All @@ -204,6 +209,8 @@ service.config = {
"INTERACTION.numCalls": "num_calls",
"INTERACTION.duration": "duration_millis",
"INTERACTION.errorCount": "error_count",
"INTERACTION.fromSpaceIds": "caller_space_ids",
"INTERACTION.toSpaceIds": "callee_space_ids"
}
}
}
Expand All @@ -229,7 +236,8 @@ service.config = {
"BACKEND.type": "backend_protocol",
"BACKEND.numCalls" : "num_calls",
"BACKEND.exceptionCount" : "exception_count",
"BACKEND.errorCount" : "error_count"
"BACKEND.errorCount" : "error_count",
"EVENT.spaceIds": "space_ids"
}
}
}
Expand Down Expand Up @@ -258,7 +266,8 @@ service.config = {
"API.exceptionCount": "exception_count",
"API.numCalls": "num_calls",
"API.isExternal" : "api_is_external",
"API.apiDiscoveryState" : "api_discovery_state"
"API.apiDiscoveryState" : "api_discovery_state",
"EVENT.spaceIds": "space_ids"
}
}
}
Expand Down

0 comments on commit 6a44a93

Please sign in to comment.