kibana-5

I have a data file.I want to insert that data in to elastic search- kibana. Is there any automated way I can do this?

允我心安 提交于 2020-01-25 11:06:07
问题 I have a data file.I want to insert that data in to elastic search- kibana. Is there any automated way I can do this? link - deliver-events-to-s3-7-2019-06-04-03-49-01-5df38ba9-86c0-4860-b51f-2c0d30132d6f 回答1: 1. In your Kibana, You will see the menu called 'Machine Learning'. Click~! 2. Go to 'Data Visualizer' and click 'Upload file'. 3. Drag your file here. 4. And then click 'Import' at the bottom. 5. Type an index name. And Import~! 6. Finally, view your index. 来源: https://stackoverflow

Mappings on filed Elastic Search

狂风中的少年 提交于 2020-01-07 02:47:06
问题 I am using elastic search for autocompletion and also to correct spelling mistakes.I have this mapping for my field(for auto-completion). **Mapping:** "name": { "type": "text", "analyzer": "autocomplete" } Now i want to implement phrase suggester on this field.When i use this it is giving wrong result.Thats because of existing mapping i think. **POST XYZ/_search** { "suggest": { "text": "ipone 16", "simple_phrase": { "phrase": { "field": "name", "highlight": { "pre_tag": "<em>", "post_tag": "

Mappings on filed Elastic Search

∥☆過路亽.° 提交于 2020-01-07 02:47:05
问题 I am using elastic search for autocompletion and also to correct spelling mistakes.I have this mapping for my field(for auto-completion). **Mapping:** "name": { "type": "text", "analyzer": "autocomplete" } Now i want to implement phrase suggester on this field.When i use this it is giving wrong result.Thats because of existing mapping i think. **POST XYZ/_search** { "suggest": { "text": "ipone 16", "simple_phrase": { "phrase": { "field": "name", "highlight": { "pre_tag": "<em>", "post_tag": "

Kibana 6.3.0 - “Share saved dashboard” - short dashboard

北慕城南 提交于 2020-01-06 05:53:28
问题 How to get short url for "Share saved dashboard" options. Now it is giving some very lengthy url . it is very tough to share the url. kibana have build in option for "Share Snapshot" not for Saved dashboard. any solution 来源: https://stackoverflow.com/questions/51183987/kibana-6-3-0-share-saved-dashboard-short-dashboard

How to import/export a dashboard in Kibana using a RESTful API

Deadly 提交于 2020-01-02 06:29:12
问题 I would like to use a HTTP method to post new dashboards to my local Kibana instance, but I couldn't find much documentation on using an API to do this. There was a pull request on Kibana that mentioned it was adding this functionality, but there was limited documentation on how to use it: https://github.com/elastic/kibana/pull/10858 An example of a dashboard I'm trying to post: { "_id": "12345678-1234-1234-1234-1234567890op", "_type": "dashboard", "_source": { "title": "my-app", "hits": 0,

kibana read only dashboard

不想你离开。 提交于 2019-12-25 08:30:46
问题 I am trying to configure roles to a user to give him access to dashboard but only in read only mode:this "read only" user can see a dashboard but cannot save modifications. I tried several solutions : x-pack I tried to install x-pack but I do not understand wih permissions I should give to my "read only" user. Change kibana settings I tried to change kibana settings : PUT .kibana/_settings { "index.blocks.read_only" : false } It works fine but nobody can change the dashboard anymore Embedded

How can I apply a threshold for a bar graph in Kibana?

我只是一个虾纸丫 提交于 2019-12-12 00:37:51
问题 I've gone through this particular ticket, which pretty much talks about adding a threshold line, to a line graph . In my case, I'm having a bar graph like this where I need to have a threshold, lets say for example in the above graph itself I should be able to show the difference in each and every bar. In other words as per the above graph, it's displaying the sum of chargeamount according to the filter I've given. What I need to do is, to show the difference using a color in the same bar

How to get array count of nested object in elastic-search

删除回忆录丶 提交于 2019-12-11 14:38:25
问题 Can someone please help me to get an aggregated count of the nested object in elastic search, let say if my elastic search object mapping as : { "employe": { "dynamic": "strict", "properties": { "empId":{ "type": "keyword" }, "entities": { "type": "nested" } } } } entities are the type of array with some other object. I wanted to get the count of entities of the filtered item. I have tried some elastic search query, but it does not work { "query": { "bool": { "filter": [ { "terms": { "empId":

Kibana 5.5.1 behind a nginx 1.13 proxy (dockerized)

守給你的承諾、 提交于 2019-12-10 06:56:57
问题 Goal: I want to run the elk stack in a docker container. To be able to access the ELK Stack over a nginx proxy to bypass the individual ports for the services. The Kibana service (default port 5601) http://<server>.com:5601 should be reachable over the following address: http://<server>.com/kibana Problem: The problem is, that it is not possible to reach the kibana site after I add the server.basePath setting to the config. I only can bring up the service if I add every base api call of

Convert Elasticsearch kibana query string format to URI Search format

核能气质少年 提交于 2019-12-06 10:28:15
问题 From last week I'm working with Elastic Search Service on AWS. My current version of Elasticseach is 6.X.X and Kibana 6.X.X, Now I'm little bit flexible with the query format that runs on Kibana Client. But my problem is I'm not able to convert the queries to URI format that'll run on Browser URL/Postman . For example: How can I convert it to URI Search format?. GET my_index/_search { "query": { "geo_bounding_box": { "location": { "top_left": { "lat": 42, "lon": -72 }, "bottom_right": { "lat"