Support Questions

Find answers, ask questions, and share your expertise

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