Kibana returns 404

Hi everyone
i have a problem where kibana stopped working at some point without any tinkering with config.

  • I checked the nginx routing etc and that seems to be fine
  • 'security' is not enabled
  • elasticsearch is green
[root@xxx]# curl -i -L -H "Accept: */*" http://localhost:9200
HTTP/1.1 200 OK
content-type: application/json; charset=UTF-8
content-length: 505

{
  "name" : "devpi-logsrv-01-dev",
  "cluster_name" : "devpi-cluster",
  "cluster_uuid" : "obE9p01yS_uodw3pXyAqUg",
  "version" : {
    "number" : "6.6.0",
    "build_flavor" : "default",
    "build_type" : "rpm",
    "build_hash" : "a9861f4",
    "build_date" : "2019-01-24T11:27:09.439740Z",
    "build_snapshot" : false,
    "lucene_version" : "7.6.0",
    "minimum_wire_compatibility_version" : "5.6.0",
    "minimum_index_compatibility_version" : "5.0.0"
  },
  "tagline" : "You Know, for Search"
}
[root@xxx]# curl -i -L -H "Accept: */*" http://localhost:9200/_cat/health
HTTP/1.1 200 OK
content-type: text/plain; charset=UTF-8
content-length: 67

1706826491 22:28:11 devpi-cluster green 2 2 66 51 0 0 0 0 - 100.0%
  • kibana daemon is running and logs indicate no problems
Feb 01 22:15:40 ip-10-245-21-22.dolby.net kibana[2111462]: {"type":"log","@timestamp":"2024-02-01T22:15:40Z","tags":["listening","info"],"pid":2111462,"message":"Server running at http://localhost:5607/+kibana"}
  • my kibana conf
# Kibana is served by a back end server. This setting specifies the port to use.
server.port: 5607

# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
# The default is 'localhost', which usually means remote machines will not be able to connect.
# To allow connections from remote users, set this parameter to a non-loopback address.
#server.host: "localhost"

# Enables you to specify a path to mount Kibana at if you are running behind a proxy.
# Use the `server.rewriteBasePath` setting to tell Kibana if it should remove the basePath
# from requests it receives, and to prevent a deprecation warning at startup.
# This setting cannot end in a slash.
server.basePath: "/+kibana"

# Specifies whether Kibana should rewrite requests that are prefixed with
# `server.basePath` or require that they are rewritten by your reverse proxy.
# This setting was effectively always `false` before Kibana 6.3 and will
# default to `true` starting in Kibana 7.0.
server.rewriteBasePath: true

# The maximum payload size in bytes for incoming server requests.
#server.maxPayloadBytes: 1048576

# The Kibana server's name.  This is used for display purposes.
#server.name: "your-hostname"

# The URL of the Elasticsearch instance to use for all your queries.
#elasticsearch.url: "http://localhost:9200"

# When this setting's value is true Kibana uses the hostname specified in the server.host
# setting. When the value of this setting is false, Kibana uses the hostname of the host
# that connects to this Kibana instance.
#elasticsearch.preserveHost: true

# Kibana uses an index in Elasticsearch to store saved searches, visualizations and
# dashboards. Kibana creates a new index if the index doesn't already exist.
#kibana.index: ".kibana"

# The default application to load.
#kibana.defaultAppId: "home"

# If your Elasticsearch is protected with basic authentication, these settings provide
# the username and password that the Kibana server uses to perform maintenance on the Kibana
# index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
# is proxied through the Kibana server.
#elasticsearch.username: "user"
#elasticsearch.password: "pass"

# Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
# These settings enable SSL for outgoing requests from the Kibana server to the browser.
#server.ssl.enabled: false
#server.ssl.certificate: /path/to/your/server.crt
#server.ssl.key: /path/to/your/server.key

# Optional settings that provide the paths to the PEM-format SSL certificate and key files.
# These files validate that your Elasticsearch backend uses the same key files.
#elasticsearch.ssl.certificate: /path/to/your/client.crt
#elasticsearch.ssl.key: /path/to/your/client.key

