kibana-7

Geopandas dataframe to GeoJSON to Elasticsearch index?

六眼飞鱼酱① 提交于 2021-02-10 14:44:51
问题 I've a question that is related to this question: I'm relatively new to python and now have started to visualize in Kibana, which I'm brand new at (as in, I've never used it before). Now I have a pandas datafram geoseries like this: ID Geometry 0 9417 POLYGON ((229611.185 536552.731, 229611.100 53... 1 3606 POLYGON ((131122.280 460609.117, 131108.312 46... 2 1822 POLYGON ((113160.653 517762.384, 113169.755 51... 3 7325 POLYGON ((196861.725 470370.632, 196869.990 47... 4 9258 POLYGON ((201372

Cannot start Kibana 7.5.0 Fatal Error have not done any changes in configuration file

╄→гoц情女王★ 提交于 2021-02-08 04:31:47
问题 Getting FATAL Error when starting Kibana 7.5, i have not configured anything i am just running elasticsearch.bat (also v7.5) and kibana.bat '{"error":{"root_cause":[{"type":"mapper_parsing_exception","reason":"No handler for type [flattened] declared on field [state]"}],"type":"mapper_parsing_exception", "reason":"Failed to parse mapping [_doc]: No handler for type [flattened] declared on field [state]", "caused_by":{"type":"mapper_parsing_exception","reason":"No handler for type [flattened]

Cannot start Kibana 7.5.0 Fatal Error have not done any changes in configuration file

两盒软妹~` 提交于 2021-02-08 04:31:12
问题 Getting FATAL Error when starting Kibana 7.5, i have not configured anything i am just running elasticsearch.bat (also v7.5) and kibana.bat '{"error":{"root_cause":[{"type":"mapper_parsing_exception","reason":"No handler for type [flattened] declared on field [state]"}],"type":"mapper_parsing_exception", "reason":"Failed to parse mapping [_doc]: No handler for type [flattened] declared on field [state]", "caused_by":{"type":"mapper_parsing_exception","reason":"No handler for type [flattened]

How to use “OR” in Dev Tool Query

血红的双手。 提交于 2021-01-29 12:51:52
问题 Hi Bellow Search provides me Log where it has both "value": "HB" and "value": "1234567" as, I am using Term, however, What I am looking for this if this match ("value": "HB" OR "value": "TR" ) AND "value": "1234567" but not understanding how to do in below, Can anyone please help me GET _search { "query": { "bool": { "must": [ { "match": {"log.file.path":"mylog.log" } } { "term": { "GPS-LOG.COMMAND": { "value": "HB" } } }, { "term": { "GPS-LOG.IMEI": { "value": "1234567" } } } ], "filter": {

Kibana Tophits on transform group by a field not all field

南笙酒味 提交于 2021-01-05 07:08:19
问题 So I have this case where I need to use top hits on transformation I want to show data based on I have this data email col2 col3 col4 col5 Time a.com a a a a 11:00 a.com a a a a 11:01 a.com a b a a 11:02 I want to remove the duplicate email, and only show it based on the latest time. I'm using transform and aggregate it based on max time. and for the group by I choose every field I needed. It returns data such as : I transform the index and make it groupby : email, col2,col3,col4 and

Kibana v 7.9.2 exact format for hour_minute_second

∥☆過路亽.° 提交于 2020-12-13 03:30:59
问题 I followed and https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping-date-format.html but I could not find the answer that required . I created index using GET film/_mapping Also as per the accepted answer in Elasticsearch: Datatype for time(HH:mm:ss.SSS) field I created my mapping as per below . PUT film/_mapping { "properties": { "filmname": { "type": "keyword" }, "runtime": { "type": "date", "format": "hour_minute_second_fraction" }, "genre": { "type": "text" },