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/testing/k6/analyze-results/get-cloud-insights/configure.md, or by sending Accept: text/markdown to https://grafana.com/docs/grafana-cloud/testing/k6/analyze-results/get-cloud-insights/configure/. 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.
Configure Cloud Insights
Cloud Insights intelligently selects audits relevant to each Grafana Cloud k6 test run. However, depending on your use case, you can customize this behavior by turning specific audits on or off.
Note
This feature only works for tests executed in the cloud. It doesn’t work for local test executions with results streamed to the cloud.
Enable or disable specific audits
You can disable one or more audits from showing up when executing tests by using the cloud.insights property in the options object:
export const options = {
cloud: {
insights: {
disabled: ['http-failure-rate', 'third-party-content'],
},
},
};When you provide the disabled array, Grafana Cloud k6 skips executing the listed audits.
You can also provide a list of enabled audits, which excludes all other audits from the analysis:
export const options = {
cloud: {
insights: {
enabled: ['http-spans-failure-rate'],
},
},
};Refer to Cloud Insights reference for a list of audits and their values.
Enable or disable sets of audits
You can enable or disable multiple audits by their category or group using the enabledSets or disabledSets array in the insights object:
export const options = {
cloud: {
insights: {
enabledSets: ['reliability'],
},
},
};And using disabledSets:
export const options = {
cloud: {
insights: {
disabledSets: ['best-practice', 'system'],
},
},
};Refer to Cloud Insights reference for a list of audits and their categories or groups.
Was this page helpful?
Related resources from Grafana Labs