# Optional setting that enables you to specify a path to the PEM file for the certificate
# authority for your Elasticsearch instance.
#elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]

# To disregard the validity of SSL certificates, change this setting's value to 'none'.
#elasticsearch.ssl.verificationMode: full

# Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
# the elasticsearch.requestTimeout setting.
#elasticsearch.pingTimeout: 1500

# Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
# must be a positive integer.
#elasticsearch.requestTimeout: 30000

# List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
# headers, set this value to [] (an empty list).
#elasticsearch.requestHeadersWhitelist: [ authorization ]

# Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
# by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
#elasticsearch.customHeaders: {}

# Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
#elasticsearch.shardTimeout: 30000

# Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
#elasticsearch.startupTimeout: 5000

# Logs queries sent to Elasticsearch. Requires logging.verbose set to true.
#elasticsearch.logQueries: false

# Specifies the path where Kibana creates the process ID file.
#pid.file: /var/run/kibana.pid

# Enables you specify a file where Kibana stores log output.
#logging.dest: stdout

# Set the value of this setting to true to suppress all logging output.
#logging.silent: false

# Set the value of this setting to true to suppress all logging output other than error messages.
#logging.quiet: false

# Set the value of this setting to true to log all events, including system usage information
# and all requests.
#logging.verbose: false

# Set the interval in milliseconds to sample system and process performance
# metrics. Minimum is 100ms. Defaults to 5000.
#ops.interval: 5000

# Specifies locale to be used for all localizable strings, dates and number formats.
#i18n.locale: "en"

xpack.monitoring.enabled: true
  • trying to access gives 404
# curl -i -L -H "Accept: */*" http://localhost:5607
HTTP/1.1 404 Not Found
content-type: text/html; charset=utf-8
cache-control: no-cache
content-length: 9
Date: Thu, 01 Feb 2024 22:33:04 GMT
Connection: keep-alive

Not Found
  • port seems to be ok
node      2111462        kibana   18u  IPv4 322605319      0t0  TCP 127.0.0.1:5607 (LISTEN)

i've read similar issues here but could not find any answers in them.
Appreciate any help!

Can you access with?
curl -i -L -H "Accept: */*" http://localhost:5607/kibana

no

# curl -i -L -H "Accept: */*" http://localhost:5607/kibana
HTTP/1.1 404 Not Found
content-type: text/html; charset=utf-8
cache-control: no-cache
content-length: 9
Date: Fri, 02 Feb 2024 10:59:06 GMT
Connection: keep-alive

Add logs in Kibana set to debug mode

non-verbose logs

