Is it possible to change elasticsearch time-based? The time in kibana is correct, but my data appears one hour late on the dashboards.
What can I do?
Is it possible to change elasticsearch time-based? The time in kibana is correct, but my data appears one hour late on the dashboards.
What can I do?
ES assumes data is in UTC and stores it as such unless you specify a timezone offset.
How are you loading it into ES?
I use Elasticsearch.Net/NEST.
warkolm how can I do this? In the connection settings, or during data loading?
var node = new Uri("http://" + mElasticsearchServer + ":" + mElasticsearchPort);
var settings = new ConnectionSettings(node);
Client = new ElasticClient(settings);
var result = Client.Bulk(b => b.IndexMany(testData)
.Index(Index));
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.
© 2020. All Rights Reserved - Elasticsearch
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.