Splunk Search

splunk custom command python sdk set level for logging

spammenot66
Contributor

how do i set the logging level if i use the splunk.minining.dcutils? Is it possible to do it from within the python script or is it done in some config file?

import splunk.mining.dcutils as dcu
logger = dcu.getLogger()

The Root-level logger has this method avail
import logging

logger = logging.getLogger() # Root-level logger

Set level of logger source. Use debug for development time options, then bump it up

to logging.INFO after your script is working well to avoid excessive logging.

logger.setLevel(logging.INFO)

0 Karma
Get Updates on the Splunk Community!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...