1
0
mirror of https://github.com/minio/docs.git synced 2025-07-02 05:02:40 +03:00
Files
docs/source/reference/minio-mc/mc-support-callhome.rst
Daryl White 34cf55934a Updates for several July 2023 mc releases (#964)
mc RELEASE.2023-07-18T21-05-38Z
- Replaces mc replicate diff with mc replicate backlog
- Adds mc support top net

mc RELEASE.2023-07-07T05-25-51Z
- Adds mc support perf site-replication
- Deprecates mc admin replicate --sync flag in favor of new mc admihn
replicate --mode flag
- Updates output example of mc admin user info to show authentication
info

Partially addresses  #930
2023-08-22 13:54:51 -05:00

3.5 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 reports from a deployment to |SUBNET|.

All mc support commands require an active SUBNET subscription.

When enabled, MinIO can send logs to SUBNET in real time, diagnostics every 24 hours, or both.

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

Syntax

enable

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

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

disable

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

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

status

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

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

Parameters

ALIAS

The alias <alias> of the MinIO deployment.

--logs

Send or stop sending log information to SUBNET in real time.

--diag

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

If you do not pass either --logs or --diag, the command applies to both logs and diagnostics.

Examples

Enable callhome Reporting

Enable the sending of data for deployment with the alias minio1. When enabled for a deployment registered to SUBNET, MinIO sends logs and diagnostics to SUBNET.

mc support callhome enable minio1

Enable callhome Reporting for Logs

Enable logs callhome for a deployment with the alias minio1. When enabled for a deployment registered to SUBNET, MinIO sends logs to SUBNET in real time.

mc support callhome enable minio1 --logs

Disable callhome Logs

Disable sending real time 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 diagnostics or logs to SUBNET.

mc support callhome status minio1

Global Flags