Logging.verbose: true causing ValidationError

In kibana.yml after setting logging.verbose: true (to get more details kibana logs) it's throwing following error,

kibana-pod - INFO 1 139712313976640 1000 - - Starting kibana process
FATAL { ValidationError: child "logging" fails because [child "verbose" fails because ["verbose" must be one of [false]]]
at Object.exports.process (/usr/share/kibana/node_modules/joi/lib/errors.js:140:17)
at internals.Any._validateWithOptions (/usr/share/kibana/node_modules/joi/lib/any.js:649:25)
at root.validate (/usr/share/kibana/node_modules/joi/lib/index.js:102:23)
at Config._commit (/usr/share/kibana/src/server/config/config.js:134:38)
at Config.set (/usr/share/kibana/src/server/config/config.js:104:12)
at Config.extendSchema (/usr/share/kibana/src/server/config/config.js:74:12)
at /usr/share/kibana/src/server/config/config.js:63:17
at arrayEach (/usr/share/kibana/node_modules/lodash/index.js:1289:13)
at Function. (/usr/share/kibana/node_modules/lodash/index.js:3345:13)
at Config.extendSchema (/usr/share/kibana/src/server/config/config.js:62:36)
at new Config (/usr/share/kibana/src/server/config/config.js:49:10)
at Function.withDefaultSchema (/usr/share/kibana/src/server/config/config.js:39:14)
at KbnServer.module.exports (/usr/share/kibana/src/server/config/setup.js:13:42)
at KbnServer. (/usr/share/kibana/src/server/kbn_server.js:107:20)
at undefined.next (native)
at step (/usr/share/kibana/src/server/kbn_server.js:7:273)
name: 'ValidationError',
details:
[ { message: '"verbose" must be one of [false]',
path: 'logging.verbose',
type: 'any.allowOnly',
context: [Object] } ],
_object:
{ pkg:
{ version: '5.3.1',
buildNum: 1,
buildSha: 'b23df36f148b509eec489d1b70ee6326d83571a4' },
dev: { basePathProxyTarget: 5603 },
pid: { exclusive: false },
server:
{ port: 5601,
host: '0.0.0.0',
name: 'kibana-3292000500-z6gpt',
maxPayloadBytes: 1048576,
autoListen: true,
defaultRoute: '/app/kibana',
basePath: '',
ssl: [Object],
cors: false,
xsrf: [Object] },
logging: { quiet: true, verbose: true } },
annotate: [Function] }

I am using Kibana 5.3 version, why it's throwing this error?

Very strange, I added that to my kibana.yml in 5.3.1 and it works as expected.

How are you starting kibana? By running bin/kibana? Can you post a bit more of the console output before the error occurs? Do you have x-pack or any other plugins installed? If you run with logging.verbose: false does kibana run?

@Stacey_Gammon thanks for stop by here, actually i missed to make change "logging.quiet:false" since I enable "logging.verbose:true" logging.quiet should be set to false. Latter I realized the same. So closing it, thanks again :slight_smile:

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