Kibana not displaying logs after implementing XPack Security in Elasticsearch 7.16

Hello everyone,

I recently set up an Elasticsearch version 7.16 cluster on a RHEL7.9 with Kibana and two Filebeat servers: a Hardware Log Server and an OS Log Server. Everything was working well until I implemented XPack Security, after which Kibana stopped displaying logs.

I made sure that my Kibana and Filebeat configurations had the correct user credentials, but Kibana still did not display any logs. I waited for a day, and then the OS Log Server suddenly appeared in Kibana. However, the Hardware Log Server still could not be seen.

I tried restarting the OS Log Server, but Kibana did not display the initial OS Log Server anymore. I'm not sure what's going on, and I could use some help troubleshooting this issue.

I have also ensured that necessary firewall port is opened.

Any advice or suggestions would be greatly appreciated. Thank you in advance!

PS. The following are my configurations for the ELK Stack.

elasticsearch.yml

# ======================== Elasticsearch Configuration =========================
#
# NOTE: Elasticsearch comes with reasonable defaults for most settings.
#       Before you set out to tweak and tune the configuration, make sure you
#       understand what are you trying to accomplish and the consequences.
#
# The primary way of configuring a node is via this file. This template lists
# the most important settings you may want to configure for a production cluster.
#
# Please consult the documentation for further information on configuration options:
# https://www.elastic.co/guide/en/elasticsearch/reference/index.html
#
# ---------------------------------- Cluster -----------------------------------
#
# Use a descriptive name for your cluster:
#
cluster.name: elasticsearch
#
# ------------------------------------ Node ------------------------------------
#
# Use a descriptive name for the node:
#
node.name: node-1
#
# Add custom attributes to the node:
#
#node.attr.rack: r1
#
# ----------------------------------- Paths ------------------------------------
#
# Path to directory where to store the data (separate multiple locations by comma):
#
path.data: /var/lib/elasticsearch
#
# Path to log files:
#
path.logs: /var/log/elasticsearch
#
# ----------------------------------- Memory -----------------------------------
#
# Lock the memory on startup:
#
#bootstrap.memory_lock: true
#
# Make sure that the heap size is set to about half the memory available
# on the system and that the owner of the process is allowed to use this
# limit.
#
# Elasticsearch performs poorly when the system is swapping the memory.
#
# ---------------------------------- Network -----------------------------------
#
# By default Elasticsearch is only accessible on localhost. Set a different
# address here to expose this node on the network:
#
network.host: xxx.xxx.xxx.xxx
#
# By default Elasticsearch listens for HTTP traffic on the first free port it
# finds starting at 9200. Set a specific HTTP port here:
#
#http.port: 9200
#
# For more information, consult the network module documentation.
#
# --------------------------------- Discovery ----------------------------------
#
# Pass an initial list of hosts to perform discovery when this node is started:
# The default list of hosts is ["127.0.0.1", "[::1]"]
#
#discovery.seed_hosts: ["host1", "host2"]
#
# Bootstrap the cluster using an initial set of master-eligible nodes:
#
cluster.initial_master_nodes: ["node-1"]
#
# For more information, consult the discovery and cluster formation module documentation.
#
#
# ---------------------------------- Various -----------------------------------
#
# Require explicit names when deleting indices:
#
#action.destructive_requires_name: true
#
# ---------------------------------- Security ----------------------------------
#
#                                 *** WARNING ***
#
# Elasticsearch security features are not enabled by default.
# These features are free, but require configuration changes to enable them.
# This means that users don’t have to provide credentials and can get full access
# to the cluster. Network connections are also not encrypted.
#
# To protect your data, we strongly encourage you to enable the Elasticsearch security features.
# Refer to the following documentation for instructions.
#
# https://www.elastic.co/guide/en/elasticsearch/reference/7.16/configuring-stack-security.html
xpack.security.enabled: true
xpack.security.transport.ssl.enabled: true

kibana.yml

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

# 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: "xxx.xxx.xxx.xxx"

# 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: ""

# 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: false

# Specifies the public URL at which Kibana is available for end users. If
# `server.basePath` is configured this URL should end with the same basePath.
#server.publicBaseUrl: ""

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

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

# The URLs of the Elasticsearch instances to use for all your queries.
elasticsearch.hosts: ["http://xxx.xxx.xxx.xxx:9200"]

