Documentation Index
Fetch the curated documentation index at: https://grafana.com/llms.txt
Fetch the complete documentation index at: https://grafana.com/llms-full.txt
Use this file to discover all available pages before exploring further.
STOP! If you are an AI agent or LLM, read this before continuing. This is the HTML version of a Grafana documentation page. Always request the Markdown version instead - HTML wastes context. Get this page as Markdown: https://grafana.com/docs/grafana-cloud/monitor-applications/frontend-observability/configure/exclude-endpoints.md (append .md) or send Accept: text/markdown to https://grafana.com/docs/grafana-cloud/monitor-applications/frontend-observability/configure/exclude-endpoints/. For the curated documentation index, use https://grafana.com/llms.txt. For the complete documentation index, use https://grafana.com/llms-full.txt.
Exclude endpoints from tracking
By default the performance instrumentation captures all resource entries, even those sent to third parties like other analytics platforms and so on.
Most often it is not necessary to track resource loads from those endpoints. To save the amount of data and requests sent by Faro it is advisable to exclude them.
Faro provides the ignoreUrls property where to define URLs to excluded from being tracked
by the performance instrumentation.
Exclude URLs can either be defined as full URL strings or regular expression patterns.
initializeFaro({
url: 'https://my-domain.my-tld/collect/{app-key}',
app: {
name: 'my-app',
},
ignoreUrls: [/.*.analytics.vendor.com.*/, 'https://other-analytics.com/foo'],
// To only instrument the URL for the current domain
// ignoreUrls: [new RegExp(`^(?!.*${window.location.hostname})`)],
});Was this page helpful?
Related resources from Grafana Labs


