Skip to content

Commit e25fd26

Browse files
K8s: disable call home client (#2161)
* disable call home client * wording change
1 parent b01500e commit e25fd26

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

content/operate/kubernetes/re-clusters/_index.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,21 @@ Monitor cluster health and performance:
3636

3737
- [Connect to Prometheus operator]({{< relref "/operate/kubernetes/re-clusters/connect-prometheus-operator" >}}) - Integrate with Prometheus for metrics collection and monitoring
3838

39+
### Call home client
40+
41+
The call home client sends health or error data from your deployment(s) back to Redis. You can disable it by adding the following to your REC specification:
42+
43+
```yaml
44+
spec:
45+
usageMeter:
46+
callHomeClient:
47+
disabled: true
48+
```
49+
50+
{{<note>}}
51+
The REST API approach used for Redis Software deployments will have no effect on Kubernetes deployments. You must use the REC specification method shown above.
52+
{{</note>}}
53+
3954
## Recovery and troubleshooting
4055
4156
Handle cluster recovery and troubleshooting scenarios:

content/operate/rs/clusters/configure/call-home.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ categories:
55
- docs
66
- operate
77
- rs
8-
- kubernetes
98
description: The call home client sends your Redis Enterprise Software cluster's daily usage statistics to Redis.
109
linkTitle: Call home client
1110
weight: 80
@@ -14,7 +13,6 @@ weight: 80
1413
The call home client collects data hourly and sends daily usage statistics to Redis with a POST request to `https://usage.redis.io/callHome`. Reports include memory usage, shard details, enabled features, and other operational metrics. To prevent increased load when multiple clusters are running, the daily report is sent at a random time.
1514

1615
These reports provide insights into license consumption, which helps Redis to ensure performance metrics align with contractual agreements, optimize service delivery, and offer proactive customer support.
17-
1816
We recommend contacting [Redis support](https://redis.io/support/) before making changes to call home behavior.
1917

2018
## Collected data
@@ -76,9 +74,9 @@ To stop the call home client from sending daily usage statistics to Redis, [upda
7674

7775
```sh
7876
PUT /v1/cluster/services_configuration
79-
{
80-
"call_home_agent": {
77+
{
78+
"call_home_agent": {
8179
"operating_mode": "disabled"
82-
}
80+
}
8381
}
8482
```

0 commit comments

Comments
 (0)