Support Questions

Find answers, ask questions, and share your expertise
Announcements
Welcome to the upgraded Community! Read this blog to see What’s New!

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

avatar
Contributor

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

1 ACCEPTED SOLUTION

avatar

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

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