| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- select bklog FROM /test/bucketstrulog
- /**
- output()
- match('bklog.len',5)
- **/
- ;
- SELECT bklog.time('2020-04-22', '').inst() FROM /test/bucketstrulog
- /**
- output()
- match('bklog.0.0','file1.log')
- **/
- ;
- SELECT bklog.date("2021-06-16").inst() FROM /test/bucketstrulog
- /**
- output()
- match('bklog.0.0','file1.log')
- **/
- ;
- SELECT bklog["file*.log"{116669996670004, 116669996680008}] FROM /test/bucketstrulog
- /**
- output()
- **/
- ;
- SELECT bklog["file1.log"{1,3,6,7}].time('2020-05-15 00:49:59,667', '').find( "twcs skipping" ) FROM /test/bucketstrulog
- /**
- output()
- **/
- ;
- SELECT bklog.time('2020-06-23 14:50','2020-06-23 15:00').find('twcs'),id FROM /test/bucketstrulog
- /**
- output()
- **/
- ;
- SELECT id FROM /test/bucketstrulog where bklog.time("2020-05-01","").find("INFO").assert()
- /**
- output()
- **/
- ;
|