diff --git a/menu/navigation.json b/menu/navigation.json
index a1d15dd0b2..efd67c477e 100644
--- a/menu/navigation.json
+++ b/menu/navigation.json
@@ -3912,6 +3912,10 @@
"label": "Monitor function logs and metrics",
"slug": "monitor-function"
},
+ {
+ "label": "Configure alerts for a function",
+ "slug": "configure-alerts-function"
+ },
{
"label": "Delete a function",
"slug": "delete-a-function"
diff --git a/pages/serverless-functions/how-to/configure-alerts-function.mdx b/pages/serverless-functions/how-to/configure-alerts-function.mdx
new file mode 100644
index 0000000000..578675a003
--- /dev/null
+++ b/pages/serverless-functions/how-to/configure-alerts-function.mdx
@@ -0,0 +1,59 @@
+---
+meta:
+ title: How to add alerts to a function
+ description: Learn how to add monitoring alerts to Serverless Functions with Scaleway.
+content:
+ h1: How to add alerts to a function
+ paragraph: Learn how to add monitoring alerts to Serverless Functions with Scaleway.
+tags: functions alerts grafana threshold monitoring cockpit
+dates:
+ validation: 2025-02-10
+ posted: 2025-02-10
+categories:
+ - serverless
+---
+
+This page shows you how to configure alerts for Scaleway Serverless Functions using Scaleway Cockpit and Grafana.
+
+
+
+ - A Scaleway account logged into the [console](https://console.scaleway.com)
+ - [Owner](/iam/concepts/#owner) status or [IAM permissions](/iam/concepts/#permission) allowing you to perform actions in the intended Organization
+ - Scaleway resources you can monitor
+ - [Created Grafana credentials](/cockpit/how-to/retrieve-grafana-credentials/) with the **Editor** role
+ - [Enabled](/cockpit/how-to/enable-alert-manager/) the alert manager, and [activated preconfigured alerts](/cockpit/how-to/activate-managed-alerts/)
+ - [Created](/cockpit/how-to/add-contact-points/) at least one contact point
+ - Selected the **Scaleway Alerting** alert manager in Grafana
+
+1. [Log in to Grafana](/cockpit/how-to/access-grafana-and-managed-dashboards/) using your credentials.
+2. Click the **Toggle menu** then click **Alerting**.
+3. Click **Alert rules** and **+ New alert rule**.
+4. Scroll down to the **Define query and alert condition** section and click **Switch to data source-managed alert rule**.
+
+ This allows you to configure alert rules managed by the data source of your choice, instead of using Grafana's managed alert rules.
+
+
+5. Type in a name for your alert.
+6. Select the data source you want to configure alerts for. For the sake of this documentation, we are choosing the **Scaleway Metrics** data source.
+7. In the Metrics browser drop-down, select the metric you want to configure an alert for. Refer to the table below for details on each alert for Serverless Functions.
+
+ | Rule name | Pending period | Summary | Query and alert condition | Description |
+ |----------------------------|----------------|---------------------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------|
+ | AnyFunctionError | 10s | Function `{{ $labels.resource_name }}` is in error. | `serverless_function_status{status="error"} == 1 ` | Function `{{ $labels.resource_name }}` with id `$labels.resource_id }}` is in error. Check the console to find out the error message. |
+ | FunctionError | | Function `{{ $labels.resource_name }}` is in error. | `serverless_function_status{status="error",resource_id="your-function-id-here"} == 1 ` | Function `{{ $labels.resource_name }}` with id `{{ $labels.resource_id }}` is in error. Check the console to find out the error message. |
+ | AnyFunctionHighCPUUsage | 10m | High CPU usage for function `{{ $labels.resource_name }}`. | `serverless_function_cpu_usage_ratio > 90 ` | Function `{{ $labels.resource_name }}` with id `{{ $labels.resource_id }}` is using more than `{{ printf "%.0f" $value }}`% of its available CPU since 10m. |
+ | FunctionHighCPUUsage | | High CPU usage for function `{{ $labels.resource_name }}`. | `serverless_function_cpu_usage_ratio{resource_id="your-function-id-here"} > 90 ` | Function `{{ $labels.resource_name }}` with id `{{ $labels.resource_id }}` is using more than `{{ printf "%.0f" $value }}`% of its available CPU since 10m. |
+ | AnyFunctionHighMemoryUsage | 10m | High memory usage for function `{{ $labels.resource_name }}` | `(serverless_function_memory_usage_bytes / serverless_function_memory_limit_bytes) * 100 > 90 ` | Function `{{ $labels.resource_name }}` with id `{{ $labels.resource_id }}` is using more than `{{ printf "%.0f" $value }}`% of its available RAM since 10m. |
+ | FunctionHighMemoryUsage | | High memory usage for function `{{ $labels.resource_name }}` | `(serverless_function_memory_usage_bytes{resource_id="your-container-id-here"} / serverless_function_memory_limit_bytes{resource_id="your-container-id-here"}) * 100 > 90` | Function `{{ $labels.resource_name }}` with id `{{ $labels.resource_id }}` is using more than `{{ printf "%.0f" $value }}`% of its available RAM since 10m. |
+
+8. Select labels that apply to the metric you have selected in the previous step, to target your desired resources and fine-tune your alert.
+9. Select one or more values for your labels.
+10. Click **Use query** to generate your alert based on the conditions you have defined.
+11. Select a folder to store your rule, or create a new one. Folders allow you to easily manage your different rules.
+12. Select an evaluation group to add your rule to. Rules within the same group are evaluated sequentially over the same time interval.
+13. In the **Set alert evaluation behavior** field, configure the amount of time during which the alert can be in breach of the condition(s) you have defined until it triggers.
+
+ For example, if you wish to be alerted after your alert has been in breach of the condition for 2 minutes without interruption, type `2` and select `minutes` in the drop-down.
+
+14. Optionally, add a summary and a description.
+15. Click **Save rule** at the top right corner of your screen to save your alert. Once your alert meets the requirements you have configured, you will receive an email to inform you that your alert has triggered.