add spyware
This commit is contained in:
+15
@@ -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 />;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user