- Kibana Guide: other versions:
- Introduction
- Get started
- Set Up Kibana
- Discover
- Visualize
- Creating a Visualization
- Saving Visualizations
- Using rolled up data in a visualization
- Line, Area, and Bar charts
- Controls Visualization
- Data Table
- Markdown Widget
- Metric
- Goal and Gauge
- Pie Charts
- Coordinate Maps
- Region Maps
- Timelion
- TSVB
- Tag Clouds
- Heatmap Chart
- Vega Graphs
- Inspecting Visualizations
- Dashboard
- Canvas
- Graph data connections
- Machine learning
- Elastic Maps
- Code
- Infrastructure
- Logs
- APM
- Uptime
- SIEM
- Dev Tools
- Stack Monitoring
- Management
- Reporting from Kibana
- REST API
- Kibana plugins
- Limitations
- Release Highlights
- Breaking Changes
- Release Notes
- Developer guide
IMPORTANT: No additional bug fixes or documentation updates
will be released for this version. For the latest information, see the
current release documentation.
Code Settings in Kibana
editCode Settings in Kibana
editUnless you are running multiple Kibana instances as a cluster, you do not need to change any settings to use Code by default. If you’d like to change any of the default values, copy and paste the relevant settings below into your kibana.yml
configuration file.
-
xpack.code.updateRepoFrequencyMs
-
Repo update frequency in milliseconds. Defaults to
300000
. -
xpack.code.indexRepoFrequencyMs
-
Repo index frequency in milliseconds. Defaults to
86400000
. -
xpack.code.security.enableMavenImport
-
Whether to support maven. Defaults to
true
. -
xpack.code.security.enableGradleImport
-
Whether to support gradle. Defaults to
false
. -
xpack.code.security.installNodeDependency
-
Whether to enable node dependency download. Defaults to
true
. -
xpack.code.security.gitHostWhitelist
-
Whitelist of hostnames for git clone address. Defaults to
[ 'github.com', 'gitlab.com', 'bitbucket.org', 'gitbox.apache.org', 'eclipse.org',]
. -
xpack.code.security.gitProtocolWhitelist
-
Whitelist of protocols for git clone address. Defaults to
[ 'https', 'git', 'ssh' ]
. -
xpack.code.security.enableGitCertCheck
- Whether enable HTTPS certificate check when clone from HTTPS URL.
-
xpack.code.maxWorkspace
-
Maximal number of workspaces each language server allows to span. Defaults to
5
. -
xpack.code.codeNodeUrl
- URL of the Code node. This config is only needed when multiple Kibana instances are set up as a cluster. Defaults to ``
-
xpack.code.verbose
-
Set this config to
true
to log all events. Defaults tofalse
Was this helpful?
Thank you for your feedback.