Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,25 @@ sidebar:
order: 2
---

import { Tabs, TabItem } from "~/components";

The challenge solve rate (CSR) is the percentage of issued challenges — Interactive Challenge, JS Challenge, or Managed Challenge actions — that were solved.

```sql
```txt
CSR = number of challenges solved / number of challenges issued
```

This metric helps you evaluate your rule's effectiveness, as well as whether you need to make any adjustments to the rule's criteria or action. Rules in Challenge mode will start generating Challenge Solve Rate data (CSR) which indicates the false positive percentage.

You can find the CSR of a rule by going to its corresponding dashboard page:

- For [custom rules](/waf/custom-rules/), go to **Security** > **WAF** > **Custom rules**.
- For [rate limiting rules](/waf/rate-limiting-rules/), go to **Security** > **WAF** > **Rate limiting rules**.
<Tabs syncKey="dashNewNav"> <TabItem label="Old dashboard">

- For [custom rules](/waf/custom-rules/), go to your zone > **Security** > **WAF** > **Custom rules**.
- For [rate limiting rules](/waf/rate-limiting-rules/), go to your zone > **Security** > **WAF** > **Rate limiting rules**.

</TabItem> <TabItem label="New dashboard" icon="rocket">

For [custom rules](/waf/custom-rules/) or [rate limiting rules](/waf/rate-limiting-rules/), go to your zone > **Security** > **Security rules**.

</TabItem> </Tabs>
Loading