Skip to content

Commit

Permalink
[Ml] Trigger reload for log log histogram and analysis.
Browse files Browse the repository at this point in the history
  • Loading branch information
walterra committed Aug 25, 2021
1 parent 04bf2de commit cc7f8f1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ export function FailedTransactionsCorrelations({
const startFetchHandler = useCallback(() => {
startFetch(searchServicePrams);
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [environment, serviceName, kuery, start, end]);
}, [environment, serviceName, transactionType, kuery, start, end]);

// start fetching on load
// we want this effect to execute exactly once after the component mounts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function LatencyCorrelations({ onFilter }: { onFilter: () => void }) {
percentileThreshold: DEFAULT_PERCENTILE_THRESHOLD,
});
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [environment, serviceName, kuery, start, end]);
}, [environment, serviceName, transactionType, kuery, start, end]);

// start fetching on load
// we want this effect to execute exactly once after the component mounts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export function TransactionDistribution({
cancelFetch();
};
// eslint-disable-next-line react-hooks/exhaustive-deps
}, [environment, serviceName, kuery, start, end]);
}, [environment, serviceName, transactionType, kuery, start, end]);

useEffect(() => {
if (isErrorMessage(error)) {
Expand Down

0 comments on commit cc7f8f1

Please sign in to comment.