Support Questions

Find answers, ask questions, and share your expertise
Announcements
Celebrating as our community reaches 100,000 members! Thank you!

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

avatar
Expert Contributor

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

1 ACCEPTED SOLUTION

avatar
Master Guru

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

avatar
Master Guru

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);