Elastic time-based Data

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?

1 Like

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.