From ee774751941430d04bc8bacc7f391a2f8b9129bc Mon Sep 17 00:00:00 2001 From: Arif Hasanic Date: Sat, 11 Jul 2026 18:33:04 +0200 Subject: [PATCH] more data for faro --- src/App.tsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/App.tsx b/src/App.tsx index 1a8a02d..cd1dac3 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -4,6 +4,9 @@ import { getWebInstrumentations, initializeFaro, ReactIntegration, + ConsoleInstrumentation, + WebVitalsInstrumentation, + LogLevel, } from "@grafana/faro-react"; import Dashboard from "@/components/Dashboard/Dashboard"; @@ -21,7 +24,11 @@ function App() { environment: "production", }, instrumentations: [ - ...getWebInstrumentations(), + ...getWebInstrumentations({ + captureConsole: true, + }), + new ConsoleInstrumentation(), + new WebVitalsInstrumentation(), new ReactIntegration(), ], });