---
title: "Configure Cloud Insights | Grafana Cloud documentation"
description: "Configure Grafana Cloud k6 Cloud Insights to enable or disable the audits you need for your performance tests"
---

> For a curated documentation index, see [llms.txt](/llms.txt). For the complete documentation index, see [llms-full.txt](/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](/docs/grafana-cloud/testing/k6/author-run/use-the-cli/#run-a-test-locally-and-stream-the-results-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:

JavaScript ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```javascript
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:

JavaScript ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```javascript
export const options = {
  cloud: {
    insights: {
      enabled: ['http-spans-failure-rate'],
    },
  },
};
```

Refer to [Cloud Insights reference](/docs/grafana-cloud/testing/k6/analyze-results/get-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:

JavaScript ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```javascript
export const options = {
  cloud: {
    insights: {
      enabledSets: ['reliability'],
    },
  },
};
```

And using `disabledSets`:

JavaScript ![Copy code to clipboard](/media/images/icons/icon-copy-small-2.svg) Copy

```javascript
export const options = {
  cloud: {
    insights: {
      disabledSets: ['best-practice', 'system'],
    },
  },
};
```

Refer to [Cloud Insights reference](/docs/grafana-cloud/testing/k6/analyze-results/get-cloud-insights/reference/) for a list of audits and their categories or groups.
