For awhile we've been viewing data through Kibana. And recently we've thought about moving away from Kibana. So we want to learn how to use elastic search through NEST (C#).
var node = new Uri("localhost");
var settings = new ConnectionSettings(node);
var client = new ElasticClient(settings);
var search = client.Search<dynamic>(s => s.Query(q => q));
Console.WriteLine(search.ToString());
Console.WriteLine(client.ToString());
Console.ReadLine();
I'd like to do the basics so far. Like for example receive a count of how many times a certain field has been logged in the past day. Or receive the sum of multiple fields... I'm not to sure where to begin.
The documentation assumes some knowledge with how Elasticsearch works, so the reference guide is also a great resource to understand what APIs are available and how they work. All Elasticsearch APIs are available with both Elasticsearch.Net and NEST.
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.