-
Notifications
You must be signed in to change notification settings - Fork 3
config
LUYONGQIANG edited this page Dec 3, 2019
·
6 revisions
/api/config
This endpoint returns information about the running configuration of the TSD. It is read only and cannot be used to set configuration options.
ApiUrlConfig.ChangeBaseUrl("http://192.168.1.22:4242/");
OpenTsdbClient apiClient = new OpenTsdbClient();
var result = await apiClient.GetAsync<dynamic>("api/config");
Console.WriteLine(result);{
"tsd.core.authentication.enable": "false",
"tsd.core.authentication.plugin": "",
"tsd.core.auto_create_metrics": "false",
"tsd.core.auto_create_tagks": "true",
"tsd.core.auto_create_tagvs": "true",
"tsd.core.bulk.allow_out_of_order_timestamps": "false",
"tsd.core.connections.limit": "0",
"tsd.core.enable_api": "true",
"tsd.core.enable_ui": "true"
}