Skip to content

Commit 51cd0e6

Browse files
committed
Moved call home client details and config examples from 7.22 release notes into a dedicated page
1 parent e8df9c6 commit 51cd0e6

File tree

2 files changed

+48
-30
lines changed

2 files changed

+48
-30
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
Title: Call home client
3+
alwaysopen: false
4+
categories:
5+
- docs
6+
- operate
7+
- rs
8+
- kubernetes
9+
description: The call home client sends your Redis Enterprise Software cluster's daily usage statistics to Redis.
10+
linkTitle: Call home client
11+
weight: 80
12+
---
13+
14+
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.
15+
16+
We recommend contacting [Redis support](https://redis.io/support/) before making changes to call home behavior.
17+
18+
## Change data collection schedule
19+
20+
The cluster collects usage data hourly by default.
21+
22+
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:
23+
24+
```sh
25+
PUT /v1/job_scheduler
26+
{
27+
"bdb_usage_report_job_settings": {
28+
"enabled": true,
29+
"cron_expression": "*/60 * * * *"
30+
}
31+
}
32+
```
33+
34+
Replace `cron_expression`'s value with a [`cron` expression](https://en.wikipedia.org/wiki/Cron#CRON_expression) that defines the new data collection schedule.
35+
36+
## Turn off call home client
37+
38+
To stop the call home client from sending daily usage statistics to Redis, [update cluster services configuration]({{<relref "/operate/rs/references/rest-api/requests/cluster/services_configuration#put-cluster-services_config">}}) for `call_home_agent` with a REST API request:
39+
40+
```sh
41+
PUT /v1/cluster/services_configuration
42+
{
43+
"call_home_agent": {
44+
"operating_mode": "disabled"
45+
}
46+
}
47+
```

content/operate/rs/release-notes/rs-7-22-releases/rs-7-22-0-28.md

Lines changed: 1 addition & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -49,36 +49,7 @@ This version offers:
4949

5050
- JSON response format for easy integration with external logging tools.
5151

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-
```
52+
- The [call home client]({{<relref "/operate/rs/clusters/configure/call-home">}}) sends daily usage statistics to Redis for operational insights. Reports include memory usage, shard information, enabled features, and other operational metrics.
8253

8354
- [Support packages]({{<relref "/operate/rs/installing-upgrading/creating-support-package">}}) now include [usage reports]({{<relref "/operate/rs/references/rest-api/requests/usage_report">}}).
8455

0 commit comments

Comments
 (0)