1
0
mirror of https://github.com/minio/docs.git synced 2025-12-07 08:22:13 +03:00
Files
docs/source/reference/minio-mc/mc-support-callhome.rst
Daryl White 292c604f47 Updates for mc RELEASE.2025-03-12T17-29-24Z (#1441)
- removes `--logs` flag from `mc support callhome`
- enforces 100 bucket limit for v2 metrics

Closes #1439

Opportunistic fix to remove errant copy/paste for
`--noncurrent-expire-days` flag in `mc ilm rule add`

Closes #1438
2025-04-01 15:04:32 -04:00

3.4 KiB

mc support callhome

minio

Table of Contents

mc support logs disable

mc support logs enable

mc support logs status

mc support callhome

Description

The mc support callhome command allows the enabling or disabling of diagnostic information from a deployment to |SUBNET|.

All mc support commands require an active SUBNET subscription.

When enabled, MinIO sends diagnostic information to SUBNET.

MinIO disables this functionality by default, regardless of registration status. You must explicitly enable the callhome function to begin information upload.

Syntax

enable

Begin sending a deployment's diagnostics, logs, or both to SUBNET.

mc support callhome enable    \
                    ALIAS     \
                    [--logs]  \
                    [--diag]

Note

The --logs and --diag flags are no longer supported in SUBNET and will be removed in a future release.

disable

Stop sending a deployment's diagnostics, logs, or both to SUBNET.

mc support callhome disable  \
                    ALIAS    \
                    [--logs] \
                    [--diag]

Note

The --logs and --diag flags are no longer supported in SUBNET and will be removed in a future release.

status

Output whether a deployment currently sends diagnostics, logs, or both to SUBNET.

mc support callhome status   \
                    ALIAS    \
                    [--diag]

Note

The --diag flag is no longer supported in SUBNET and will be removed in a future release.

Parameters

ALIAS

The alias <alias> of the MinIO deployment.

--diag

Note

This option is no longer supported in SUBNET and will be removed in a future release.

Send or stop sending deployment diagnostic information to SUBNET every 24 hours.

Examples

Enable callhome reporting

Enable sending diagnostic information to SUBNET for a deployment registered to SUBNET with an alias <alias> of minio1.

mc support callhome enable minio1

Disable callhome reporting

Disable sending diagnostic information to SUBNET for a deployment registered to SUBNET with an alias <alias> of minio1.

mc support callhome disable minio1

Display Current callhome settings

Display whether a deployment with the alias minio1 sends information to SUBNET.

mc support callhome status minio1

Global Flags