Heartbeat-Elastic 7.10 unable to display details [search_phase_execution_exception]

Versions
Kibana: 7.7.0
APM Server: (if relevant)
Elasticsearch: 7.10.0
Heartbeat: 7.10

After I have upgraded to version 7.10 (Heartbeat-Elastic) the table below is not showing up. Below is my heartbeat.yml, please assist.

################### Heartbeat Configuration Example #########################

# This file is an example configuration file highlighting only some common options.
# The heartbeat.reference.yml file in the same directory contains all the supported options
# with detailed comments. You can use it for reference.
#
# You can find the full configuration reference here:
# https://www.elastic.co/guide/en/beats/heartbeat/index.html

############################# Heartbeat ######################################

# Define a directory to load monitor definitions from. Definitions take the form
# of individual yaml files.
heartbeat.config.monitors:
  # Directory + glob pattern to search for configuration files
  path: ${path.config}/monitors.d/*.yml
  # If enabled, heartbeat will periodically check the config.monitors path for changes
  reload.enabled: true
  # How often to check for changes
  reload.period: 5s

# Configure monitors inline
heartbeat.monitors:
- type: icmp
  # schedule: '* 1 * * * * *'
  schedule: '@every 900s'
  hosts: ["10.0.106.144"]
  ipv4: true
  ipv6: true
  mode: any
  timeout: 16s
  wait: 1s

- type: tcp
  schedule: '@every 900s'
  hosts: ["10.0.106.144:9200"]
  mode: any

- type: http
  # ID used to uniquely identify this monitor in elasticsearch even if the config changes
  id: my-monitor
  # Human readable display name for this service in Uptime UI and elsewhere
  name: My Monitor
  # List or urls to query
  urls: ["http://10.0.106.144:9200"]
  # Configure task schedule
  schedule: '@every 10s'
  # Total test connection and data exchange timeout
  #timeout: 16s
  # Name of corresponding APM service, if Elastic APM is in use for the monitored service.
  #service_name: my-apm-service-name

# ======================= Elasticsearch template setting =======================

setup.template.settings:
  index.number_of_shards: 1
  index.codec: best_compression
  index.number_of_replicas: 0
  #_source.enabled: false

# ================================== General ===================================

# The name of the shipper that publishes the network data. It can be used to group
# all the transactions sent by a single shipper in the web interface.
#name:

# The tags of the shipper are included in their own field with each
# transaction published.
#tags: ["service-X", "web-tier"]

# Optional fields that you can specify to add additional information to the
# output.
#fields:
#  env: staging


# =================================== Kibana ===================================

# Starting with Beats version 6.0.0, the dashboards are loaded via the Kibana API.
# This requires a Kibana endpoint configuration.
setup.kibana:

  # Kibana Host
  # Scheme and port can be left out and will be set to the default (http and 5601)
  # In case you specify and additional path, the scheme is required: http://localhost:5601/path
  # IPv6 addresses should always be defined as: https://[2001:db8::1]:5601
  host: "10.0.106.144:5910"
  username: "elastic"
  password: "LARCadmin2011"

  # Kibana Space ID
  # ID of the Kibana Space into which the dashboards should be loaded. By default,
  # the Default Space will be used.
  #space.id:

# =============================== Elastic Cloud ================================

# These settings simplify using Heartbeat with the Elastic Cloud (https://cloud.elastic.co/).

# The cloud.id setting overwrites the `output.elasticsearch.hosts` and
# `setup.kibana.host` options.
# You can find the `cloud.id` in the Elastic Cloud web UI.
#cloud.id:

# The cloud.auth setting overwrites the `output.elasticsearch.username` and
# `output.elasticsearch.password` settings. The format is `<user>:<pass>`.
#cloud.auth:

# ================================== Outputs ===================================

# Configure what output to use when sending the data collected by the beat.

# ---------------------------- Elasticsearch Output ----------------------------
output.elasticsearch:
  # Array of hosts to connect to.
  # hosts: ["localhost:9200"]
  hosts: ["10.0.106.144:9200"]
  
  # Protocol - either `http` (default) or `https`.
  #protocol: "https"

  # Authentication credentials - either API key or username/password.
  #api_key: "id:api_key"
  #username: "elastic"
  #password: "changeme"
  username: "elastic"
  password: "LARCadmin2011"

  setup.template.name: "heartbeat"
  setup.template.pattern: "heartbeat-*"

# ------------------------------ Logstash Output -------------------------------
#output.logstash:
  # The Logstash hosts
  #hosts: ["localhost:5044"]

  # Optional SSL. By default is off.
  # List of root certificates for HTTPS server verifications
  #ssl.certificate_authorities: ["/etc/pki/root/ca.pem"]

  # Certificate for SSL client authentication
  #ssl.certificate: "/etc/pki/client/cert.pem"

  # Client Certificate Key
  #ssl.key: "/etc/pki/client/cert.key"

# ================================= Processors =================================

processors:
  - add_observer_metadata: ~
      # Optional, but recommended geo settings for the location Heartbeat is running in
      #geo:
        # Token describing this location
        #name: us-east-1a
        # Lat, Lon "
        #location: "37.926868, -78.024902"

  - add_host_metadata: ~
# ================================== Logging ===================================

# Sets log level. The default log level is info.
# Available log levels are: error, warning, info, debug
logging.level: info
logging.to_files: true
logging.files:
  path: /var/log/heartbeat-elastic
  name: heartbeat-elastic
  keepfiles: 7
  permissions: 0644
# At debug level, you can selectively enable logging only for some components.
# To enable all selectors use ["*"]. Examples of other selectors are "beat",
# "publish", "service".
#logging.selectors: ["*"]

setup.ilm.enabled: false
setup.ilm.check_exists: false
setup.ilm.rollover_alias: "heartbeat"
setup.ilm.pattern: "{now/d}-000001"

# ============================= X-Pack Monitoring ==============================
# Heartbeat can export internal metrics to a central Elasticsearch monitoring
# cluster.  This requires xpack monitoring to be enabled in Elasticsearch.  The
# reporting is disabled by default.

# Set to true to enable the monitoring reporter.
#monitoring.enabled: false

# Sets the UUID of the Elasticsearch cluster under which monitoring data for this
# Heartbeat instance will appear in the Stack Monitoring UI. If output.elasticsearch
# is enabled, the UUID is derived from the Elasticsearch cluster referenced by output.elasticsearch.
#monitoring.cluster_uuid:

# Uncomment to send the metrics to Elasticsearch. Most settings from the
# Elasticsearch output are accepted here as well.
# Note that the settings should point to your Elasticsearch *monitoring* cluster.
# Any setting that is not set is automatically inherited from the Elasticsearch
# output configuration, so if you have the Elasticsearch output configured such
# that it is pointing to your Elasticsearch monitoring cluster, you can simply
# uncomment the following line.
#monitoring.elasticsearch:

# ============================== Instrumentation ===============================

# Instrumentation support for the heartbeat.
#instrumentation:
    # Set to true to enable instrumentation of heartbeat.
    #enabled: false

    # Environment in which heartbeat is running on (eg: staging, production, etc.)
    #environment: ""

    # APM Server hosts to report instrumentation results to.
    #hosts:
    #  - http://localhost:8200

    # API Key for the APM Server(s).
    # If api_key is set then secret_token will be ignored.
    #api_key:

    # Secret token for the APM Server(s).
    #secret_token:


# ================================= Migration ==================================

# This allows to enable 6.7 migration aliases
#migration.6_to_7.enabled: true

Can you check your kibana logs? There should be more details there, it appears to be performance related if I had to guess. Nothing should have changed performance-wise for the query behind that error, so it's a bit surprising.

:"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}

I have this error on the Kibana, what does this indicate?

Will I need to upgrade the Kibana to resolve this problem.

Can you please, please, please post the entire error you are seeing, not just part of it. The entire thing adds context, and simply posting what you think might be relevant only makes trying to help you harder.

{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","basic","basic"],"pid":29204,"message":"Trying to authenticate via state."}
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","basic","basic"],"pid":29204,"message":"Trying to authenticate user request to /api/upt
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","basic","basic"],"pid":29204,"message":"Trying to authenticate via state."}
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","basic","basic"],"pid":29204,"message":"Trying to authenticate user request to /api/upt}
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","basic","basic"],"pid":29204,"message":"Trying to authenticate via state."}
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","basic","basic"],"pid":29204,"message":"Request has been authenticated via state."}
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","basic","basic"],"pid":29204,"message":"Request has been authenticated via state."}
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","basic","basic"],"pid":29204,"message":"Request has been authenticated via state."}
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","api-authorization"],"pid":29204,"message":"User authorized for \"/api/uptime/filters?d
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","api-authorization"],"pid":29204,"message":"User authorized for \"/api/uptime/ping/hist
{"type":"log","@timestamp":"2020-12-04T02:56:52Z","tags":["debug","plugins","security","api-authorization"],"pid":29204,"message":"User authorized for \"/api/uptime/snapshot/
{"type":"response","@timestamp":"2020-12-04T02:56:52Z","tags":["access:uptime-read"],"pid":29204,"method":"get","statusCode":200,"req":{"url":"/api/uptime/filters?dateRangeSts":{"host":"10.0.106.144:5910","connection":"keep-alive","kbn-version":"7.7.0","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) ion/json","accept":"*/*","referer":"http://10.0.106.144:5910/app/uptime","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"10.4.12.208","/app/uptime"},"res":{"statusCode":200,"responseTime":74,"contentLength":9},"message":"GET /api/uptime/filters?dateRangeStart=now-15m&dateRangeEnd=now&search= 200 74ms - 9.0B"
{"type":"response","@timestamp":"2020-12-04T02:56:52Z","tags":["access:uptime-read"],"pid":29204,"method":"get","statusCode":200,"req":{"url":"/api/uptime/ping/histogram?date"10.0.106.144:5910","connection":"keep-alive","kbn-version":"7.7.0","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0accept":"*/*","referer":"http://10.0.106.144:5910/app/uptime","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"10.4.12.208","userAgent":"},"res":{"statusCode":200,"responseTime":74,"contentLength":9},"message":"GET /api/uptime/ping/histogram?dateStart=now-15m&dateEnd=now 200 74ms - 9.0B"}
{"type":"response","@timestamp":"2020-12-04T02:56:52Z","tags":["access:uptime-read"],"pid":29204,"method":"get","statusCode":200,"req":{"url":"/api/uptime/snapshot/count?date":{"host":"10.0.106.144:5910","connection":"keep-alive","kbn-version":"7.7.0","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Con/json","accept":"*/*","referer":"http://10.0.106.144:5910/app/uptime","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"10.4.12.208","uapp/uptime"},"res":{"statusCode":200,"responseTime":75,"contentLength":9},"message":"GET /api/uptime/snapshot/count?dateRangeStart=now-15m&dateRangeEnd=now 200 75ms - 9.0B"}
{"type":"response","@timestamp":"2020-12-04T02:56:52Z","tags":["access:uptime-read"],"pid":29204,"method":"post","statusCode":200,"req":{"url":"/api/uptime/graphql","method":eep-alive","content-length":"2493","accept":"*/*","kbn-xsrf":"true","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0origin":"http://10.0.106.144:5910","referer":"http://10.0.106.144:5910/app/uptime","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"10.46.144:5910/app/uptime"},"res":{"statusCode":200,"responseTime":136,"contentLength":9},"message":"POST /api/uptime/graphql 200 136ms - 9.0B"}
{"type":"log","@timestamp":"2020-12-04T02:56:56Z","tags":["debug","metrics"],"pid":29204,"message":"Refreshing metrics"}
{"type":"ops","@timestamp":"2020-12-04T02:56:56Z","tags":[],"pid":29204,"os":{"load":[4.81982421875,5.78466796875,6.11474609375],"mem":{"total":270444150784,"free":7133274112s":438231040,"heapTotal":374312960,"heapUsed":338106264,"external":5307926},"delay":3.717876434326172},"load":{"requests":{"5910":{"total":4,"disconnects":0,"statusCodes":{"2ets":{"http":{"total":0},"https":{"total":0}}},"message":"memory: 322.4MB uptime: 66:14:34 load: [4.82 5.78 6.11] delay: 3.718"}
{"type":"log","@timestamp":"2020-09-23T08:04:43Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: server"}
{"type":"log","@timestamp":"2020-09-23T08:04:43Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: csp"}
{"type":"log","@timestamp":"2020-09-23T08:04:43Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: plugins"}
{"type":"log","@timestamp":"2020-09-23T08:04:43Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: dev"}
{"type":"log","@timestamp":"2020-09-23T08:04:43Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: server"}
{"type":"log","@timestamp":"2020-09-23T08:04:43Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: csp"}
{"type":"log","@timestamp":"2020-09-23T08:04:43Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: elasticsearch"}
{"type":"log","@timestamp":"2020-09-23T08:04:43Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: uiSettings"}
{"type":"log","@timestamp":"2020-09-23T08:04:43Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: path"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: csp"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: elasticsearch"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: logging"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: server"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: plugins"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: dev"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: kibana"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: savedObjects"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: migrations"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: uiSettings"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: ops"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: logging"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","root"],"pid":15354,"message":"setting up root"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","server"],"pid":15354,"message":"setting up server"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-service"],"pid":15354,"message":"Discovering plugins"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Discovering plugins..."}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Scanning \"/usr/share/kibana/src/plugins\" for plugin sub-directories..."}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Scanning \"/usr/share/kibana/x-pack/plugins\" for plugin sub-directories..."}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Scanning \"/usr/share/kibana/plugins\" for plugin sub-directories..."}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Scanning \"/usr/share/kibana-extra\" for plugin sub-directories..."}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Successfully discovered plugin \"charts\" at \"/usr/share/kibana/src/plugins/charts\""}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: kibana"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: elasticsearch"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: path"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Successfully discovered plugin \"bfetch\" at \"/usr/share/kibana/src/plugins/bfetch\""}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: kibana"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: elasticsearch"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: path"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Successfully discovered plugin \"data\" at \"/usr/share/kibana/src/plugins/data\""}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: kibana"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: elasticsearch"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: path"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Successfully discovered plugin \"console\" at \"/usr/share/kibana/src/plugins/console\""}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: kibana"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: elasticsearch"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: path"}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","plugins-discovery"],"pid":15354,"message":"Successfully discovered plugin \"dashboard\" at \"/usr/share/kibana/src/plugins/dashboard\""}
{"type":"log","@timestamp":"2020-09-23T08:04:51Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: kibana"}
{"type":"log","@timestamp":"2020-09-23T08:05:05Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,actions"}
{"type":"log","@timestamp":"2020-09-23T08:05:06Z","tags":["debug","plugins","alerting"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/alerting/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:08Z","tags":["debug","plugins","canvas"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/canvas/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:08Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,alerting_builtins"}
{"type":"log","@timestamp":"2020-09-23T08:05:08Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,case"}
{"type":"log","@timestamp":"2020-09-23T08:05:08Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,cloud"}
{"type":"log","@timestamp":"2020-09-23T08:05:08Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,code"}
{"type":"log","@timestamp":"2020-09-23T08:05:08Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: console_extensions"}
{"type":"log","@timestamp":"2020-09-23T08:05:09Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,apm"}
{"type":"log","@timestamp":"2020-09-23T08:05:09Z","tags":["debug","plugins","dataEnhanced"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/data_enhanced/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:09Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,encryptedSavedObjects"}
{"type":"log","@timestamp":"2020-09-23T08:05:10Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,graph"}
{"type":"log","@timestamp":"2020-09-23T08:05:10Z","tags":["debug","plugins","file_upload"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/file_upload/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:10Z","tags":["debug","plugins","features"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/features/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:10Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,index_management"}
{"type":"log","@timestamp":"2020-09-23T08:05:10Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,eventLog"}
{"type":"log","@timestamp":"2020-09-23T08:05:12Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,infra"}
{"type":"log","@timestamp":"2020-09-23T08:05:12Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,license_management"}
{"type":"log","@timestamp":"2020-09-23T08:05:12Z","tags":["debug","plugins","lens"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/lens/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:13Z","tags":["debug","plugins","ml"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/ml/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:15Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: logging"}
{"type":"log","@timestamp":"2020-09-23T08:05:15Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: logging"}
{"type":"log","@timestamp":"2020-09-23T08:05:15Z","tags":["debug","plugins","painlessLab"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/painless_lab/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:15Z","tags":["debug","plugins","ossTelemetry"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/oss_telemetry/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:15Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,remote_clusters"}
{"type":"log","@timestamp":"2020-09-23T08:05:15Z","tags":["debug","plugins","rollup"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/rollup/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:15Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,siem"}
{"type":"log","@timestamp":"2020-09-23T08:05:15Z","tags":["debug","plugins","searchprofiler"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/searchprofiler/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:16Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,spaces"}
{"type":"log","@timestamp":"2020-09-23T08:05:16Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: logging"}
{"type":"log","@timestamp":"2020-09-23T08:05:16Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,snapshot_restore"}
{"type":"log","@timestamp":"2020-09-23T08:05:16Z","tags":["debug","plugins","transform"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/transform/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:16Z","tags":["debug","plugins","translations"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/translations/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:17Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,task_manager"}
{"type":"log","@timestamp":"2020-09-23T08:05:17Z","tags":["debug","plugins","telemetryCollectionXpack"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/telemetry_collection_xpack/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:17Z","tags":["debug","plugins","uptime"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/uptime/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:17Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: xpack,upgrade_assistant"}
{"type":"log","@timestamp":"2020-09-23T08:05:18Z","tags":["debug","plugins","watcher"],"pid":15354,"message":"\"/usr/share/kibana/x-pack/plugins/watcher/server\" does not export \"config\"."}
{"type":"log","@timestamp":"2020-09-23T08:05:18Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: console"}
{"type":"log","@timestamp":"2020-09-23T08:05:18Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: apm_oss"}
{"type":"log","@timestamp":"2020-09-23T08:05:18Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: kibana_legacy"}
{"type":"log","@timestamp":"2020-09-23T08:05:18Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: home"}
{"type":"log","@timestamp":"2020-09-23T08:05:18Z","tags":["debug","config"],"pid":15354,"message":"Marking config path as handled: timelion"}

Feel free to post on gist/pastebin/etc and then link here as well, that might be easier.

 tail -300 kibana.log | grep "invalid"
{"type":"log","@timestamp":"2020-12-04T04:03:58Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:04:08Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:04:18Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:04:28Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:04:38Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:04:48Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:04:58Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:05:08Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:05:18Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:05:28Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}
{"type":"log","@timestamp":"2020-12-04T04:05:38Z","tags":["debug","plugins","usageCollection","collector-set"],"pid":29204,"message":"not sending [kibana_settings] monitoring document because [undefined] is null or invalid."}

Complete error: Comparing wazuh:master...lukelee1987:patch-1 · wazuh/wazuh · GitHub

I just saw this error, this might be helpful...

2020-12-03T12:37:59.612+0800    ERROR   instance/beat.go:802    Exiting: error connecting to Kibana: fail to get the Kibana version: HTTP GET request to http://10.0.106.144:5910/api/status fails: <nil>. Response: {"statusCode":401,"error":"Unauthorized","message":"[security_exception] unable to authenticate user [kibana] for REST request [/_security/_authenticate], with { header={ WWW-Authenticate=\"Basic realm=\\\"security\\\" charset=\\\"UTF-8\\\"\" } }"}.
Exiting: error connecting to Kibana: fail to get the Kibana version: HTTP GET request to http://10.0.106.144:5910/api/status fails: <nil>. Response: {"statusCode":401,"error":"Unauthorized","message":"[security_exception] unable to authenticate user [kibana] for REST request [/_security/_authenticate], with { header={ WWW-Authenticate=\"Basic realm=\\\"security\\\" charset=\\\"UTF-8\\\"\" } }"}.

Meanwhile, may I know do I need to run the Metricbeat in order to get this work? Is it required? Thanks

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