Nix Observability Daemon
observability nix
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

filter out BuildLogLine and Progress logs in daemon

+8 -6
+8 -6
src/main.rs
··· 414 414 "result" => { 415 415 let res_type = ResultType::from(event.event_type); 416 416 417 - info!( 418 - id = event.id, 419 - res_type = %res_type, 420 - fields = ?event.fields, 421 - "result" 422 - ); 417 + if res_type != ResultType::BuildLogLine && res_type != ResultType::Progress { 418 + info!( 419 + id = event.id, 420 + res_type = %res_type, 421 + fields = ?event.fields, 422 + "result" 423 + ); 424 + } 423 425 424 426 if let Some(act) = s.active_activities.get_mut(&event.id) { 425 427 if res_type == ResultType::Progress {