Question Most Common
Which Appian logs do you typically check during troubleshooting, and where can each of them be found?
A
Anonymous
January 9, 2026
118
Answer
Where to Find Logs
- Appian Cloud: Navigate to Appian Designer > Navigation Menu > System Logs. You can also access them directly via the /suite/logs URL.
- Self-Managed: Typically located in the <APPIAN_HOME>/logs/ directory on the application server.
Typically Logs
Design & Expression Errors
When a user encounters a "blue screen" or an expression fails, these are the logs to check:
- Design Error Log (design_errors.csv): The most critical log for developers. it captures every expression error that directly impacts a user, such as interface crashes or rule failures.
- Tomcat Standard Out (tomcat-stdout.log): The "Holy Book" for general platform debugging. It contains most technical errors generated by the application server.
Query Performance : To find out why a page is slow or a query is failing:
- Data Store Performance Log (perflogs/perf_monitor_db_*.csv): Breaks down queries into three phases: Prepare (Appian generating SQL), Execute (Time spent in the DB), and Transform (Converting results back to Appian objects).
Advanced Monitoring (Appian 2026 Standards)
- Appian Health Check: Always mention this first in an interview. It automatically analyzes all the logs above to identify high-risk findings and performance bottlenecks.
For details visit official Appian Docs
JuniorSeniorAdmin Console
Loading comments...