Skip to content

Commit

Permalink
Merge pull request #7375 from tsullivan/ops-increase-interval
Browse files Browse the repository at this point in the history
ops: set default interval for stat collection to 5 seconds
  • Loading branch information
tsullivan committed Jun 3, 2016
2 parents f1a6290 + 0c78e59 commit e60f58a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions config/kibana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,5 @@
# logging.verbose: false

# Set the interval in milliseconds to sample system and process performance
# metrics. Minimum is 100ms. Defaults to 10000.
# ops.interval: 10000
# metrics. Minimum is 100ms. Defaults to 5000.
# ops.interval: 5000
2 changes: 1 addition & 1 deletion docs/kibana-yml.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ retrying.
error messages.
`logging.verbose`:: *Default: false* Set the value of this setting to `true` to log all events, including system usage
information and all requests.
`ops.interval`:: *Default: 10000* Set the interval in milliseconds to sample system and process performance metrics.
`ops.interval`:: *Default: 5000* Set the interval in milliseconds to sample system and process performance metrics.
The minimum value is 100.
`status.allowAnonymous`:: *Default: false* If authentication is enabled, setting this to `true` allows
unauthenticated users to access the Kibana server status API and status page.
2 changes: 1 addition & 1 deletion src/server/config/schema.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ module.exports = () => Joi.object({
.default(),

ops: Joi.object({
interval: Joi.number().default(10000),
interval: Joi.number().default(5000),
}),

plugins: Joi.object({
Expand Down

0 comments on commit e60f58a

Please sign in to comment.