Support Questions

Find answers, ask questions, and share your expertise
Announcements
Check out our newest addition to the community, the Cloudera Data Analytics (CDA) group hub.

Where are Nifi Stats Monitor disk usage logs which are displayed in Nifi UI like Warnings and Errors stored?

Contributor

I mean in which logs the nifi warnings and errors are stored?

1 ACCEPTED SOLUTION

It should be in nifi-app.log... in the code it does:

context.getBulletinRepository().addBulletin(bulletin);
logger.warn(message);

The logger is a standard SLF4J logger which ends up being logback controlled by the logback.xml in the conf directory:

Logger logger = LoggerFactory.getLogger(MonitorDiskUsage.class);

View solution in original post

1 REPLY 1

It should be in nifi-app.log... in the code it does:

context.getBulletinRepository().addBulletin(bulletin);
logger.warn(message);

The logger is a standard SLF4J logger which ends up being logback controlled by the logback.xml in the conf directory:

Logger logger = LoggerFactory.getLogger(MonitorDiskUsage.class);
Take a Tour of the Community
Don't have an account?
Your experience may be limited. Sign in to explore more.