{"type":"log","@timestamp":"2024-02-02T21:30:02Z","tags":["plugin","warning"],"pid":2162816,"path":"/usr/share/kibana/src/legacy/core_plugins/ems_util","message":"Skipping non-plugin directory at /usr/share/kibana/src/legacy/core_plugins/ems_util"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:kibana@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:elasticsearch@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:xpack_main@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:graph@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:monitoring@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:spaces@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["security","warning"],"pid":2162816,"message":"Generating a random key for xpack.security.encryptionKey. To prevent sessions from being invalidated on restart, please set xpack.security.encryptionKey in kibana.yml"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["security","warning"],"pid":2162816,"message":"Session cookies will be transmitted over insecure connections. This is not recommended."}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:security@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:searchprofiler@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:ml@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:tilemap@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:watcher@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:grokdebugger@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:dashboard_mode@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:logstash@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:beats_management@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:apm@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:elasticsearch@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:interpreter@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:canvas@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:license_management@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:index_management@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:console@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:console_extensions@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:notifications@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:03Z","tags":["status","plugin:index_lifecycle_management@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:infra@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:rollup@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:remote_clusters@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:cross_cluster_replication@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:upgrade_assistant@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:metrics@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:timelion@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["reporting","warning"],"pid":2162816,"message":"Generating a random key for xpack.reporting.encryptionKey. To prevent pending reports from failing on restart, please set xpack.reporting.encryptionKey in kibana.yml"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:reporting@6.6.0","info"],"pid":2162816,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["license","info","xpack"],"pid":2162816,"message":"Imported license information from Elasticsearch for the [data] cluster: mode: basic | status: active"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:xpack_main@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:graph@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:searchprofiler@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:ml@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:tilemap@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:watcher@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:grokdebugger@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:logstash@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:beats_management@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:index_management@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:index_lifecycle_management@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:rollup@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:remote_clusters@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:cross_cluster_replication@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:reporting@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["info","monitoring-ui","kibana-monitoring"],"pid":2162816,"message":"Starting monitoring stats collection"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["status","plugin:security@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:30:04Z","tags":["license","info","xpack"],"pid":2162816,"message":"Imported license information from Elasticsearch for the [monitoring] cluster: mode: basic | status: active"}
{"type":"log","@timestamp":"2024-02-02T21:30:05Z","tags":["reporting","browser-driver","warning"],"pid":2162816,"message":"Enabling the Chromium sandbox provides an additional layer of protection."}
{"type":"log","@timestamp":"2024-02-02T21:30:05Z","tags":["listening","info"],"pid":2162816,"message":"Server running at http://localhost:5607/+kibana"}
{"type":"log","@timestamp":"2024-02-02T21:30:05Z","tags":["status","plugin:spaces@6.6.0","info"],"pid":2162816,"state":"green","message":"Status changed from yellow to green - Ready","prevState":"yellow","prevMsg":"Waiting for Elasticsearch"}

last repeating lines of verbose logs

