* feat: implement quiet mode to filter verbose logs Add QUIET_MODE environment variable (set to "true" or "1" to enable) that: - Filters logs with the "windmill_verbose" target via tracing_init - Increases frequency of periodic logs by 10x when enabled - Marks per-job worker logs as verbose so they are suppressed in quiet mode Key changes: - Add QUIET_MODE lazy_static and VERBOSE_TARGET constant to tracing_init.rs - Create create_targets_filter() helper that filters windmill_verbose target - Mark periodic "still running" and "memory snapshot" logs with VERBOSE_TARGET - Mark per-job "fetched job", "started handling", "job finished" logs as verbose - Increase memory snapshot interval from every 10 ticks to every 100 ticks in quiet mode - Increase "still running" log interval from every tick to every 10 ticks in quiet mode - Add quiet mode notification in job logs Closes #7477 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com> * Update tracing_init.rs * Update worker.rs * Remove target from tracing info logs --------- Co-authored-by: claude[bot] <41898282+claude[bot]@users.noreply.github.com> Co-authored-by: windmill-internal-app[bot] <windmill-internal-app[bot]@users.noreply.github.com> Co-authored-by: Ruben Fiszel <ruben@windmill.dev>
Windmill Backend
This folder holds all backend components, the src/ folder only contains files used to build the "root" binary.
Components
| name | description |
|---|---|
| windmill-api | The API server, exposing functionality to other components and the frontend |
| windmill-audit | Contains audit functionality, allowing different components to record important actions |
| windmill-common | Common code shared by all crates |
| windmill-queue | Contains job & flow queuing functionality, commonly written to by the API server and read from by workers |
| windmill-worker | The worker. Used to process and execute flows & jobs. |
| parsers | Contains code to parse signatures in different langauges. |
Compile sqlx for offline ci
cargo sqlx prepare --workspace -- --bin windmill --features enterprise