From 78b000c694cbf30ed510ab63bc2458bdc001393c Mon Sep 17 00:00:00 2001 From: Grzegorz Piwowarek Date: Tue, 2 Jul 2024 13:56:47 +0200 Subject: [PATCH] kibana_sample_data_logs.extension as 'text' and not 'keyword' (#430) The default Kibana dashboard expects `extension` to be of a `text` type and not `keyword` Before: ![Screenshot 2024-07-02 at 10 59 29](https://github.com/QuesmaOrg/quesma/assets/2182533/d1040398-c01c-469c-9d49-0ec47b6f067e) After: ![Screenshot 2024-07-02 at 11 00 27](https://github.com/QuesmaOrg/quesma/assets/2182533/d35ddcfc-01ef-4bd7-a1cf-27eee10a68bd) --- docker/quesma/config/local-dev.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker/quesma/config/local-dev.yaml b/docker/quesma/config/local-dev.yaml index 9cd2e29ad..8d4df9d42 100644 --- a/docker/quesma/config/local-dev.yaml +++ b/docker/quesma/config/local-dev.yaml @@ -34,6 +34,7 @@ indexes: ip: "ip" clientip: "ip" geo::coordinates: "point" + extension: "text" aliases: timestamp: source: "timestamp"