{"type":"log","@timestamp":"2024-02-02T21:27:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2024-02-02T21:27:42Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Uploading bulk stats payload to the local cluster"}
{"type":"log","@timestamp":"2024-02-02T21:27:44Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:27:45Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:46Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:46Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:46Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:46Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:46Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:46Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:46Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:46Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:47Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:27:49Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:27:50Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:51Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:51Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:51Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:51Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:51Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:51Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:51Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:51Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kql collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_stats collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_settings collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from spaces collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from apm collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from canvas collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from infraops collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from rollups collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from reporting collector"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Uploading bulk stats payload to the local cluster"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["license","debug","xpack"],"pid":2162591,"message":"Calling [data] Elasticsearch _xpack API. Polling frequency: 30001"}
{"type":"log","@timestamp":"2024-02-02T21:27:52Z","tags":["license","debug","xpack"],"pid":2162591,"message":"Calling [monitoring] Elasticsearch _xpack API. Polling frequency: 30001"}
{"type":"log","@timestamp":"2024-02-02T21:27:54Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:27:55Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:56Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:56Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:56Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:56Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:56Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:56Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:56Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:27:56Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:27:57Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:27:59Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:00Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:01Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:01Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:01Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:01Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:01Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:01Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:01Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:01Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kql collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_stats collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_settings collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from spaces collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from apm collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from canvas collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from infraops collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from rollups collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from reporting collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","stats-collection"],"pid":2162591,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2024-02-02T21:28:02Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Uploading bulk stats payload to the local cluster"}
{"type":"log","@timestamp":"2024-02-02T21:28:04Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:06Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:06Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:06Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:06Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:06Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:06Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:06Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:06Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:06Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:07Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:09Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:11Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:11Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:11Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:11Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:11Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:11Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:11Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:11Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:11Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kql collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_stats collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_settings collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from spaces collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from apm collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from canvas collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from infraops collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from rollups collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from reporting collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","stats-collection"],"pid":2162591,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2024-02-02T21:28:12Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Uploading bulk stats payload to the local cluster"}
{"type":"log","@timestamp":"2024-02-02T21:28:14Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:16Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:16Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:16Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:16Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:16Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:16Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:16Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:16Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:16Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:17Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:19Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:21Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:21Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:21Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:21Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:21Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:21Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:21Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:21Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:21Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kql collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_stats collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_settings collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from spaces collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from apm collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from canvas collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from infraops collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from rollups collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from reporting collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","stats-collection"],"pid":2162591,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Uploading bulk stats payload to the local cluster"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["license","debug","xpack"],"pid":2162591,"message":"Calling [data] Elasticsearch _xpack API. Polling frequency: 30001"}
{"type":"log","@timestamp":"2024-02-02T21:28:22Z","tags":["license","debug","xpack"],"pid":2162591,"message":"Calling [monitoring] Elasticsearch _xpack API. Polling frequency: 30001"}
{"type":"log","@timestamp":"2024-02-02T21:28:24Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:26Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:26Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:26Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:26Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:26Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:26Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:26Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:26Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:26Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:27Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:29Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:31Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:31Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:31Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:31Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:31Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:31Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:31Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:31Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:31Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kql collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_stats collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_settings collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from spaces collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from apm collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from canvas collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from infraops collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from rollups collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from reporting collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","stats-collection"],"pid":2162591,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2024-02-02T21:28:32Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Uploading bulk stats payload to the local cluster"}
{"type":"log","@timestamp":"2024-02-02T21:28:35Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:36Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:36Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:36Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:36Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:36Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:36Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:36Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:36Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:36Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:37Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:40Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:41Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:41Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:41Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:41Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:41Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:41Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:41Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:41Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:41Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kql collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_stats collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_settings collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from spaces collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from apm collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from canvas collector"}
[Unit]
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from infraops collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from rollups collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from reporting collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","stats-collection"],"pid":2162591,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:42Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Uploading bulk stats payload to the local cluster"}
{"type":"log","@timestamp":"2024-02-02T21:28:45Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:46Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:46Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:46Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:46Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:46Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:46Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:46Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:46Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:46Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:47Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:50Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:51Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:51Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:51Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:51Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:51Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:51Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:51Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:51Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:51Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kql collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_stats collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from kibana_settings collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from spaces collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from apm collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from canvas collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from infraops collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from rollups collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"Fetching data from reporting collector"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","stats-collection"],"pid":2162591,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Uploading bulk stats payload to the local cluster"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["license","debug","xpack"],"pid":2162591,"message":"Calling [data] Elasticsearch _xpack API. Polling frequency: 30001"}
{"type":"log","@timestamp":"2024-02-02T21:28:52Z","tags":["license","debug","xpack"],"pid":2162591,"message":"Calling [monitoring] Elasticsearch _xpack API. Polling frequency: 30001"}
{"type":"log","@timestamp":"2024-02-02T21:28:55Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:28:56Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:56Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:56Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:56Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:56Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:56Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:56Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:56Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:28:56Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:28:57Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:29:00Z","tags":["plugin","debug"],"pid":2162591,"message":"Checking Elasticsearch version"}
{"type":"log","@timestamp":"2024-02-02T21:29:01Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:29:01Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:29:01Z","tags":["debug","monitoring-ui","kibana-monitoring"],"pid":2162591,"message":"Received Kibana Ops event data"}
{"type":"log","@timestamp":"2024-02-02T21:29:01Z","tags":["debug","legacy-proxy"],"pid":2162591,"message":"\"getConnections\" has been called."}

