add spyware

This commit is contained in:
2026-07-11 17:23:40 +02:00
parent 38a79d598d
commit e8c369b83c
4 changed files with 105 additions and 2 deletions
+15
View File
@@ -1,8 +1,23 @@
import "@/App.css";
import {
getWebInstrumentations,
initializeFaro,
ReactIntegration,
} from "@grafana/faro-react";
import Dashboard from "@/components/Dashboard/Dashboard";
function App() {
initializeFaro({
url: "http://localhost:12347/collect", // Points to your local Alloy container
app: {
name: "monitor-im-flur",
version: "1.0.0",
environment: "development",
},
instrumentations: [...getWebInstrumentations(), new ReactIntegration()],
});
return <Dashboard />;
}