Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion docs/monitoring.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ PMM Client has the following probes:
* **Readiness probe** determines when a PMM Client is available and ready to accept traffic
* **Liveness probe** determines when to restart a PMM Client

To configure probes, use the `spec.pmm.readinessProbes` and `spec.pmm.livenessProbes` Custom Resource options.
To configure probes, use the `spec.pmm.readinessProbe` and `spec.pmm.livenessProbe` Custom Resource options.

20 changes: 10 additions & 10 deletions docs/operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -2135,79 +2135,79 @@ Enables to pass MySQL parameters to PMM. For example, to change the number of ta
| ----------- | ---------- |
| :material-code-string: string | `"--disable-tablestats-limit=2000"` |

### `pmm.readinessProbes.initialDelaySeconds`
### `pmm.readinessProbe.initialDelaySeconds`

The number of seconds to wait before performing the first [readiness probe :octicons-link-external-16:](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/).

| Value type | Example |
| ----------- | ---------- |
| :material-numeric-1-box: int | `15` |

### `pmm.readinessProbes.timeoutSeconds`
### `pmm.readinessProbe.timeoutSeconds`

The number of seconds after which the [readiness probe :octicons-link-external-16:](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) times out.

| Value type | Example |
| ----------- | ---------- |
| :material-numeric-1-box: int | `15` |

### `pmm.readinessProbes.periodSeconds`
### `pmm.readinessProbe.periodSeconds`

How often to perform the [readiness probe :octicons-link-external-16:](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/). Measured in seconds.

| Value type | Example |
| ----------- | ---------- |
| :material-numeric-1-box: int | `30` |

### `pmm.readinessProbes.successThreshold`
### `pmm.readinessProbe.successThreshold`

The number of successful probes required to mark the container successful.

| Value type | Example |
| ----------- | ---------- |
| :material-numeric-1-box: int | `1` |

### `pmm.readinessProbes.failureThreshold`
### `pmm.readinessProbe.failureThreshold`

The number of failed probes required to mark the container unready.

| Value type | Example |
| ----------- | ---------- |
| :material-numeric-1-box: int | `5` |

### `pmm.livenessProbes.initialDelaySeconds`
### `pmm.livenessProbe.initialDelaySeconds`

The number of seconds to wait before performing the first [liveness probe :octicons-link-external-16:](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/).

| Value type | Example |
| ----------- | ---------- |
| :material-numeric-1-box: int | `300` |

### `pmm.livenessProbes.timeoutSeconds`
### `pmm.livenessProbe.timeoutSeconds`

The number of seconds after which the [liveness probe :octicons-link-external-16:](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/) times out.

| Value type | Example |
| ----------- | ---------- |
| :material-numeric-1-box: int | `5` |

### `pmm.livenessProbes.periodSeconds`
### `pmm.livenessProbe.periodSeconds`

How often to perform the [liveness probe :octicons-link-external-16:](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/). Measured in seconds.

| Value type | Example |
| ----------- | ---------- |
| :material-numeric-1-box: int | `10` |

### `pmm.livenessProbes.successThreshold`
### `pmm.livenessProbe.successThreshold`

The number of successful probes required to mark the container successful.

| Value type | Example |
| ----------- | ---------- |
| :material-numeric-1-box: int | `1` |

### `pmm.livenessProbes.failureThreshold`
### `pmm.livenessProbe.failureThreshold`

The number of failed probes required to mark the container unhealthy.

Expand Down