Decrease metrics polling frequency

- it's unclear what the ideal window length is
- small window likely means tracking each change
- small window currently not beneficial in answering product questions 
- will re-evaluate based on findings
This commit is contained in:
Mattias Granlund 2024-07-04 11:53:04 +01:00
parent a85cc20582
commit 2bc8ff1d03

View File

@ -42,7 +42,7 @@
onMount(() => {
intervalId = setInterval(() => {
sample();
}, hourMs / 12);
}, 4 * hourMs);
return () => {
if (intervalId) clearInterval(intervalId);
};