mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-01 18:53:40 +00:00
fix: Log associate with Trace (#343)
This commit is contained in:
parent
03e1508afc
commit
d8a3c27345
@ -76,6 +76,7 @@ limitations under the License. -->
|
||||
{
|
||||
sourceId: options.id || "",
|
||||
traceId: id,
|
||||
id: props.data.serviceId || "",
|
||||
},
|
||||
"Trace",
|
||||
);
|
||||
|
@ -178,6 +178,7 @@ limitations under the License. -->
|
||||
if (props.data.filters.id) {
|
||||
item = arr.find((d: { id: string }) => d.id === props.data.filters?.id);
|
||||
}
|
||||
|
||||
return item;
|
||||
}
|
||||
function setCondition() {
|
||||
@ -194,7 +195,7 @@ limitations under the License. -->
|
||||
if (props.data.filters && props.data.filters.id) {
|
||||
param = {
|
||||
...param,
|
||||
serviceId: selectorStore.currentService.id,
|
||||
serviceId: props.data.filters.id || undefined,
|
||||
endpointId: state.endpoint.id || undefined,
|
||||
serviceInstanceId: state.instance.id || undefined,
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user