alexus
December 31, 2018, 4:50am
1
I'm still getting same behavior w/ 6.5.4 as well:
Unable to fetch data from kibana collector - Kibana - Discuss the Elastic Stack
@chrisronline - I'm not getting anything else in logs.
After I set logging.verbose
to true
, I now see
Fetching data from kibana collector
right before:
Unable to fetch data from kibana collector
another message that I found closest to error is:
not sending [kibana_settings] monitoring document because [undefined] is null or invalid.
not sure if that's related or not or maybe just caused by initial error.
Please advise.
Hi @alexus ,
I'm honestly not sure. Per the code , there should be an error message logged right before the Unable to fetch data from kibana collector
. But we can try and figure out what is happening in the kibana collector that might cause an error.
Can you run this query and post the results?
POST .kibana*/_search
{
"size": 0,
"query": {
"terms": {
"type": [
"dashboard",
"visualization",
"search",
"index-pattern",
"graph-workspace",
"timelion-sheet"
]
}
},
"aggs": {
"types": {
"terms": {
"field": "type",
"size": 6
}
}
}
}
alexus
January 2, 2019, 8:42pm
3
{
"took" : 20,
"timed_out" : false,
"_shards" : {
"total" : 16,
"successful" : 16,
"skipped" : 0,
"failed" : 0
},
"hits" : {
"total" : x,
"max_score" : 0.0,
"hits" : [ ]
},
"aggregations" : {
"types" : {
"doc_count_error_upper_bound" : 0,
"sum_other_doc_count" : 0,
"buckets" : [
{
"key" : "visualization",
"doc_count" : x
},
{
"key" : "search",
"doc_count" : x
},
{
"key" : "dashboard",
"doc_count" : x
},
{
"key" : "index-pattern",
"doc_count" : x
}
]
}
}
}
I'm not seeing anything suspicious there. I'll continue to look and let you know if I find anything
alexus
January 7, 2019, 3:49pm
5
Thank you, I appreciate it.
system
(system)
Closed
February 4, 2019, 3:49pm
6
This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.