Skip to content

Commit 1fe8192

Browse files
committed
Added call home protocol and updated collected data example with additional fields
1 parent d97e88c commit 1fe8192

File tree

1 file changed

+29
-20
lines changed

1 file changed

+29
-20
lines changed

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

Lines changed: 29 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ linkTitle: Call home client
1111
weight: 80
1212
---
1313

14-
The call home client collects data hourly and sends daily usage statistics to Redis. 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.
14+
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.
1515

1616
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.
1717

@@ -22,25 +22,34 @@ We recommend contacting [Redis support](https://redis.io/support/) before making
2222
The following example shows the data collected hourly for each database:
2323

2424
```sh
25-
"date": "2025-03-25T11:42:13.984Z",
26-
"cluster_UUID": "string",
27-
"cluster_name": "string",
28-
"api_version": "string",
29-
"software_version": "string",
30-
"bdb_uid": "string",
31-
"type": "string",
32-
"shard_type": "string",
33-
"dominant_shard_criteria": "string",
34-
"provisioned_memory": 0,
35-
"used_memory": 0,
36-
"master_shards_count": 0,
37-
"no_eviction": true,
38-
"persistence": true,
39-
"backup": true,
40-
"using_redis_search": true,
41-
"ops_sec": 0,
42-
"replication": true,
43-
"active_active": true
25+
{
26+
"support_package": true,
27+
"customer_name": "string",
28+
"license_hash": "string",
29+
"usage_data": [
30+
{
31+
"date": "2025-03-25T11:42:13.984Z",
32+
"cluster_UUID": "string",
33+
"cluster_name": "string",
34+
"api_version": "string",
35+
"software_version": "string",
36+
"bdb_uid": "string",
37+
"type": "string",
38+
"shard_type": "string",
39+
"dominant_shard_criteria": "string",
40+
"provisioned_memory": 0,
41+
"used_memory": 0,
42+
"master_shards_count": 0,
43+
"no_eviction": true,
44+
"persistence": true,
45+
"backup": true,
46+
"using_redis_search": true,
47+
"ops_sec": 0,
48+
"replication": true,
49+
"active_active": true
50+
}
51+
]
52+
}
4453
```
4554

4655
## Change data collection schedule

0 commit comments

Comments
 (0)