Collaborative ALM
Free SaaS for open source projects on Amazon EC2
         
Build Log Filtering
Tags:   No tags associated yet.
All Tags...
All Successful builds
def accept(item) {
   return item.status == 'Successful'
}

All Failed builds

def accept(item) {
    return item.status == 'Failed'
}

New build today ?

def accept(item) {
   return util.today(item.started)
}

All Failed builds this week

def accept(item) {
   return util.thisWeek(item.finished) && item.status == 'Failed'
}