Apps Can Now Report Problems Directly
Apps can now self-report operational problems — like broken credentials, failing integrations, or degraded services — directly visible in the Saleor Dashboard.
Your app knows something is wrong.
Now it can tell your operators.
When an app loses connection to a payment gateway or a tax provider starts returning errors, store operators shouldn't have to dig through logs to find out. Starting with Saleor 3.22.36, apps can report problems directly — and they show up right in the Dashboard.
The new Problems API gives apps a simple way to surface operational issues to the people who need to see them. Problems support aggregation (so repeated failures don't flood the UI), critical thresholds (so the right issues get attention), and dismissal (so resolved problems don't linger).
Use Cases
Payment gateway failures
Your payment app detects connection timeouts. It reports the problem with a critical threshold, so after a few failures the issue is flagged as critical in the Dashboard.
Missing credentials
An app can't find the API key it needs. It reports this immediately as critical, prompting the operator to configure it.
Degraded third-party services
A tax or shipping provider starts returning 503s intermittently. The app reports each failure, but only escalates to critical after repeated occurrences within a time window.
Any app can use this pattern. If your integration depends on external services, surface issues where operators already look.
See the documentation
API Examples
Reporting a Problem
When your app detects an issue, call appProblemCreate. The key groups related occurrences, and criticalThreshold controls when the problem becomes critical:
If the same problem is reported again within the aggregation window (30 minutes here), Saleor increments the counter instead of creating a duplicate. Once the count hits 5, isCritical flips to true.
Dismissing a Problem
When the issue resolves — say, the gateway is back online — dismiss it by key:
Querying Problems
Operators (or apps themselves) can query the current list of problems for any app:
Documentation
For the full API reference — including aggregation details, permissions, and staff dismissal — check out the Problems API documentation.
Read the full documentation