diff --git a/content/docs/2.0/operate/_index.md b/content/docs/2.0/operate/_index.md index 89715faa15c..0e900e6cee2 100644 --- a/content/docs/2.0/operate/_index.md +++ b/content/docs/2.0/operate/_index.md @@ -7,4 +7,4 @@ weight = 1 We provide guidance & requirements around various areas to operate KEDA: - Cluster ([link](./cluster)) -- Integrate with Prometheus ([link](./prometheus)) \ No newline at end of file +- Integrate with Prometheus ([link](./prometheus)) diff --git a/content/docs/2.2/operate/_index.md b/content/docs/2.2/operate/_index.md index 89715faa15c..eb7e53f3626 100644 --- a/content/docs/2.2/operate/_index.md +++ b/content/docs/2.2/operate/_index.md @@ -7,4 +7,5 @@ weight = 1 We provide guidance & requirements around various areas to operate KEDA: - Cluster ([link](./cluster)) -- Integrate with Prometheus ([link](./prometheus)) \ No newline at end of file +- Integrate with Prometheus ([link](./prometheus)) +- Kubernetes Events ([link](./events)) diff --git a/content/docs/2.2/operate/events.md b/content/docs/2.2/operate/events.md new file mode 100644 index 00000000000..f6758cc9c8a --- /dev/null +++ b/content/docs/2.2/operate/events.md @@ -0,0 +1,27 @@ ++++ +title = "Events" +description = "Kubernetes Events emitted by KEDA" +weight = 100 ++++ + +## Kubernetes Events emitted by KEDA + +KEDA emits the following [Kubernetes Events](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.19/#event-v1-core): +| Event | Type | Description | +|-------------------------------------|-----------|-----------------------------------------------------------------------------------------------------------------------------| +| `ScaledObjectReady` | `Normal` | On the first time a ScaledObject is ready, or if the previous ready condition status of the object was `Unknown` or `False` | +| `ScaledJobReady` | `Normal` | On the first time a ScaledJob is ready, or if the previous ready condition status of the object was `Unknown` or `False` | +| `ScaledObjectCheckFailed` | `Warning` | If the check validation for a ScaledObject fails | +| `ScaledJobCheckFailed` | `Warning` | If the check validation for a ScaledJob fails | +| `ScaledObjectDeleted` | `Normal` | When a ScaledObject is deleted and removed from KEDA watch | +| `ScaledJobDeleted` | `Normal` | When a ScaledJob is deleted and removed from KEDA watch | +| `KEDAScalersStarted` | `Normal` | When Scalers watch loop have started for a ScaledObject or ScaledJob | +| `KEDAScalersStopped` | `Normal` | When Scalers watch loop have stopped for a ScaledObject or a ScaledJob | +| `KEDAScalerFailed` | `Warning` | When a Scaler fails to create or check its event source | +| `KEDAScaleTargetActivated` | `Normal` | When the scale target (Deployment, StatefulSet, etc) of a ScaledObject is scaled to 1 | +| `KEDAScaleTargetDeactivated` | `Normal` | When the scale target (Deployment, StatefulSet, etc) of a ScaledObject is scaled to 0 | +| `KEDAScaleTargetActivationFailed` | `Warning` | When KEDA fails to scale the scale target of a ScaledObject to 1 | +| `KEDAScaleTargetDeactivationFailed` | `Warning` | When KEDA fails to scale the scale target of a ScaledObject to 0 | +| `KEDAJobsCreated` | `Normal` | When KEDA creates jobs for a ScaledJob | +| `TriggerAuthenticationAdded` | `Normal` | When a new TriggerAuthentication is added | +| `TriggerAuthenticationDeleted` | `Normal` | When a TriggerAuthentication is deleted |