Kibana配置文件

  • 示例kibana.yml配置(注释内容留下以便学习)
# Kibana is served by a back end server. This setting specifies the port to use.
# Kibana由后端服务器提供服务。此设置指定要使用的端口。
server.port: 5601

# Specifies the address to which the Kibana server will bind. IP addresses and host names are both valid values.
#指定Kibana服务器要绑定的地址。IP地址和主机名都是有效值。
# The default is 'localhost', which usually means remote machines will not be able to connect.
#默认是“localhost”,这通常意味着远程机器无法连接。
# To allow connections from remote users, set this parameter to a non-loopback address.
#若要允许来自远程用户的连接,请将此参数设置为非环回地址。
server.host: "0.0.0.0"

# Enables you to specify a path to mount Kibana at if you are running behind a proxy.
#允许您指定mount Kibana的路径,如果您在代理后运行。
# Use the `server.rewriteBasePath` setting to tell Kibana if it should remove the basePath
#使用“服务器”。重写basePath的设置,告诉Kibana是否应该移除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
#指定Kibana是否应该重写带前缀的请求
# `server.basePath` or require that they are rewritten by your reverse proxy.
#服务器或要求它们由反向代理重写。
# This setting was effectively always `false` before Kibana 6.3 and will
#在Kibana 6.3和will之前,这个设置实际上总是“false”
# default to `true` starting in Kibana 7.0.
#Kibana 7.0默认为“true”。
#server.rewriteBasePath: false

# The maximum payload size in bytes for incoming server requests.
#传入服务器请求的最大负载大小(以字节为单位)。
#server.maxPayloadBytes: 1048576

# The Kibana server's name.  This is used for display purposes.
#Kibana服务器的名字。它用于显示目的。
#server.name: "your-hostname"

# The URLs of the Elasticsearch instances to use for all your queries.
#用于所有查询的Elasticsearch实例的url。
elasticsearch.hosts: ["http://192.168.0.140:9200"]

# When this setting's value is true Kibana uses the hostname specified in the server.host
#当此设置的值为true时,Kibana使用server.host中指定的主机名
# setting. When the value of this setting is false, Kibana uses the hostname of the host
#设置。当该设置的值为false时,Kibana使用主机的主机名
# that connects to this Kibana instance.
#连接到这个Kibana实例。
#elasticsearch.preserveHost: true

# Kibana uses an index in Elasticsearch to store saved searches, visualizations and
#Kibana在Elasticsearch中使用索引来存储已保存的搜索、可视化和
# dashboards. Kibana creates a new index if the index doesn't already exist.
#仪表盘。如果索引不存在,Kibana会创建一个新索引。
#kibana.index: ".kibana"

# The default application to load.
#要加载的默认应用程序。
#kibana.defaultAppId: "home"

# If your Elasticsearch is protected with basic authentication, these settings provide
#如果您的Elasticsearch被基本身份验证保护,这些设置提供
# the username and password that the Kibana server uses to perform maintenance on the Kibana
#Kibana服务器用于对Kibana执行维护的用户名和密码
# index at startup. Your Kibana users still need to authenticate with Elasticsearch, which
#启动时的索引。Kibana用户仍然需要使用Elasticsearch进行身份验证
# is proxied through the Kibana server.
#通过Kibana服务器代理。
#elasticsearch.username: "kibana"
#elasticsearch.password: "pass"

# Enables SSL and paths to the PEM-format SSL certificate and SSL key files, respectively.
#分别启用SSL和PEM-format SSL证书和SSL密钥文件的路径。
# These settings enable SSL for outgoing requests from the Kibana server to the browser.
##这些设置为Kibana服务器向浏览器发出的请求启用了SSL。
#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.
#可选设置,提供通往PEM-format SSL证书和密钥文件的路径。
# These files are used to verify the identity of Kibana to Elasticsearch and are required when
#这些文件用于验证Kibana的身份,以Elasticsearch和需要
# xpack.security.http.ssl.client_authentication in Elasticsearch is set to required.
#xpack.security.http.ssl。在Elasticsearch中将client_authentication设置为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
#可选设置,允许您指定证书的PEM文件的路径
# authority for your Elasticsearch instance.
#为您的Elasticsearch实例设置#权限。
#elasticsearch.ssl.certificateAuthorities: [ "/path/to/your/CA.pem" ]

# To disregard the validity of SSL certificates, change this setting's value to 'none'.
#若要忽略SSL证书的有效性,请将此设置的值更改为“none”。
#elasticsearch.ssl.verificationMode: full

# Time in milliseconds to wait for Elasticsearch to respond to pings. Defaults to the value of
#等待Elasticsearch响应ping的时间(毫秒)。默认值
# the elasticsearch.requestTimeout setting.
#elasticsearch。requestTimeout设置。
#elasticsearch.pingTimeout: 1500

# Time in milliseconds to wait for responses from the back end or Elasticsearch. This value
#等待后端或Elasticsearch响应的时间(毫秒)。这个值
# must be a positive integer.
#必须是正整数。
#elasticsearch.requestTimeout: 30000

# List of Kibana client-side headers to send to Elasticsearch. To send *no* client-side
#Kibana客户端头的列表发送到Elasticsearch。发送*no*客户端
# headers, set this value to [] (an empty list).
#headers,将此值设置为[](空列表)。
#elasticsearch.requestHeadersWhitelist: [ authorization ]

# Header names and values that are sent to Elasticsearch. Any custom headers cannot be overwritten
#发送到Elasticsearch的标题名称和值。不能覆盖任何自定义标头
# by client-side headers, regardless of the elasticsearch.requestHeadersWhitelist configuration.
#由客户端头,而不考虑elasticsearch。requestHeadersWhitelist配置。
#elasticsearch.customHeaders: {}

# Time in milliseconds for Elasticsearch to wait for responses from shards. Set to 0 to disable.
#Elasticsearch等待碎片响应的时间(毫秒)。设置为0为禁用。
#elasticsearch.shardTimeout: 30000

# Time in milliseconds to wait for Elasticsearch at Kibana startup before retrying.
#在Kibana启动之前等待Elasticsearch的时间(毫秒)。
#elasticsearch.startupTimeout: 5000

# Logs queries sent to Elasticsearch. Requires logging.verbose set to true.
#记录发送到Elasticsearch的查询。需要记录。verbose设置为true
#elasticsearch.logQueries: false

# Specifies the path where Kibana creates the process ID file.
#指定Kibana创建进程ID文件的路径
#pid.file: /var/run/kibana.pid

# Enables you specify a file where Kibana stores log output.
#允许指定Kibana存储日志输出的文件
#logging.dest: stdout

# Set the value of this setting to true to suppress all logging output.
#将此设置的值设置为true以禁止所有日志记录输出。
#logging.silent: false

# Set the value of this setting to true to suppress all logging output other than error messages.
#将此设置的值设置为true以禁止除错误消息外的所有日志记录输出。
#logging.quiet: false

# Set the value of this setting to true to log all events, including system usage information
#将此设置的值设置为true以记录所有事件,
# and all requests.
#包括系统使用信息
#logging.verbose: false

# Set the interval in milliseconds to sample system and process performance
#设置以毫秒为单位的时间间隔来采样系统和进程性能
# metrics. Minimum is 100ms. Defaults to 5000.
#指标。最低是100 ms。默认为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 .
#支持的语言如下:English - en,默认情况下,Chinese - chu - cn。
i18n.locale: "zh-CN"
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342