InfoAsync #
Returns information about Kuzzle: available API (base + extended), plugins, external services (Redis, Elasticsearch, ...), servers, etc.
Arguments #
async Task<JObject> InfoAsync()
Return #
Returns server information as a JObject
.
Usage #
JObject info = await kuzzle.Server.InfoAsync();
Console.WriteLine("Kuzzle server informations: " +
info.ToString(Formatting.None));
Edit this page on Github(opens new window)