kibana-4

kibana server.basePath results in 404

∥☆過路亽.° 提交于 2020-01-13 10:38:07
问题 I am running kibana 4.4.1 on RHEL 7.2 Everything works when the kibana.yml file does not contain the setting server.basePath . Kibana successfully starts and spits out the message [info][listening] Server running at http://x.x.x.x:5601/ curl http://x.x.x.x:5601/app/kibana returns the expected HTML. However, when basePath is set to server.basePath: "/kibana4" , http://x.x.x.x:5601/kibana4/app/kibana results in a 404. Why? The server successfully starts with the same logging [info][listening]

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

Elasticsearch scan and scroll - add to new index

∥☆過路亽.° 提交于 2020-01-05 13:11:53
问题 Elasticsearch and command line programming noobie question. I have elasticsearch set up locally on my computer and want to pull documents from a server that uses a different version of es using the scan and scroll api and add them into my index. I am having trouble figuring out how to do this with the bulk api for es. Right now in my testing phase I am just pulling a few documents from the server using the following code (which works): http MY-OLD-ES.com:9200/INDEX/TYPE/_search?size=1000 | jq

Elasticsearch scan and scroll - add to new index

点点圈 提交于 2020-01-05 13:11:05
问题 Elasticsearch and command line programming noobie question. I have elasticsearch set up locally on my computer and want to pull documents from a server that uses a different version of es using the scan and scroll api and add them into my index. I am having trouble figuring out how to do this with the bulk api for es. Right now in my testing phase I am just pulling a few documents from the server using the following code (which works): http MY-OLD-ES.com:9200/INDEX/TYPE/_search?size=1000 | jq

Kibana 4 detects geodata but doesn't display any results on the map

六月ゝ 毕业季﹏ 提交于 2020-01-04 04:12:10
问题 I have created an Elasticsearch index from a data set containing geodata. I have set up mapping for the data. Then I tried to create Kibana visualisation using this data set. Kibana detects the geodata property but finds no result even though there plenty of. Then I ran a test on another data set with different and much simpler layout, and Kibana properly visualised geodata. Here's the sample that works: "location": { "lat": 56.290525, "lon": -30.163298 }, and this is its mapping: "location":

Not seeing any Fields for a non-Count Y-Axis aggregation

空扰寡人 提交于 2020-01-03 14:21:07
问题 I'm trying to graph out average response time from http logs. When I go to Visualize and try either a bar or line graph, any time that select a different Aggregation type besides Count(ie Average, Sum, Max, etc), I never get any values in the Field drop down. I believe that the X-Axis should/could just be a Date Histogram. My query looks like this: "host:'hostname' AND file:'access.log'", which generates a ton of results as a Count, but again, can't seem to figure out how to graph out that

Mapping for Nested JSON document in Elasticsearch

浪子不回头ぞ 提交于 2019-12-25 13:31:22
问题 I have inserted the following JSON document into ElasticSearch. { "AppName": "undefined", "CPUs": 8, "Errors": 0, "Forms": 2, "Group": "Unknown", "Language": "en-GB", "UserName": "user.name", "msgType": "234", "bent": "{ \"ActiveT\": 6, \"ErrorM\": \"None\", \"Except\": \"None\", \"HadErr\": \"false\", \"HM\": 62, \"NHM\": 57, \"Parameter\": \"14331232706\", \"ReturnCode\": \"3050\", \"Severity\": \"info\", \"Timestamp\": \"Tue July0209: 58: 16NZST2015\", \"TId\": \"9891319709\", \"UserInfo\"

Mapping for Nested JSON document in Elasticsearch

烈酒焚心 提交于 2019-12-25 13:31:02
问题 I have inserted the following JSON document into ElasticSearch. { "AppName": "undefined", "CPUs": 8, "Errors": 0, "Forms": 2, "Group": "Unknown", "Language": "en-GB", "UserName": "user.name", "msgType": "234", "bent": "{ \"ActiveT\": 6, \"ErrorM\": \"None\", \"Except\": \"None\", \"HadErr\": \"false\", \"HM\": 62, \"NHM\": 57, \"Parameter\": \"14331232706\", \"ReturnCode\": \"3050\", \"Severity\": \"info\", \"Timestamp\": \"Tue July0209: 58: 16NZST2015\", \"TId\": \"9891319709\", \"UserInfo\"

How to plot aggregated data in kibana

放肆的年华 提交于 2019-12-25 07:21:36
问题 I'm a newbie to kibana. I have following data stored in ES: { "_index": "test", "_type": "impressions", "_id": "AVZ4QLgkLqvQLIzbvF4e", "_version": 1, "_score": 1, "_source": { "campaign_id": "1011", "count": 691, "played_dt": "2016-01-02" } } So, basically I have counts per campaign_id which is already aggregated data. I want a simple bar chart which plots counts per campaign_id where X axis is campaign_id and Y axis is it's count. I'm getting hits for that specific campaign_id as unique

Kibana doesn't show results on tile map

落花浮王杯 提交于 2019-12-24 14:48:00
问题 I have approximately 3300 documents with geo_point typed field filled. When I try to visualize my documents on the tile map, kibana says "no results found". I've already tried putting coordinates as: - geohash in string - [lon, lat] array - object with "lat" and "lon" properties - string "lat,lon" All these ways of setting geo_point are allowed according to ES docs. Kibana detects this field as geo_point (there is a globe icon near field name), but nothing shows up on tile map. What's wrong