nest 7.17.4
im getting all indexes with
var response = await _searchClient.Cat.IndicesAsync(c => c.AllIndices());
var logIndexes = response.Records.Select(a => a.Index).ToArray();
but not the creation date (not included in results)
any ideas ?
Thx