You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| alert_mgr |[alert_mgr]({{< relref "/operate/rs/references/rest-api/objects/services_configuration/alert_mgr" >}}) object | Whether to enable/disable the alert manager processes |
19
+
| call_home_agent |[call_home_agent]({{< relref "/operate/rs/references/rest-api/objects/services_configuration/call_home_agent" >}}) object | Whether to enable/disable the call_home_agent process, which sends daily usage statistics to Redis |
19
20
| cm_server |[cm_server]({{< relref "/operate/rs/references/rest-api/objects/services_configuration/cm_server" >}}) object | Whether to enable/disable the CM server |
20
21
| crdb_coordinator |[crdb_coordinator]({{< relref "/operate/rs/references/rest-api/objects/services_configuration/crdb_coordinator" >}}) object | Whether to enable/disable the CRDB coordinator process |
21
22
| crdb_worker |[crdb_worker]({{< relref "/operate/rs/references/rest-api/objects/services_configuration/crdb_worker" >}}) object | Whether to enable/disable the CRDB worker processes |
Copy file name to clipboardExpand all lines: content/operate/rs/release-notes/rs-7-22-releases/_index.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ categories:
6
6
- operate
7
7
- rs
8
8
compatibleOSSVersion: Redis 7.4.0
9
-
description: Diagnostic logging service. Revamp database API. Migration status API. Usage reports in support packages. Two-dimensional rack awareness. New version for actions API. Additional REST API enhancements.
9
+
description: Diagnostic logging service. Call home client to send daily usage statistics to Redis. Revamp database API. Migration status API. Usage reports in support packages. Two-dimensional rack awareness. New version for actions API. Additional REST API enhancements.
10
10
hideListLinks: true
11
11
linkTitle: 7.22.x releases
12
12
toc: 'true'
@@ -21,6 +21,8 @@ This version offers:
21
21
22
22
- Diagnostic logging service
23
23
24
+
- Call home client to send daily usage statistics to Redis
Copy file name to clipboardExpand all lines: content/operate/rs/release-notes/rs-7-22-releases/rs-7-22-0-28.md
+34-1Lines changed: 34 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ categories:
6
6
- operate
7
7
- rs
8
8
compatibleOSSVersion: Redis 7.4.0
9
-
description: Diagnostic logging service. Revamp database API. Migration status API. Usage reports in support packages. Two-dimensional rack awareness. New version for actions API. Additional REST API enhancements.
9
+
description: Diagnostic logging service. Call home client to send daily usage statistics to Redis. Revamp database API. Migration status API. Usage reports in support packages. Two-dimensional rack awareness. New version for actions API. Additional REST API enhancements.
10
10
linkTitle: 7.22.0-28 (April 2025)
11
11
weight: 90
12
12
---
@@ -19,6 +19,8 @@ This version offers:
19
19
20
20
- Diagnostic logging service
21
21
22
+
- Call home client to send daily usage statistics to Redis
23
+
22
24
- Revamp database API
23
25
24
26
- Migration status API
@@ -47,6 +49,37 @@ This version offers:
47
49
48
50
- JSON response format for easy integration with external logging tools.
49
51
52
+
- Call home client:
53
+
54
+
- The call home client sends daily usage statistics to Redis for operational insights. Reports include memory usage, shard information, enabled features, and other operational metrics.
55
+
56
+
- The cluster collects usage data hourly by default.
57
+
58
+
- We recommend contacting [Redis support](https://redis.io/support/) before making changes to call home behavior.
59
+
60
+
- To change the data collection schedule, [update job scheduler settings]({{<relref "/operate/rs/references/rest-api/requests/job_scheduler#put-job-scheduler">}}) for `bdb_usage_report_job_settings` with a REST API request:
61
+
62
+
```sh
63
+
PUT /v1/job_scheduler
64
+
{
65
+
"bdb_usage_report_job_settings": {
66
+
"enabled": <true|false>,
67
+
"cron_expression": "*/60 * * * *"
68
+
}
69
+
}
70
+
```
71
+
72
+
- To stop the call home client from sending daily usage statistics to Redis, [update cluster services configuration
73
+
]({{<relref "/operate/rs/references/rest-api/requests/cluster/services_configuration#put-cluster-services_config">}}) for`call_home_agent` with a REST API request:
74
+
75
+
```sh
76
+
PUT /v1/cluster/services_configuration
77
+
{ "call_home_agent": {
78
+
"operating_mode": "disabled"
79
+
}
80
+
}
81
+
```
82
+
50
83
- [Revamp database REST API requests]({{<relref "operate/rs/references/rest-api/requests/bdbs/actions/revamp">}}):
51
84
52
85
- Updates topology-related configurations of an active database and optimises the shards placement for the new configuration. Example configuration parameters include `memory_size`, `shards_count`, `avoid_nodes`, `shards_placement`, `bigstore_ram_size`, and `replication`.
0 commit comments