Add ILM metrics in metrics-v3 (#19539)

Signed-off-by: Bala.FA <bala@minio.io>
This commit is contained in:
Bala FA
2024-06-06 15:06:25 +05:30
committed by GitHub
parent 850a84b08a
commit 7edc352d23
4 changed files with 84 additions and 3 deletions

View File

@@ -42,6 +42,14 @@ These are metrics about the minio audit functionality
|----------|----------------------------------------|
| `/audit` | Metrics related to audit functionality |
### ILM metrics
These are metrics about the minio ILM functionality
| Path | Description |
|--------|--------------------------------------|
| `/ilm` | Metrics related to ILM functionality |
### Logger webhook metrics
These are metrics about the minio logger webhooks
@@ -377,3 +385,13 @@ The standard metrics group for GoCollector is not shown below.
| `minio_scanner_last_activity_seconds` | `gauge` | Time elapsed (in seconds) since last scan activity | `server` |
| `minio_scanner_objects_scanned` | `counter` | Total number of unique objects scanned since server start | `server` |
| `minio_scanner_versions_scanned` | `counter` | Total number of object versions scanned since server start | `server` |
### `/ilm`
| Name | Type | Help | Labels |
|-------------------------------------------------------|-----------|----------------------------------------------------------------------------|----------|
| `minio_cluster_ilm_expiry_pending_tasks` | `gauge` | Number of pending ILM expiry tasks in the queue | `server` |
| `minio_cluster_ilm_transition_active_tasks` | `gauge` | Number of active ILM transition tasks | `server` |
| `minio_cluster_ilm_transition_pending_tasks` | `gauge` | Number of pending ILM transition tasks in the queue | `server` |
| `minio_cluster_ilm_transition_missed_immediate_tasks` | `counter` | Number of missed immediate ILM transition tasks | `server` |
| `minio_cluster_ilm_versions_scanned` | `counter` | Total number of object versions checked for ILM actions since server start | `server` |