Documentation for automated readers
A curated documentation index is available at: https://grafana.com/llms.txt
A complete documentation index is available at: https://grafana.com/llms-full.txt
These indexes can help with page discovery before fetching individual documents.
This page is also available in Markdown, which may be easier for automated readers and AI tools to parse than HTML. The Markdown version is available at https://grafana.com/docs/grafana-cloud/monitor-applications/frontend-observability/configure/exclude-endpoints.md, or by sending Accept: text/markdown to https://grafana.com/docs/grafana-cloud/monitor-applications/frontend-observability/configure/exclude-endpoints/. For broader documentation discovery, the curated index is available at https://grafana.com/llms.txt and the complete index is available at 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


