Use this for code-level issues like leftover debug logs, excessive payloads, or logs in hot paths. The waste stops being generated instead of being filtered downstream.
How it works
Tero analyzes your codebase to find the instrumentation generating the waste. It creates a branch, makes the change, and opens a pull request. Your team reviews the PR like any other code change.Setup
Connect your source control:Example
Tero identifies a debug log statement incheckout-api that shipped to production. The log says "got here lol" and fires 50,000 times per day.
You approve the rule and select “Open PRs.” Tero locates the log statement in your codebase:
When to use
Open PRs works best when:- The waste is clearly a mistake (debug logs, forgotten print statements)
- The fix is straightforward (remove a line, change a log level)
- You want a permanent fix, not ongoing filtering