index naming was not using utc time zone.
Original commit: elastic/x-pack-elasticsearch@aca5d5bda6
This commit is contained in:
parent
4f001a9981
commit
4e9c735737
|
@ -73,7 +73,7 @@ public class ESExporter extends AbstractLifecycleComponent<ESExporter> implement
|
||||||
hosts = settings.getAsArray("hosts", new String[]{"localhost:9200"});
|
hosts = settings.getAsArray("hosts", new String[]{"localhost:9200"});
|
||||||
indexPrefix = settings.get("index.prefix", "marvel");
|
indexPrefix = settings.get("index.prefix", "marvel");
|
||||||
String indexTimeFormat = settings.get("index.timeformat", "YYYY.MM.dd");
|
String indexTimeFormat = settings.get("index.timeformat", "YYYY.MM.dd");
|
||||||
indexTimeFormatter = DateTimeFormat.forPattern(indexTimeFormat);
|
indexTimeFormatter = DateTimeFormat.forPattern(indexTimeFormat).withZoneUTC();
|
||||||
|
|
||||||
timeout = (int) settings.getAsTime("timeout", new TimeValue(6000)).seconds();
|
timeout = (int) settings.getAsTime("timeout", new TimeValue(6000)).seconds();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue