mirror of
https://github.com/apache/skywalking-booster-ui.git
synced 2025-05-02 17:04:48 +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 || "",
|
sourceId: options.id || "",
|
||||||
traceId: id,
|
traceId: id,
|
||||||
|
id: props.data.serviceId || "",
|
||||||
},
|
},
|
||||||
"Trace",
|
"Trace",
|
||||||
);
|
);
|
||||||
|
@ -178,6 +178,7 @@ limitations under the License. -->
|
|||||||
if (props.data.filters.id) {
|
if (props.data.filters.id) {
|
||||||
item = arr.find((d: { id: string }) => d.id === props.data.filters?.id);
|
item = arr.find((d: { id: string }) => d.id === props.data.filters?.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
function setCondition() {
|
function setCondition() {
|
||||||
@ -194,7 +195,7 @@ limitations under the License. -->
|
|||||||
if (props.data.filters && props.data.filters.id) {
|
if (props.data.filters && props.data.filters.id) {
|
||||||
param = {
|
param = {
|
||||||
...param,
|
...param,
|
||||||
serviceId: selectorStore.currentService.id,
|
serviceId: props.data.filters.id || undefined,
|
||||||
endpointId: state.endpoint.id || undefined,
|
endpointId: state.endpoint.id || undefined,
|
||||||
serviceInstanceId: state.instance.id || undefined,
|
serviceInstanceId: state.instance.id || undefined,
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user