enh: disable telemetry in enterprise version
This commit is contained in:
parent
3f55b0ee7c
commit
72a866988b
|
@ -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