You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking for an experienced DevOps/infra engineer to help improve our Grafana cloud dashboard. We've already connected Granana with our K8s cluster.
Create a "single pane of glass" view containing essential metrics such as API requests, frontend request (not sure how to integerate with next.js)
Set up email or Discord notification alerts
The text was updated successfully, but these errors were encountered:
It seems we could push vercel logs to our grafana dash using the same loki endpoint we have configured already, however this requires Pro plan on vercel, I'm not sure we got it. Also, the log format vercel pushes doesn't seem to be accepted by loki, so we'd have to add a middleman to transform it, maybe a basic lambda function running on vercel itself?
https://logs-prod-006.grafana.net
basicAuth:
username: "<some user id>"
password: <some token here>
Regarding vercel TRACES, we must add an environment variable pointing open telemetry metrics to our grafana agent, however, our agent is not exposed publicly and I haven't considered the drawbacks of exposing it so I'm not 100% sure this is the way forward nor sure we even want to capture otel traces.
Create an instrumentation.ts file in the root of your project and add the following code to initialize and configure OTEL using @vercel/otel.
import { registerOTel } from '@vercel/otel';
export function register() {
registerOTel({ serviceName: 'your-project-name' });
}
// NOTE: You can replace `your-project-name` with the actual name of your project
I'm looking for an experienced DevOps/infra engineer to help improve our Grafana cloud dashboard. We've already connected Granana with our K8s cluster.
The text was updated successfully, but these errors were encountered: