Merge pull request #23477 from taosdata/enh/TD-27019
enh: disable telemetry in enterprise version by default
This commit is contained in:
commit
67333c2e17
|
@ -104,13 +104,21 @@ uint16_t tsAuditPort = 6043;
|
||||||
bool tsEnableAuditCreateTable = true;
|
bool tsEnableAuditCreateTable = true;
|
||||||
|
|
||||||
// telem
|
// telem
|
||||||
|
#ifdef TD_ENTERPRISE
|
||||||
|
bool tsEnableTelem = false;
|
||||||
|
#else
|
||||||
bool tsEnableTelem = true;
|
bool tsEnableTelem = true;
|
||||||
|
#endif
|
||||||
int32_t tsTelemInterval = 43200;
|
int32_t tsTelemInterval = 43200;
|
||||||
char tsTelemServer[TSDB_FQDN_LEN] = "telemetry.tdengine.com";
|
char tsTelemServer[TSDB_FQDN_LEN] = "telemetry.tdengine.com";
|
||||||
uint16_t tsTelemPort = 80;
|
uint16_t tsTelemPort = 80;
|
||||||
char *tsTelemUri = "/report";
|
char *tsTelemUri = "/report";
|
||||||
|
|
||||||
|
#ifdef TD_ENTERPRISE
|
||||||
|
bool tsEnableCrashReport = false;
|
||||||
|
#else
|
||||||
bool tsEnableCrashReport = true;
|
bool tsEnableCrashReport = true;
|
||||||
|
#endif
|
||||||
char *tsClientCrashReportUri = "/ccrashreport";
|
char *tsClientCrashReportUri = "/ccrashreport";
|
||||||
char *tsSvrCrashReportUri = "/dcrashreport";
|
char *tsSvrCrashReportUri = "/dcrashreport";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue