There is a problem with this saved object

I'm getting very inconsistent results from my elastic stack.

Saved searches, visualizations, and dashboards all sporadically return:

There is a problem with this saved object

This most prevalent when I have two computers open at once. I create a saved search, and then a visualization from that search, and then a dashboard including that visualization. Then open up kibana on a second computer and load the dashboard if it is there, which after many reloads it might appear, but there will be the above warning about missing saved objects, whereas simultaneously on the first computer it will work fine.

Any ideas about what is going wrong in this instance?

the whole stack was brought up using the example here:

although I did update the versions to 6.5.4

Hello,

When you have the whole stack in the same machine - Kibana connects as localhost. I see that in the config file you have used: 'http://127.0.0.1:9200'

You need to configure Kibana's ip if you want to use it from different machines.

`server.name:`
**Default: "your-hostname"**  A human-readable display name that identifies this Kibana instance.

`server.port:`
**Default: 5601**  Kibana is served by a back end server. This setting specifies the port to use.

https://www.elastic.co/guide/en/kibana/current/settings.html

Thanks,
Bhavya

Unfortunately that is not the issue, I have swapped out the IP in that example for the address that is exposed in the kubernetes cluster:

 k get svc elasticsearch                                                                                                                                                                                                                                                                       
NAME            TYPE           CLUSTER-IP      EXTERNAL-IP   PORT(S)          AGE
elasticsearch   LoadBalancer   10.105.60.152   10.0.23.243   9200:32273/TCP   10d
grep 10.0.23 kibana-rc.yaml
value: 'http://10.0.23.243:9200'

@joshdover any inputs?

Thanks,
Bhavya

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.