# 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: "kibana_system"
elasticsearch.password: "password"

# Kibana can also authenticate to Elasticsearch via "service account tokens".
# If may use this token instead of a username/password.
# elasticsearch.serviceAccountToken: "my_token"

# 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 are used to verify the identity of Kibana to Elasticsearch and are required when
# xpack.security.http.ssl.client_authentication in Elasticsearch is set to required.
#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

# 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: /run/kibana/kibana.pid

# Enables you to 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.
# Supported languages are the following: English - en , by default , Chinese - zh-CN .
#i18n.locale: "en"

#Enable XPack
xpack.security.enabled: true

filebeat.yml (Same configuration for both of the log server

###################### Filebeat Configuration Example #########################

# This file is an example configuration file highlighting only the most common
# options. The filebeat.reference.yml file from the same directory contains all the
# supported options with more comments. You can use it as a reference.
#
# You can find the full configuration reference here:
# https://www.elastic.co/guide/en/beats/filebeat/index.html

# For more available modules and options, please see the filebeat.reference.yml sample
# configuration file.

# ============================== Filebeat inputs ===============================

filebeat.inputs:

# Each - is an input. Most options can be set at the input level, so
# you can use different inputs for various configurations.
# Below are the input specific configurations.

# filestream is an input for collecting log messages from files.
- type: log

  # Unique ID among all inputs, an ID is required.
  id: my-filestream-id

  # Change to true to enable this input configuration.
  enabled: true

  # Paths that should be crawled and fetched. Glob based paths.
  paths:
    - /var/log/rsyslog/*/*.log
    #- c:\programdata\elasticsearch\logs\*

  # Exclude lines. A list of regular expressions to match. It drops the lines that are
  # matching any regular expression from the list.
  #exclude_lines: ['^DBG']

  # Include lines. A list of regular expressions to match. It exports the lines that are
  # matching any regular expression from the list.
  #include_lines: ['^ERR', '^WARN']

  # Exclude files. A list of regular expressions to match. Filebeat drops the files that
  # are matching any regular expression from the list. By default, no files are dropped.
  #prospector.scanner.exclude_files: ['.gz$']

  # Optional additional fields. These fields can be freely picked
  # to add additional information to the crawled log files for filtering
  #fields:
  #  level: debug
  #  review: 1

# ============================== Filebeat modules ==============================

filebeat.config.modules:
  # Glob pattern for configuration loading
  path: ${path.config}/modules.d/*.yml

  # Set to true to enable config reloading
  reload.enabled: false

  # Period on which files under path should be checked for changes
  #reload.period: 10s

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

setup.template.settings:
  index.number_of_shards: 1
  #index.codec: best_compression
  #_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

# ================================= Dashboards =================================
# These settings control loading the sample dashboards to the Kibana index. Loading
# the dashboards is disabled by default and can be enabled either by setting the
# options here or by using the `setup` command.
#setup.dashboards.enabled: false

# The URL from where to download the dashboards archive. By default this URL
# has a value which is computed based on the Beat name and version. For released
# versions, this URL points to the dashboard archive on the artifacts.elastic.co
# website.
#setup.dashboards.url:

# =================================== 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: "http://xxx.xxx.xxx.xxx:5601"

  # 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 Filebeat 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: ["xxx.xxx.xxx.xxx: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: "password"

# ------------------------------ 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_host_metadata:
      when.not.contains.tags: forwarded
  - add_cloud_metadata: ~
  - add_docker_metadata: ~
  - add_kubernetes_metadata: ~

# ================================== Logging ===================================

# Sets log level. The default log level is info.
# Available log levels are: error, warning, info, debug
#logging.level: debug

# At debug level, you can selectively enable logging only for some components.
# To enable all selectors use ["*"]. Examples of other selectors are "beat",
# "publisher", "service".
#logging.selectors: ["*"]

# ============================= X-Pack Monitoring ==============================
# Filebeat 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
# Filebeat 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 filebeat.
#instrumentation:
    # Set to true to enable instrumentation of filebeat.
    #enabled: false

    # Environment in which filebeat 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

What do the logs of the various components show?

Good day Mark,

Here are some of the logs. Hope these can be helpful.

  • cat /var/log/elasticsearch/elasticsearch.log*
[2023-02-16T09:43:54,474][INFO ][o.e.n.Node               ] [node-1] version[7.17.7], pid[24780], build[default/rpm/78dcaaa8cee33438b91eca7f5c7f56a70fec9e80/2022-10-17T15:29:54.167373105Z], OS[Linux/3.10.0-1160.el7.x86_64/amd64], JVM[Oracle Corporation/OpenJDK 64-Bit Server VM/19/19+36-2238]
[2023-02-16T09:43:54,499][INFO ][o.e.n.Node               ] [node-1] JVM home [/usr/share/elasticsearch/jdk], using bundled JDK [true]
[2023-02-16T09:43:54,500][INFO ][o.e.n.Node               ] [node-1] JVM arguments [-Xshare:auto, -Des.networkaddress.cache.ttl=60, -Des.networkaddress.cache.negative.ttl=10, -XX:+AlwaysPreTouch, -Xss1m, -Djava.awt.headless=true, -Dfile.encoding=UTF-8, -Djna.nosys=true, -XX:-OmitStackTraceInFastThrow, -XX:+ShowCodeDetailsInExceptionMessages, -Dio.netty.noUnsafe=true, -Dio.netty.noKeySetOptimization=true, -Dio.netty.recycler.maxCapacityPerThread=0, -Dio.netty.allocator.numDirectArenas=0, -Dlog4j.shutdownHookEnabled=false, -Dlog4j2.disable.jmx=true, -Dlog4j2.formatMsgNoLookups=true, -Djava.locale.providers=SPI,COMPAT, --add-opens=java.base/java.io=ALL-UNNAMED, -Djava.security.manager=allow, -XX:+UseG1GC, -Djava.io.tmpdir=/tmp/elasticsearch-15458815977645418147, -XX:+HeapDumpOnOutOfMemoryError, -XX:+ExitOnOutOfMemoryError, -XX:HeapDumpPath=/var/lib/elasticsearch, -XX:ErrorFile=/var/log/elasticsearch/hs_err_pid%p.log, -Xlog:gc*,gc+age=trace,safepoint:file=/var/log/elasticsearch/gc.log:utctime,pid,tags:filecount=32,filesize=64m, -Xms8023m, -Xmx8023m, -XX:MaxDirectMemorySize=4206886912, -XX:G1HeapRegionSize=4m, -XX:InitiatingHeapOccupancyPercent=30, -XX:G1ReservePercent=15, -Des.path.home=/usr/share/elasticsearch, -Des.path.conf=/etc/elasticsearch, -Des.distribution.flavor=default, -Des.distribution.type=rpm, -Des.bundled_jdk=true]
[2023-02-16T09:43:57,173][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [aggs-matrix-stats]
[2023-02-16T09:43:57,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [analysis-common]
[2023-02-16T09:43:57,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [constant-keyword]
[2023-02-16T09:43:57,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [frozen-indices]
[2023-02-16T09:43:57,174][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [ingest-common]
[2023-02-16T09:43:57,175][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [ingest-geoip]
[2023-02-16T09:43:57,175][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [ingest-user-agent]
[2023-02-16T09:43:57,175][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [kibana]
[2023-02-16T09:43:57,175][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [lang-expression]
[2023-02-16T09:43:57,175][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [lang-mustache]
[2023-02-16T09:43:57,176][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [lang-painless]
[2023-02-16T09:43:57,176][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [legacy-geo]
[2023-02-16T09:43:57,176][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [mapper-extras]
[2023-02-16T09:43:57,176][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [mapper-version]
[2023-02-16T09:43:57,177][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [parent-join]
[2023-02-16T09:43:57,177][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [percolator]
[2023-02-16T09:43:57,177][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [rank-eval]
[2023-02-16T09:43:57,177][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [reindex]
[2023-02-16T09:43:57,177][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [repositories-metering-api]
[2023-02-16T09:43:57,180][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [repository-encrypted]
[2023-02-16T09:43:57,180][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [repository-url]
[2023-02-16T09:43:57,180][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [runtime-fields-common]
[2023-02-16T09:43:57,181][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [search-business-rules]
[2023-02-16T09:43:57,181][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [searchable-snapshots]
[2023-02-16T09:43:57,181][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [snapshot-repo-test-kit]
[2023-02-16T09:43:57,181][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [spatial]
[2023-02-16T09:43:57,182][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [systemd]
[2023-02-16T09:43:57,182][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [transform]
[2023-02-16T09:43:57,182][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [transport-netty4]
[2023-02-16T09:43:57,182][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [unsigned-long]
[2023-02-16T09:43:57,183][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [vector-tile]
[2023-02-16T09:43:57,183][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [vectors]
[2023-02-16T09:43:57,183][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [wildcard]
[2023-02-16T09:43:57,183][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-aggregate-metric]
[2023-02-16T09:43:57,183][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-analytics]
[2023-02-16T09:43:57,184][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-async]
[2023-02-16T09:43:57,184][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-async-search]
[2023-02-16T09:43:57,184][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-autoscaling]
[2023-02-16T09:43:57,184][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-ccr]
[2023-02-16T09:43:57,184][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-core]
[2023-02-16T09:43:57,185][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-data-streams]
[2023-02-16T09:43:57,185][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-deprecation]
[2023-02-16T09:43:57,185][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-enrich]
[2023-02-16T09:43:57,185][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-eql]
[2023-02-16T09:43:57,186][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-fleet]
[2023-02-16T09:43:57,186][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-graph]
[2023-02-16T09:43:57,186][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-identity-provider]
[2023-02-16T09:43:57,186][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-ilm]
[2023-02-16T09:43:57,186][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-logstash]
[2023-02-16T09:43:57,189][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-ml]
[2023-02-16T09:43:57,189][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-monitoring]
[2023-02-16T09:43:57,189][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-ql]
[2023-02-16T09:43:57,189][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-rollup]
[2023-02-16T09:43:57,189][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-security]
[2023-02-16T09:43:57,190][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-shutdown]
[2023-02-16T09:43:57,190][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-sql]
[2023-02-16T09:43:57,190][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-stack]
[2023-02-16T09:43:57,190][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-text-structure]
[2023-02-16T09:43:57,190][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-voting-only-node]
[2023-02-16T09:43:57,191][INFO ][o.e.p.PluginsService     ] [node-1] loaded module [x-pack-watcher]
[2023-02-16T09:43:57,191][INFO ][o.e.p.PluginsService     ] [node-1] no plugins loaded
[2023-02-16T09:43:57,245][INFO ][o.e.e.NodeEnvironment    ] [node-1] using [1] data paths, mounts [[/ (/dev/mapper/rhel-root)]], net usable_space [895.9gb], net total_space [998.6gb], types [xfs]
[2023-02-16T09:43:57,245][INFO ][o.e.e.NodeEnvironment    ] [node-1] heap size [7.8gb], compressed ordinary object pointers [true]
[2023-02-16T09:43:57,386][INFO ][o.e.n.Node               ] [node-1] node name [node-1], node ID [_yLBbagTQE-5_AwM7P2c-A], cluster name [elasticsearch], roles [transform, data_frozen, master, remote_cluster_client, data, ml, data_content, data_hot, data_warm, data_cold, ingest]
[2023-02-16T09:44:05,225][INFO ][o.e.x.m.p.l.CppLogMessageHandler] [node-1] [controller/24978] [Main.cc@122] controller (64 bit): Version 7.17.7 (Build 3394c7a151e90f) Copyright (c) 2022 Elasticsearch BV
[2023-02-16T09:44:05,944][INFO ][o.e.x.s.a.Realms         ] [node-1] license mode is [trial], currently licensed security realms are [reserved/reserved,file/default_file,native/default_native]
[2023-02-16T09:44:05,966][INFO ][o.e.x.s.a.s.FileRolesStore] [node-1] parsed [0] roles from file [/etc/elasticsearch/roles.yml]
[2023-02-16T09:44:07,042][INFO ][o.e.i.g.ConfigDatabases  ] [node-1] initialized default databases [[GeoLite2-Country.mmdb, GeoLite2-City.mmdb, GeoLite2-ASN.mmdb]], config databases [[]] and watching [/etc/elasticsearch/ingest-geoip] for changes
[2023-02-16T09:44:07,044][INFO ][o.e.i.g.DatabaseNodeService] [node-1] initialized database registry, using geoip-databases directory [/tmp/elasticsearch-15458815977645418147/geoip-databases/_yLBbagTQE-5_AwM7P2c-A]
[2023-02-16T09:44:08,103][INFO ][o.e.t.NettyAllocator     ] [node-1] creating NettyAllocator with the following configs: [name=elasticsearch_configured, chunk_size=1mb, suggested_max_allocation_size=1mb, factors={es.unsafe.use_netty_default_chunk_and_page_size=false, g1gc_enabled=true, g1gc_region_size=4mb}]
[2023-02-16T09:44:08,183][INFO ][o.e.i.r.RecoverySettings ] [node-1] using rate limit [40mb] with [default=40mb, read=0b, write=0b, max=0b]
[2023-02-16T09:44:08,234][INFO ][o.e.d.DiscoveryModule    ] [node-1] using discovery type [zen] and seed hosts providers [settings]
[2023-02-16T09:44:08,927][INFO ][o.e.g.DanglingIndicesState] [node-1] gateway.auto_import_dangling_indices is disabled, dangling indices will not be automatically detected or imported and must be managed manually
[2023-02-16T09:44:10,131][INFO ][o.e.n.Node               ] [node-1] initialized
[2023-02-16T09:44:10,131][INFO ][o.e.n.Node               ] [node-1] starting ...
[2023-02-16T09:44:10,153][INFO ][o.e.x.s.c.f.PersistentCache] [node-1] persistent cache index loaded
[2023-02-16T09:44:10,154][INFO ][o.e.x.d.l.DeprecationIndexingComponent] [node-1] deprecation component started
[2023-02-16T09:44:10,308][INFO ][o.e.t.TransportService   ] [node-1] publish_address {172.16.136.150:9300}, bound_addresses {172.16.136.150:9300}
[2023-02-16T09:44:12,640][INFO ][o.e.b.BootstrapChecks    ] [node-1] bound or publishing to a non-loopback address, enforcing bootstrap checks
[2023-02-16T09:44:12,644][INFO ][o.e.c.c.Coordinator      ] [node-1] cluster UUID [DTVWJCYESem2qmi8R1MtUg]
[2023-02-16T09:44:12,836][INFO ][o.e.c.s.MasterService    ] [node-1] elected-as-master ([1] nodes joined)[{node-1}{_yLBbagTQE-5_AwM7P2c-A}{Z7TLfDXfRTavP2HNl6h3Iw}{172.16.136.150}{172.16.136.150:9300}{cdfhilmrstw} elect leader, _BECOME_MASTER_TASK_, _FINISH_ELECTION_], term: 8, version: 414, delta: master node changed {previous [], current [{node-1}{_yLBbagTQE-5_AwM7P2c-A}{Z7TLfDXfRTavP2HNl6h3Iw}{172.16.136.150}{172.16.136.150:9300}{cdfhilmrstw}]}
[2023-02-16T09:44:13,000][INFO ][o.e.c.s.ClusterApplierService] [node-1] master node changed {previous [], current [{node-1}{_yLBbagTQE-5_AwM7P2c-A}{Z7TLfDXfRTavP2HNl6h3Iw}{172.16.136.150}{172.16.136.150:9300}{cdfhilmrstw}]}, term: 8, version: 414, reason: Publication{term=8, version=414}
[2023-02-16T09:44:13,140][INFO ][o.e.h.AbstractHttpServerTransport] [node-1] publish_address {172.16.136.150:9200}, bound_addresses {172.16.136.150:9200}
[2023-02-16T09:44:13,141][INFO ][o.e.n.Node               ] [node-1] started
[2023-02-16T09:44:13,321][INFO ][o.e.c.s.ClusterSettings  ] [node-1] updating [xpack.monitoring.collection.enabled] from [false] to [true]
[2023-02-16T09:44:13,547][INFO ][o.e.x.s.a.RealmsAuthenticator] [node-1] Authentication of [kibana_system] was terminated by realm [reserved] - failed to authenticate user [kibana_system]
[2023-02-16T09:44:14,113][WARN ][o.e.i.c.GrokProcessor    ] [node-1] regular expression has redundant nested repeat operator * /^(?<TIMESTAMP:system.auth.timestamp>(?:(?:(?:(?>\d\d){1,2})-(?:(?:0?[1-9]|1[0-2]))-(?:(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01])|[1-9]))[T ](?:(?:2[0123]|[01][0-9])):?(?:(?:[0-5][0-9]))(?::?(?:(?:(?:[0-5]?[0-9]|60)(?:[:.,][0-9]+)?)))?(?:(?:Z|[+-](?:(?:2[0123]|[01]?[0-9]))(?::?(?:(?:[0-5][0-9])))))?)|(?:(?:\b(?:[Jj]an(?:uary|uar)?|[Ff]eb(?:ruary|ruar)?|[Mm](?:a|ä)?r(?:ch|z)?|[Aa]pr(?:il)?|[Mm]a(?:y|i)?|[Jj]un(?:e|i)?|[Jj]ul(?:y|i)?|[Aa]ug(?:ust)?|[Ss]ep(?:tember)?|[Oo](?:c|k)?t(?:ober)?|[Nn]ov(?:ember)?|[Dd]e(?:c|z)(?:ember)?)\b) +(?:(?:(?:0[1-9])|(?:[12][0-9])|(?:3[01])|[1-9])) (?:(?!<[0-9])(?:(?:2[0123]|[01]?[0-9])):(?:(?:[0-5][0-9]))(?::(?:(?:(?:[0-5]?[0-9]|60)(?:[:.,][0-9]+)?)))(?![0-9]))))) (?<SYSLOGHOST:host.hostname>(?:(?:(?:(?:(?:((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))(%.+)?)|(?:(?<![0-9])(?:(?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5])[.](?:[0-1]?[0-9]{1,2}|2[0-4][0-9]|25[0-5]))(?![0-9]))))|(?:\b(?:[0-9A-Za-z][0-9A-Za-z-]{0,62})(?:\.(?:[0-9A-Za-z][0-9A-Za-z-]{0,62}))*(\.?|\b)))))? (?<DATA:process.name>.*?)(?:\[(?<POSINT:process.pid:long>\b(?:[1-9][0-9]*)\b)\])?:(?:\s*)+(?<GREEDYMULTILINE:_temp.message>(.|\n)*)$/
[2023-02-16T09:44:15,189][INFO ][o.e.l.LicenseService     ] [node-1] license [52956bb0-0383-4b62-a5d5-0b26845a51bb] mode [basic] - valid
[2023-02-16T09:44:15,190][INFO ][o.e.x.s.a.Realms         ] [node-1] license mode is [basic], currently licensed security realms are [reserved/reserved,file/default_file,native/default_native]
[2023-02-16T09:44:15,191][INFO ][o.e.x.s.s.SecurityStatusChangeListener] [node-1] Active license is now [BASIC]; Security is enabled
[2023-02-16T09:44:15,194][INFO ][o.e.g.GatewayService     ] [node-1] recovered [26] indices into cluster_state
[2023-02-16T09:44:15,332][ERROR][o.e.x.s.a.e.ReservedRealm] [node-1] failed to retrieve password hash for reserved user [kibana_system]
[2023-02-16T09:44:15,348][INFO ][o.e.x.s.a.RealmsAuthenticator] [node-1] Authentication of [kibana_system] was terminated by realm [reserved] - failed to authenticate user [kibana_system]
[2023-02-16T09:44:15,965][ERROR][o.e.i.g.GeoIpDownloader  ] [node-1] exception during geoip databases update
[2023-02-16T09:44:17,048][INFO ][o.e.i.g.DatabaseNodeService] [node-1] retrieve geoip database [GeoLite2-Country.mmdb] from [.geoip_databases] to [/tmp/elasticsearch-15458815977645418147/geoip-databases/_yLBbagTQE-5_AwM7P2c-A/GeoLite2-Country.mmdb.tmp.gz]
[2023-02-16T09:44:17,050][INFO ][o.e.i.g.DatabaseNodeService] [node-1] retrieve geoip database [GeoLite2-City.mmdb] from [.geoip_databases] to [/tmp/elasticsearch-15458815977645418147/geoip-databases/_yLBbagTQE-5_AwM7P2c-A/GeoLite2-City.mmdb.tmp.gz]
[2023-02-16T09:44:17,050][INFO ][o.e.i.g.DatabaseNodeService] [node-1] retrieve geoip database [GeoLite2-ASN.mmdb] from [.geoip_databases] to [/tmp/elasticsearch-15458815977645418147/geoip-databases/_yLBbagTQE-5_AwM7P2c-A/GeoLite2-ASN.mmdb.tmp.gz]
[2023-02-16T09:44:17,755][INFO ][o.e.i.g.DatabaseNodeService] [node-1] successfully reloaded changed geoip database file [/tmp/elasticsearch-15458815977645418147/geoip-databases/_yLBbagTQE-5_AwM7P2c-A/GeoLite2-Country.mmdb]
[2023-02-16T09:44:17,972][INFO ][o.e.i.g.DatabaseNodeService] [node-1] successfully reloaded changed geoip database file [/tmp/elasticsearch-15458815977645418147/geoip-databases/_yLBbagTQE-5_AwM7P2c-A/GeoLite2-ASN.mmdb]
[2023-02-16T09:44:20,227][INFO ][o.e.i.g.DatabaseNodeService] [node-1] successfully reloaded changed geoip database file [/tmp/elasticsearch-15458815977645418147/geoip-databases/_yLBbagTQE-5_AwM7P2c-A/GeoLite2-City.mmdb]
[2023-02-16T09:44:24,300][INFO ][o.e.c.m.MetadataCreateIndexService] [node-1] [.monitoring-es-7-2023.02.16] creating index, cause [auto(bulk api)], templates [.monitoring-es], shards [1]/[0]
[2023-02-16T09:44:28,372][INFO ][o.e.c.r.a.AllocationService] [node-1] Cluster health status changed from [RED] to [YELLOW] (reason: [shards started [[filebeat-7.17.7-2022.12.07-000001][0]]]).
[2023-02-16T09:44:39,569][INFO ][o.e.c.m.MetadataCreateIndexService] [node-1] [.monitoring-kibana-7-2023.02.16] creating index, cause [auto(bulk api)], templates [.monitoring-kibana], shards [1]/[0]
[2023-02-16T09:45:31,804][INFO ][o.e.x.s.a.RealmsAuthenticator] [node-1] Authentication of [elastic] was terminated by realm [reserved] - failed to authenticate user [elastic]

cat /var/log/kibana/kibana.log


{"type":"response","@timestamp":"2023-02-16T09:46:24+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/internal/bsearch?compress=true","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"837","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":138},"message":"POST /internal/bsearch?compress=true 200 138ms"}
{"type":"response","@timestamp":"2023-02-16T09:46:24+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/internal/bsearch?compress=true","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"17400","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":159},"message":"POST /internal/bsearch?compress=true 200 159ms"}
{"type":"response","@timestamp":"2023-02-16T09:46:25+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/internal/bsearch?compress=true","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"837","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":140},"message":"POST /internal/bsearch?compress=true 200 140ms"}
{"type":"response","@timestamp":"2023-02-16T09:46:25+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/internal/bsearch?compress=true","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"17400","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":199},"message":"POST /internal/bsearch?compress=true 200 199ms"}
{"type":"response","@timestamp":"2023-02-16T09:46:26+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/internal/bsearch?compress=true","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"837","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":120},"message":"POST /internal/bsearch?compress=true 200 120ms"}
{"type":"response","@timestamp":"2023-02-16T09:46:28+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/internal/bsearch?compress=true","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"837","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":121},"message":"POST /internal/bsearch?compress=true 200 121ms"}
{"type":"response","@timestamp":"2023-02-16T09:46:31+08:00","tags":[],"pid":10145,"method":"put","statusCode":200,"req":{"url":"/api/saved_objects/index-pattern/7ea87e50-acf5-11ed-af42-e19162b2f97c","method":"put","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"186","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":568,"contentLength":318},"message":"PUT /api/saved_objects/index-pattern/7ea87e50-acf5-11ed-af42-e19162b2f97c 200 568ms - 318.0B"}
{"type":"response","@timestamp":"2023-02-16T09:46:32+08:00","tags":[],"pid":10145,"method":"put","statusCode":200,"req":{"url":"/api/saved_objects/index-pattern/7ea87e50-acf5-11ed-af42-e19162b2f97c","method":"put","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"218","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":1099,"contentLength":350},"message":"PUT /api/saved_objects/index-pattern/7ea87e50-acf5-11ed-af42-e19162b2f97c 200 1099ms - 350.0B"}
{"type":"response","@timestamp":"2023-02-16T09:46:36+08:00","tags":[],"pid":10145,"method":"put","statusCode":200,"req":{"url":"/api/saved_objects/index-pattern/7ea87e50-acf5-11ed-af42-e19162b2f97c","method":"put","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"246","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":211,"contentLength":378},"message":"PUT /api/saved_objects/index-pattern/7ea87e50-acf5-11ed-af42-e19162b2f97c 200 211ms - 378.0B"}
{"type":"log","@timestamp":"2023-02-16T09:47:10+08:00","tags":["warning","plugins","usageCollection","usage-collection","collector-set"],"pid":10145,"message":"Error: Saved object [index-pattern/filebeat-*] not found\n    at Function.createGenericNotFoundError (/usr/share/kibana/src/core/server/saved_objects/service/lib/errors.js:125:37)\n    at /usr/share/kibana/src/core/server/saved_objects/service/lib/internal_bulk_resolve.js:163:47\n    at Array.map (<anonymous>)\n    at internalBulkResolve (/usr/share/kibana/src/core/server/saved_objects/service/lib/internal_bulk_resolve.js:105:38)\n    at runMicrotasks (<anonymous>)\n    at processTicksAndRejections (node:internal/process/task_queues:96:5)\n    at SavedObjectsRepository.resolve (/usr/share/kibana/src/core/server/saved_objects/service/lib/repository.js:1129:9)\n    at SavedObjectsClient.resolve (/usr/share/kibana/src/core/server/saved_objects/service/saved_objects_client.js:148:12)\n    at SavedObjectsClientServerToCommon.get (/usr/share/kibana/src/plugins/data_views/server/saved_objects_client_wrapper.js:33:22)\n    at DataViewsService.getSavedObjectAndInit (/usr/share/kibana/src/plugins/data_views/common/data_views/data_views.js:302:27) {\n  data: null,\n  isBoom: true,\n  isServer: false,\n  output: {\n    statusCode: 404,\n    payload: {\n      statusCode: 404,\n      error: 'Not Found',\n      message: 'Saved object [index-pattern/filebeat-*] not found'\n    },\n    headers: {}\n  },\n  [Symbol(SavedObjectsClientErrorCode)]: 'SavedObjectsClient/notFound'\n}"}
{"type":"log","@timestamp":"2023-02-16T09:47:10+08:00","tags":["warning","plugins","usageCollection","usage-collection","collector-set"],"pid":10145,"message":"Unable to fetch data from maps collector"}
{"type":"response","@timestamp":"2023-02-16T09:47:09+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/api/telemetry/v2/clusters/_stats","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"42","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":2562,"contentLength":310525},"message":"POST /api/telemetry/v2/clusters/_stats 200 2562ms - 303.2KB"}
{"type":"response","@timestamp":"2023-02-16T09:47:38+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/api/ui_counters/_report","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"546","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","kbn-system-request":"true","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":394,"contentLength":15},"message":"POST /api/ui_counters/_report 200 394ms - 15.0B"}
{"type":"log","@timestamp":"2023-02-16T09:48:45+08:00","tags":["info","status"],"pid":10145,"message":"Kibana is now available (was degraded)"}
{"type":"response","@timestamp":"2023-02-16T09:51:59+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/api/ui_counters/_report","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"366","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","kbn-system-request":"true","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":130,"contentLength":15},"message":"POST /api/ui_counters/_report 200 130ms - 15.0B"}
{"type":"response","@timestamp":"2023-02-16T09:52:09+08:00","tags":[],"pid":10145,"method":"post","statusCode":200,"req":{"url":"/api/ui_counters/_report","method":"post","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","content-length":"162","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","kbn-system-request":"true","content-type":"application/json","accept":"*/*","origin":"http://xxx.xxx.xxx.xxx:5601","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":982,"contentLength":15},"message":"POST /api/ui_counters/_report 200 982ms - 15.0B"}
{"type":"response","@timestamp":"2023-02-16T10:01:09+08:00","tags":[],"pid":10145,"method":"get","statusCode":200,"req":{"url":"/api/saved_objects_tagging/tags","method":"get","headers":{"host":"xxx.xxx.xxx.xxx:5601","connection":"keep-alive","kbn-version":"7.17.7","user-agent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","kbn-system-request":"true","content-type":"application/json","accept":"*/*","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover","accept-encoding":"gzip, deflate","accept-language":"en-US,en;q=0.9"},"remoteAddress":"xxx.xxx.xxx.xxx","userAgent":"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/110.0.0.0 Safari/537.36","referer":"http://xxx.xxx.xxx.xxx:5601/app/discover"},"res":{"statusCode":200,"responseTime":36,"contentLength":177},"message":"GET /api/saved_objects_tagging/tags 200 36ms - 177.0B"}

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