Kibana Dashboard is not getting updated with latest data

Hello @jsanz ,

Below is the Kibana.yml and elasticsearch.yml configurations.

kibana.yml

server.host: "HOSTNAME"
server.basePath: "/kibana-prod"
server.rewriteBasePath: true
elasticsearch.hosts: ["http://localhost:8800", "http://localhost:8900", "http://localhost:9000"]
path.data: /PATH/kibana/1/data
logging.dest: /PATH/1/log/kibana.log
logging.rotate.enabled: true
logging.quiet: true

elasticsearch.username: "USERNAME"
elasticsearch.password: "PASSWORD"

elasticsearch.yml

cluster.name: CLUSTERNAME
node.name: prod-node-1
cluster.initial_master_nodes:
- prod-node-1
- prod-node-2
- prod-node-3
discovery.zen.minimum_master_nodes: 2
node.master: true
node.data: true
path.data: /PATH/elasticsearch/1/lib
path.logs: /PATH/elasticsearch/1/logs
http.port: 8800
bootstrap.memory_lock: true

xpack.security.enabled: true
xpack.security.authc.realms:
native.native1:
order: 0

And as per above conversation, seems Elasticsearch running fine on instance.
curl -X GET "http://localhost:8800" -u USERNAME:PASSWORD
{
"name" : "test-node-1",
"cluster_name" : "CLUSTERNAME",
"cluster_uuid" : "CLUSTERUID",
"version" : {
"number" : "7.8.0",
"build_flavor" : "default",
"build_type" : "tar",
"build_hash" : "HASHCODE",
"build_date" : "2020-06-14T19:35:50.234439Z",
"build_snapshot" : false,
"lucene_version" : "8.5.1",
"minimum_wire_compatibility_version" : "6.8.0",
"minimum_index_compatibility_version" : "6.0.0-beta1"
},
"tagline" : "You Know, for Search"
}

Could you please assist me what I am missing.

Thanks in advance.