/[pxelator]/couchdb/syslog/views/timeline-without-cron/map.js
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /couchdb/syslog/views/timeline-without-cron/map.js

Parent Directory Parent Directory | Revision Log Revision Log


Revision 302 - (show annotations)
Wed Aug 26 16:34:59 2009 UTC (14 years, 7 months ago) by dpavlin
File MIME type: application/javascript
File size: 144 byte(s)
use _id instread of time or timestamp
1 function(doc) {
2 if (
3 doc.package == 'syslogd'
4 && doc.tag != 'CRON'
5 && doc.tag != '/USR/SBIN/CRON'
6 )
7 emit(doc._id, doc.message);
8 }

  ViewVC Help
Powered by ViewVC 1.1.26