bla bli blub

This commit is contained in:
2026-07-12 11:10:48 +02:00
parent ee77475194
commit d477ba0863
2 changed files with 90 additions and 27 deletions
+65
View File
@@ -0,0 +1,65 @@
faro.receiver "integrations_app_agent_receiver" {
extra_log_labels = {
app = "Frontend Observability",
kind = "",
}
server {
listen_address = "0.0.0.0"
listen_port = "8027"
cors_allowed_origins = ["*"]
max_allowed_payload_size = "10MiB"
rate_limiting {
rate = 50
}
}
sourcemaps { }
output {
logs = [loki.process.logs_process_client.receiver]
traces = []
}
}
loki.process "logs_process_client" {
forward_to = [loki.write.logs_write_client.receiver]
stage.json {
expressions = {
app = "",
service_name = "",
kind = "",
message = "",
level = ""
}
}
stage.labels {
values = {
kind = "kind",
service_name = "service_name",
app = "app",
level = "level",
}
}
stage.static_labels {
set = {
source = "faro",
}
}
}
loki.write "logs_write_client" {
endpoint {
url = "http://loki:3100/loki/api/v1/push"
}
external_labels = {
}
}
logging {
level = "info"
}
+4 -6
View File
@@ -6,21 +6,18 @@ import {
ReactIntegration, ReactIntegration,
ConsoleInstrumentation, ConsoleInstrumentation,
WebVitalsInstrumentation, WebVitalsInstrumentation,
LogLevel,
} from "@grafana/faro-react"; } from "@grafana/faro-react";
import Dashboard from "@/components/Dashboard/Dashboard"; import Dashboard from "@/components/Dashboard/Dashboard";
function App() { function App() {
const isProduction = import.meta.env.PROD; const isProduction = import.meta.env.PROD;
if (isProduction && window.location.hostname === "localhost") { if (window.location.hostname === "localhost" && isProduction) {
console.debug("Initializing Faro environment...");
initializeFaro({ initializeFaro({
url: "http://localhost:12347/collect", url: "http://alloy:8027/collect",
app: { app: {
name: "monitor-im-flur", name: "monitor-im-flur",
version: import.meta.env.VITE_APP_VERSION || "0.0.1", version: "0.0.1",
environment: "production", environment: "production",
}, },
instrumentations: [ instrumentations: [
@@ -33,6 +30,7 @@ function App() {
], ],
}); });
} }
return <Dashboard />; return <Dashboard />;
} }