first bunch of verbose logs

 {"type":"log","@timestamp":"2024-02-02T21:35:34Z","tags":["debug","config"],"pid":2163080,"message":"Marking config path as handled: server"}
{"type":"log","@timestamp":"2024-02-02T21:35:34Z","tags":["debug","http"],"pid":2163080,"message":"registering route handler for [/core]"}
{"type":"log","@timestamp":"2024-02-02T21:35:34Z","tags":["debug","root"],"pid":2163080,"message":"starting root"}
{"type":"log","@timestamp":"2024-02-02T21:35:34Z","tags":["debug","config"],"pid":2163080,"message":"Marking config path as handled: logging"}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","server"],"pid":2163080,"message":"starting server"}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","http","server"],"pid":2163080,"message":"starting http server"}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","http","server"],"pid":2163080,"message":"http server running at http://localhost:5607/+kibana"}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","plugins-service"],"pid":2163080,"message":"Starting plugins service"}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","config"],"pid":2163080,"message":"Marking config path as handled: plugins"}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","plugins-discovery"],"pid":2163080,"message":"Discovering plugins..."}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","plugins-discovery"],"pid":2163080,"message":"Scanning \"/src/plugins\" for plugin sub-directories..."}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","plugins-discovery"],"pid":2163080,"message":"Scanning \"/plugins\" for plugin sub-directories..."}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","plugins-discovery"],"pid":2163080,"message":"Scanning \"/kibana-extra\" for plugin sub-directories..."}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","plugins-service"],"pid":2163080,"message":"Discovered 0 plugins."}
{"type":"log","@timestamp":"2024-02-02T21:35:35Z","tags":["debug","legacy-service"],"pid":2163080,"message":"starting legacy service"}
{"type":"log","@timestamp":"2024-02-02T21:35:36Z","tags":["debug","config"],"pid":2163080,"message":"Marking config path as handled: server"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/node_modules/x-pack","message":"Found plugin at /usr/share/kibana/node_modules/x-pack"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/apm_oss","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/apm_oss"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/console","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/console"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/elasticsearch","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/elasticsearch"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","warning"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/ems_util","message":"Skipping non-plugin directory at /usr/share/kibana/src/legacy/core_plugins/ems_util"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/input_control_vis","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/input_control_vis"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/inspector_views","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/inspector_views"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/interpreter","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/interpreter"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/kbn_doc_views","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/kbn_doc_views"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/kbn_vislib_vis_types","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/kbn_vislib_vis_types"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/kibana","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/kibana"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/markdown_vis","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/markdown_vis"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/metric_vis","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/metric_vis"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/metrics","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/metrics"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/state_session_storage_redirect","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/state_session_storage_redirect"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/region_map","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/region_map"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/status_page","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/status_page"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/table_vis","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/table_vis"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/tagcloud","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/tagcloud"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/tile_map","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/tile_map"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/timelion","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/timelion"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["plugin","debug"],"pid":2163080,"path":"/usr/share/kibana/src/legacy/core_plugins/vega","message":"Found plugin at /usr/share/kibana/src/legacy/core_plugins/vega"}
{"type":"log","@timestamp":"2024-02-02T21:35:41Z","tags":["debug","legacy-proxy"],"pid":2163080,"message":"\"getConnections\" has been called."}
{"type":"log","@timestamp":"2024-02-02T21:35:42Z","tags":["debug","optimize"],"pid":2163080,"message":"All bundles are cached and ready to go!"}
{"type":"log","@timestamp":"2024-02-02T21:35:42Z","tags":["plugins","debug"],"pid":2163080,"plugin":{"name":"kibana","version":"kibana","config":{"@elastic/eslint-import-resolver-kibana":{"projectRoot":false}}},"message":"Initializing plugin kibana@kibana"}
{"type":"log","@timestamp":"2024-02-02T21:35:42Z","tags":["status","plugin:kibana@6.6.0","info"],"pid":2163080,"state":"green","message":"Status changed from uninitialized to green - Ready","prevState":"uninitialized","prevMsg":"uninitialized"}
{"type":"log","@timestamp":"2024-02-02T21:35:42Z","tags":["plugins","debug"],"pid":2163080,"plugin":{"name":"elasticsearch","version":"kibana","types":"index.d.ts"},"message":"Initializing plugin elasticsearch@kibana"}
{"type":"log","@timestamp":"2024-02-02T21:35:42Z","tags":["status","plugin:elasticsearch@6.6.0","info"],"pid":2163080,"state":"yellow","message":"Status changed from uninitialized to yellow - Waiting for Elasticsearch","prevState":"uninitialized","prevMsg":"uninitialized"}

let me know if you'd prefer a bigger verbose logfile

any ideas? do you need more context? thanks in advance

Is it ES up and running and do you have >15% of free disk space?

6.6 is a way too old. We are at 8.12 nowadays.

David, it's just "old". Few days ago, someone ask for a help on 2.x. :blush:

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