From singh.janmejay at gmail.com Fri Feb 27 14:05:06 2015 From: singh.janmejay at gmail.com (singh.janmejay) Date: Fri, 27 Feb 2015 18:35:06 +0530 Subject: [Lognorm] PR for field-type 'float' and field-types for parsing suffixed-values('suffixed' and 'named_suffixed') Message-ID: - Implemented float (a type that parses real numbers in form of nnn.nnn) (note that this doesn't handle n.nnne^nn or any other scientific notation, but then those are not all that common in logs) - Implemented suffixed and named_suffixed field types that allow parsing of fields that have one of many potential suffixes (like a disk-space value which may have suffix kb, mb, gb etc). Field named_suffixed does exactly the same thing as suffixed, but allows user to name the parsed-value and suffix field unlike suffixed, which provides default names "value" and "suffix". - Tokenized wasn't working with lognorm special characters ('%' and ':') because it wasn't unescaping token-string, which is now fixed. -- Regards, Janmejay http://codehunk.wordpress.com From rgerhards at hq.adiscon.com Fri Feb 27 14:25:26 2015 From: rgerhards at hq.adiscon.com (Rainer Gerhards) Date: Fri, 27 Feb 2015 14:25:26 +0100 Subject: [Lognorm] PR for field-type 'float' and field-types for parsing suffixed-values('suffixed' and 'named_suffixed') In-Reply-To: References: Message-ID: 2015-02-27 14:05 GMT+01:00 singh.janmejay : > - Implemented float (a type that parses real numbers in form of > nnn.nnn) (note that this doesn't handle n.nnne^nn or any other > scientific notation, but then those are not all that common in logs) > > - Implemented suffixed and named_suffixed field types that allow > parsing of fields that have one of many potential suffixes (like a > disk-space value which may have suffix kb, mb, gb etc). Field > named_suffixed does exactly the same thing as suffixed, but allows > user to name the parsed-value and suffix field unlike suffixed, which > provides default names "value" and "suffix". > > - Tokenized wasn't working with lognorm special characters ('%' and > ':') because it wasn't unescaping token-string, which is now fixed. > > > This sounds really good. Given the fact that I was about to release the current version, I think it would make sense to postpone that for a few days to permit releasing the new things in that same release. Any concerns? Rainer > > -- > Regards, > Janmejay > http://codehunk.wordpress.com > _______________________________________________ > Lognorm mailing list > Lognorm at lists.adiscon.com > http://lists.adiscon.net/mailman/listinfo/lognorm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From singh.janmejay at gmail.com Fri Feb 27 14:57:12 2015 From: singh.janmejay at gmail.com (singh.janmejay) Date: Fri, 27 Feb 2015 19:27:12 +0530 Subject: [Lognorm] PR for field-type 'float' and field-types for parsing suffixed-values('suffixed' and 'named_suffixed') In-Reply-To: References: Message-ID: Sounds good. Also, noticed we don't enable test-bench and valgrind on travis. It'll be very useful to have them enabled for travis. Also, we should probably enable regex too on travis(infact all optional things should be enabled to exercise as many tests as possible). Shall I do this in current PR? On Fri, Feb 27, 2015 at 6:55 PM, Rainer Gerhards wrote: > 2015-02-27 14:05 GMT+01:00 singh.janmejay : >> >> - Implemented float (a type that parses real numbers in form of >> nnn.nnn) (note that this doesn't handle n.nnne^nn or any other >> scientific notation, but then those are not all that common in logs) >> >> - Implemented suffixed and named_suffixed field types that allow >> parsing of fields that have one of many potential suffixes (like a >> disk-space value which may have suffix kb, mb, gb etc). Field >> named_suffixed does exactly the same thing as suffixed, but allows >> user to name the parsed-value and suffix field unlike suffixed, which >> provides default names "value" and "suffix". >> >> - Tokenized wasn't working with lognorm special characters ('%' and >> ':') because it wasn't unescaping token-string, which is now fixed. >> >> > > This sounds really good. Given the fact that I was about to release the > current version, I think it would make sense to postpone that for a few > days to permit releasing the new things in that same release. > > Any concerns? > Rainer >> >> >> -- >> Regards, >> Janmejay >> http://codehunk.wordpress.com >> _______________________________________________ >> Lognorm mailing list >> Lognorm at lists.adiscon.com >> http://lists.adiscon.net/mailman/listinfo/lognorm > > > > _______________________________________________ > Lognorm mailing list > Lognorm at lists.adiscon.com > http://lists.adiscon.net/mailman/listinfo/lognorm > -- Regards, Janmejay http://codehunk.wordpress.com From rgerhards at hq.adiscon.com Fri Feb 27 15:34:35 2015 From: rgerhards at hq.adiscon.com (Rainer Gerhards) Date: Fri, 27 Feb 2015 15:34:35 +0100 Subject: [Lognorm] PR for field-type 'float' and field-types for parsing suffixed-values('suffixed' and 'named_suffixed') In-Reply-To: References: Message-ID: 2015-02-27 14:57 GMT+01:00 singh.janmejay : > Sounds good. > > Also, noticed we don't enable test-bench and valgrind on travis. It'll > be very useful to have them enabled for travis. Also, we should > probably enable regex too on travis(infact all optional things should > be enabled to exercise as many tests as possible). > > Shall I do this in current PR? > > yes, please do! Side-note: do you have some logs to share for the tests and research I am currently working on? Rainer > On Fri, Feb 27, 2015 at 6:55 PM, Rainer Gerhards > wrote: > > 2015-02-27 14:05 GMT+01:00 singh.janmejay : > >> > >> - Implemented float (a type that parses real numbers in form of > >> nnn.nnn) (note that this doesn't handle n.nnne^nn or any other > >> scientific notation, but then those are not all that common in logs) > >> > >> - Implemented suffixed and named_suffixed field types that allow > >> parsing of fields that have one of many potential suffixes (like a > >> disk-space value which may have suffix kb, mb, gb etc). Field > >> named_suffixed does exactly the same thing as suffixed, but allows > >> user to name the parsed-value and suffix field unlike suffixed, which > >> provides default names "value" and "suffix". > >> > >> - Tokenized wasn't working with lognorm special characters ('%' and > >> ':') because it wasn't unescaping token-string, which is now fixed. > >> > >> > > > > This sounds really good. Given the fact that I was about to release the > > current version, I think it would make sense to postpone that for a few > > days to permit releasing the new things in that same release. > > > > Any concerns? > > Rainer > >> > >> > >> -- > >> Regards, > >> Janmejay > >> http://codehunk.wordpress.com > >> _______________________________________________ > >> Lognorm mailing list > >> Lognorm at lists.adiscon.com > >> http://lists.adiscon.net/mailman/listinfo/lognorm > > > > > > > > _______________________________________________ > > Lognorm mailing list > > Lognorm at lists.adiscon.com > > http://lists.adiscon.net/mailman/listinfo/lognorm > > > > > > -- > Regards, > Janmejay > http://codehunk.wordpress.com > _______________________________________________ > Lognorm mailing list > Lognorm at lists.adiscon.com > http://lists.adiscon.net/mailman/listinfo/lognorm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From singh.janmejay at gmail.com Fri Feb 27 15:48:44 2015 From: singh.janmejay at gmail.com (singh.janmejay) Date: Fri, 27 Feb 2015 20:18:44 +0530 Subject: [Lognorm] PR for field-type 'float' and field-types for parsing suffixed-values('suffixed' and 'named_suffixed') In-Reply-To: References: Message-ID: Let me reach out to teams in my org to see if we can share log-samples (some privacy stuff may be involved). I want to do this, but somehow never got to it. Will start the conversation asap. On Fri, Feb 27, 2015 at 8:04 PM, Rainer Gerhards wrote: > 2015-02-27 14:57 GMT+01:00 singh.janmejay : >> >> Sounds good. >> >> Also, noticed we don't enable test-bench and valgrind on travis. It'll >> be very useful to have them enabled for travis. Also, we should >> probably enable regex too on travis(infact all optional things should >> be enabled to exercise as many tests as possible). >> >> Shall I do this in current PR? >> > > yes, please do! > > Side-note: do you have some logs to share for the tests and research I am > currently working on? > > Rainer >> >> On Fri, Feb 27, 2015 at 6:55 PM, Rainer Gerhards >> wrote: >> > 2015-02-27 14:05 GMT+01:00 singh.janmejay : >> >> >> >> - Implemented float (a type that parses real numbers in form of >> >> nnn.nnn) (note that this doesn't handle n.nnne^nn or any other >> >> scientific notation, but then those are not all that common in logs) >> >> >> >> - Implemented suffixed and named_suffixed field types that allow >> >> parsing of fields that have one of many potential suffixes (like a >> >> disk-space value which may have suffix kb, mb, gb etc). Field >> >> named_suffixed does exactly the same thing as suffixed, but allows >> >> user to name the parsed-value and suffix field unlike suffixed, which >> >> provides default names "value" and "suffix". >> >> >> >> - Tokenized wasn't working with lognorm special characters ('%' and >> >> ':') because it wasn't unescaping token-string, which is now fixed. >> >> >> >> >> > >> > This sounds really good. Given the fact that I was about to release the >> > current version, I think it would make sense to postpone that for a few >> > days to permit releasing the new things in that same release. >> > >> > Any concerns? >> > Rainer >> >> >> >> >> >> -- >> >> Regards, >> >> Janmejay >> >> http://codehunk.wordpress.com >> >> _______________________________________________ >> >> Lognorm mailing list >> >> Lognorm at lists.adiscon.com >> >> http://lists.adiscon.net/mailman/listinfo/lognorm >> > >> > >> > >> > _______________________________________________ >> > Lognorm mailing list >> > Lognorm at lists.adiscon.com >> > http://lists.adiscon.net/mailman/listinfo/lognorm >> > >> >> >> >> -- >> Regards, >> Janmejay >> http://codehunk.wordpress.com >> _______________________________________________ >> Lognorm mailing list >> Lognorm at lists.adiscon.com >> http://lists.adiscon.net/mailman/listinfo/lognorm > > > > _______________________________________________ > Lognorm mailing list > Lognorm at lists.adiscon.com > http://lists.adiscon.net/mailman/listinfo/lognorm > -- Regards, Janmejay http://codehunk.wordpress.com From chrisp.schafer at gmail.com Sat Feb 28 00:30:59 2015 From: chrisp.schafer at gmail.com (Chris Schafer) Date: Fri, 27 Feb 2015 23:30:59 +0000 Subject: [Lognorm] PR for field-type 'float' and field-types for parsing suffixed-values('suffixed' and 'named_suffixed') References: Message-ID: Valgrind will need additional modifications for Travis to fire. On Fri, Feb 27, 2015 at 6:48 AM singh.janmejay wrote: > Let me reach out to teams in my org to see if we can share log-samples > (some privacy stuff may be involved). I want to do this, but somehow > never got to it. Will start the conversation asap. > > On Fri, Feb 27, 2015 at 8:04 PM, Rainer Gerhards > wrote: > > 2015-02-27 14:57 GMT+01:00 singh.janmejay : > >> > >> Sounds good. > >> > >> Also, noticed we don't enable test-bench and valgrind on travis. It'll > >> be very useful to have them enabled for travis. Also, we should > >> probably enable regex too on travis(infact all optional things should > >> be enabled to exercise as many tests as possible). > >> > >> Shall I do this in current PR? > >> > > > > yes, please do! > > > > Side-note: do you have some logs to share for the tests and research I am > > currently working on? > > > > Rainer > >> > >> On Fri, Feb 27, 2015 at 6:55 PM, Rainer Gerhards > >> wrote: > >> > 2015-02-27 14:05 GMT+01:00 singh.janmejay : > >> >> > >> >> - Implemented float (a type that parses real numbers in form of > >> >> nnn.nnn) (note that this doesn't handle n.nnne^nn or any other > >> >> scientific notation, but then those are not all that common in logs) > >> >> > >> >> - Implemented suffixed and named_suffixed field types that allow > >> >> parsing of fields that have one of many potential suffixes (like a > >> >> disk-space value which may have suffix kb, mb, gb etc). Field > >> >> named_suffixed does exactly the same thing as suffixed, but allows > >> >> user to name the parsed-value and suffix field unlike suffixed, which > >> >> provides default names "value" and "suffix". > >> >> > >> >> - Tokenized wasn't working with lognorm special characters ('%' and > >> >> ':') because it wasn't unescaping token-string, which is now fixed. > >> >> > >> >> > >> > > >> > This sounds really good. Given the fact that I was about to release > the > >> > current version, I think it would make sense to postpone that for a > few > >> > days to permit releasing the new things in that same release. > >> > > >> > Any concerns? > >> > Rainer > >> >> > >> >> > >> >> -- > >> >> Regards, > >> >> Janmejay > >> >> http://codehunk.wordpress.com > >> >> _______________________________________________ > >> >> Lognorm mailing list > >> >> Lognorm at lists.adiscon.com > >> >> http://lists.adiscon.net/mailman/listinfo/lognorm > >> > > >> > > >> > > >> > _______________________________________________ > >> > Lognorm mailing list > >> > Lognorm at lists.adiscon.com > >> > http://lists.adiscon.net/mailman/listinfo/lognorm > >> > > >> > >> > >> > >> -- > >> Regards, > >> Janmejay > >> http://codehunk.wordpress.com > >> _______________________________________________ > >> Lognorm mailing list > >> Lognorm at lists.adiscon.com > >> http://lists.adiscon.net/mailman/listinfo/lognorm > > > > > > > > _______________________________________________ > > Lognorm mailing list > > Lognorm at lists.adiscon.com > > http://lists.adiscon.net/mailman/listinfo/lognorm > > > > > > -- > Regards, > Janmejay > http://codehunk.wordpress.com > _______________________________________________ > Lognorm mailing list > Lognorm at lists.adiscon.com > http://lists.adiscon.net/mailman/listinfo/lognorm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From singh.janmejay at gmail.com Sat Feb 28 04:36:19 2015 From: singh.janmejay at gmail.com (singh.janmejay) Date: Sat, 28 Feb 2015 09:06:19 +0530 Subject: [Lognorm] PR for field-type 'float' and field-types for parsing suffixed-values('suffixed' and 'named_suffixed') In-Reply-To: References: Message-ID: What kind of modifications? -- Regards, Janmejay PS: Please blame the typos in this mail on my phone's uncivilized soft keyboard sporting it's not-so-smart-assist technology. On Feb 28, 2015 5:01 AM, "Chris Schafer" wrote: > Valgrind will need additional modifications for Travis to fire. > On Fri, Feb 27, 2015 at 6:48 AM singh.janmejay > wrote: > >> Let me reach out to teams in my org to see if we can share log-samples >> (some privacy stuff may be involved). I want to do this, but somehow >> never got to it. Will start the conversation asap. >> >> On Fri, Feb 27, 2015 at 8:04 PM, Rainer Gerhards >> wrote: >> > 2015-02-27 14:57 GMT+01:00 singh.janmejay : >> >> >> >> Sounds good. >> >> >> >> Also, noticed we don't enable test-bench and valgrind on travis. It'll >> >> be very useful to have them enabled for travis. Also, we should >> >> probably enable regex too on travis(infact all optional things should >> >> be enabled to exercise as many tests as possible). >> >> >> >> Shall I do this in current PR? >> >> >> > >> > yes, please do! >> > >> > Side-note: do you have some logs to share for the tests and research I >> am >> > currently working on? >> > >> > Rainer >> >> >> >> On Fri, Feb 27, 2015 at 6:55 PM, Rainer Gerhards >> >> wrote: >> >> > 2015-02-27 14:05 GMT+01:00 singh.janmejay > >: >> >> >> >> >> >> - Implemented float (a type that parses real numbers in form of >> >> >> nnn.nnn) (note that this doesn't handle n.nnne^nn or any other >> >> >> scientific notation, but then those are not all that common in logs) >> >> >> >> >> >> - Implemented suffixed and named_suffixed field types that allow >> >> >> parsing of fields that have one of many potential suffixes (like a >> >> >> disk-space value which may have suffix kb, mb, gb etc). Field >> >> >> named_suffixed does exactly the same thing as suffixed, but allows >> >> >> user to name the parsed-value and suffix field unlike suffixed, >> which >> >> >> provides default names "value" and "suffix". >> >> >> >> >> >> - Tokenized wasn't working with lognorm special characters ('%' and >> >> >> ':') because it wasn't unescaping token-string, which is now fixed. >> >> >> >> >> >> >> >> > >> >> > This sounds really good. Given the fact that I was about to release >> the >> >> > current version, I think it would make sense to postpone that for a >> few >> >> > days to permit releasing the new things in that same release. >> >> > >> >> > Any concerns? >> >> > Rainer >> >> >> >> >> >> >> >> >> -- >> >> >> Regards, >> >> >> Janmejay >> >> >> http://codehunk.wordpress.com >> >> >> _______________________________________________ >> >> >> Lognorm mailing list >> >> >> Lognorm at lists.adiscon.com >> >> >> http://lists.adiscon.net/mailman/listinfo/lognorm >> >> > >> >> > >> >> > >> >> > _______________________________________________ >> >> > Lognorm mailing list >> >> > Lognorm at lists.adiscon.com >> >> > http://lists.adiscon.net/mailman/listinfo/lognorm >> >> > >> >> >> >> >> >> >> >> -- >> >> Regards, >> >> Janmejay >> >> http://codehunk.wordpress.com >> >> _______________________________________________ >> >> Lognorm mailing list >> >> Lognorm at lists.adiscon.com >> >> http://lists.adiscon.net/mailman/listinfo/lognorm >> > >> > >> > >> > _______________________________________________ >> > Lognorm mailing list >> > Lognorm at lists.adiscon.com >> > http://lists.adiscon.net/mailman/listinfo/lognorm >> > >> >> >> >> -- >> Regards, >> Janmejay >> http://codehunk.wordpress.com >> _______________________________________________ >> Lognorm mailing list >> Lognorm at lists.adiscon.com >> http://lists.adiscon.net/mailman/listinfo/lognorm >> > > _______________________________________________ > Lognorm mailing list > Lognorm at lists.adiscon.com > http://lists.adiscon.net/mailman/listinfo/lognorm > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From chrisp.schafer at gmail.com Sat Feb 28 05:57:38 2015 From: chrisp.schafer at gmail.com (Chris Schafer) Date: Sat, 28 Feb 2015 04:57:38 +0000 Subject: [Lognorm] PR for field-type 'float' and field-types for parsing suffixed-values('suffixed' and 'named_suffixed') References: Message-ID: Unlike the options like docs that I added earlier by just adding --docs, you'll need to tell travis-ci to get additional packages first. see: https://travis-ci.org/SwissKid/liblognorm/builds/48466549 On Fri, Feb 27, 2015 at 7:36 PM singh.janmejay wrote: > What kind of modifications? > > -- > Regards, > Janmejay > > PS: Please blame the typos in this mail on my phone's uncivilized soft > keyboard sporting it's not-so-smart-assist technology. > > On Feb 28, 2015 5:01 AM, "Chris Schafer" wrote: > >> Valgrind will need additional modifications for Travis to fire. >> On Fri, Feb 27, 2015 at 6:48 AM singh.janmejay >> wrote: >> >>> Let me reach out to teams in my org to see if we can share log-samples >>> (some privacy stuff may be involved). I want to do this, but somehow >>> never got to it. Will start the conversation asap. >>> >>> On Fri, Feb 27, 2015 at 8:04 PM, Rainer Gerhards >>> wrote: >>> > 2015-02-27 14:57 GMT+01:00 singh.janmejay : >>> >> >>> >> Sounds good. >>> >> >>> >> Also, noticed we don't enable test-bench and valgrind on travis. It'll >>> >> be very useful to have them enabled for travis. Also, we should >>> >> probably enable regex too on travis(infact all optional things should >>> >> be enabled to exercise as many tests as possible). >>> >> >>> >> Shall I do this in current PR? >>> >> >>> > >>> > yes, please do! >>> > >>> > Side-note: do you have some logs to share for the tests and research I >>> am >>> > currently working on? >>> > >>> > Rainer >>> >> >>> >> On Fri, Feb 27, 2015 at 6:55 PM, Rainer Gerhards >>> >> wrote: >>> >> > 2015-02-27 14:05 GMT+01:00 singh.janmejay >> >: >>> >> >> >>> >> >> - Implemented float (a type that parses real numbers in form of >>> >> >> nnn.nnn) (note that this doesn't handle n.nnne^nn or any other >>> >> >> scientific notation, but then those are not all that common in >>> logs) >>> >> >> >>> >> >> - Implemented suffixed and named_suffixed field types that allow >>> >> >> parsing of fields that have one of many potential suffixes (like a >>> >> >> disk-space value which may have suffix kb, mb, gb etc). Field >>> >> >> named_suffixed does exactly the same thing as suffixed, but allows >>> >> >> user to name the parsed-value and suffix field unlike suffixed, >>> which >>> >> >> provides default names "value" and "suffix". >>> >> >> >>> >> >> - Tokenized wasn't working with lognorm special characters ('%' and >>> >> >> ':') because it wasn't unescaping token-string, which is now fixed. >>> >> >> >>> >> >> >>> >> > >>> >> > This sounds really good. Given the fact that I was about to release >>> the >>> >> > current version, I think it would make sense to postpone that for >>> a few >>> >> > days to permit releasing the new things in that same release. >>> >> > >>> >> > Any concerns? >>> >> > Rainer >>> >> >> >>> >> >> >>> >> >> -- >>> >> >> Regards, >>> >> >> Janmejay >>> >> >> http://codehunk.wordpress.com >>> >> >> _______________________________________________ >>> >> >> Lognorm mailing list >>> >> >> Lognorm at lists.adiscon.com >>> >> >> http://lists.adiscon.net/mailman/listinfo/lognorm >>> >> > >>> >> > >>> >> > >>> >> > _______________________________________________ >>> >> > Lognorm mailing list >>> >> > Lognorm at lists.adiscon.com >>> >> > http://lists.adiscon.net/mailman/listinfo/lognorm >>> >> > >>> >> >>> >> >>> >> >>> >> -- >>> >> Regards, >>> >> Janmejay >>> >> http://codehunk.wordpress.com >>> >> _______________________________________________ >>> >> Lognorm mailing list >>> >> Lognorm at lists.adiscon.com >>> >> http://lists.adiscon.net/mailman/listinfo/lognorm >>> > >>> > >>> > >>> > _______________________________________________ >>> > Lognorm mailing list >>> > Lognorm at lists.adiscon.com >>> > http://lists.adiscon.net/mailman/listinfo/lognorm >>> > >>> >>> >>> >>> -- >>> Regards, >>> Janmejay >>> http://codehunk.wordpress.com >>> _______________________________________________ >>> Lognorm mailing list >>> Lognorm at lists.adiscon.com >>> http://lists.adiscon.net/mailman/listinfo/lognorm >>> >> >> _______________________________________________ >> Lognorm mailing list >> Lognorm at lists.adiscon.com >> http://lists.adiscon.net/mailman/listinfo/lognorm >> >> _______________________________________________ > Lognorm mailing list > Lognorm at lists.adiscon.com > http://lists.adiscon.net/mailman/listinfo/lognorm > -------------- next part -------------- An HTML attachment was scrubbed... URL: From singh.janmejay at gmail.com Sat Feb 28 06:05:28 2015 From: singh.janmejay at gmail.com (singh.janmejay) Date: Sat, 28 Feb 2015 10:35:28 +0530 Subject: [Lognorm] PR for field-type 'float' and field-types for parsing suffixed-values('suffixed' and 'named_suffixed') In-Reply-To: References: Message-ID: Yep, did that. The patch installs libpcre and valgrind. It's failing in test compile, will fix it on Monday. -- Regards, Janmejay PS: Please blame the typos in this mail on my phone's uncivilized soft keyboard sporting it's not-so-smart-assist technology. On Feb 28, 2015 10:27 AM, "Chris Schafer" wrote: > Unlike the options like docs that I added earlier by just adding --docs, > you'll need to tell travis-ci to get additional packages first. > see: https://travis-ci.org/SwissKid/liblognorm/builds/48466549 > > On Fri, Feb 27, 2015 at 7:36 PM singh.janmejay > wrote: > >> What kind of modifications? >> >> -- >> Regards, >> Janmejay >> >> PS: Please blame the typos in this mail on my phone's uncivilized soft >> keyboard sporting it's not-so-smart-assist technology. >> >> On Feb 28, 2015 5:01 AM, "Chris Schafer" >> wrote: >> >>> Valgrind will need additional modifications for Travis to fire. >>> On Fri, Feb 27, 2015 at 6:48 AM singh.janmejay >>> wrote: >>> >>>> Let me reach out to teams in my org to see if we can share log-samples >>>> (some privacy stuff may be involved). I want to do this, but somehow >>>> never got to it. Will start the conversation asap. >>>> >>>> On Fri, Feb 27, 2015 at 8:04 PM, Rainer Gerhards >>>> wrote: >>>> > 2015-02-27 14:57 GMT+01:00 singh.janmejay : >>>> >> >>>> >> Sounds good. >>>> >> >>>> >> Also, noticed we don't enable test-bench and valgrind on travis. >>>> It'll >>>> >> be very useful to have them enabled for travis. Also, we should >>>> >> probably enable regex too on travis(infact all optional things should >>>> >> be enabled to exercise as many tests as possible). >>>> >> >>>> >> Shall I do this in current PR? >>>> >> >>>> > >>>> > yes, please do! >>>> > >>>> > Side-note: do you have some logs to share for the tests and research >>>> I am >>>> > currently working on? >>>> > >>>> > Rainer >>>> >> >>>> >> On Fri, Feb 27, 2015 at 6:55 PM, Rainer Gerhards >>>> >> wrote: >>>> >> > 2015-02-27 14:05 GMT+01:00 singh.janmejay < >>>> singh.janmejay at gmail.com>: >>>> >> >> >>>> >> >> - Implemented float (a type that parses real numbers in form of >>>> >> >> nnn.nnn) (note that this doesn't handle n.nnne^nn or any other >>>> >> >> scientific notation, but then those are not all that common in >>>> logs) >>>> >> >> >>>> >> >> - Implemented suffixed and named_suffixed field types that allow >>>> >> >> parsing of fields that have one of many potential suffixes (like a >>>> >> >> disk-space value which may have suffix kb, mb, gb etc). Field >>>> >> >> named_suffixed does exactly the same thing as suffixed, but allows >>>> >> >> user to name the parsed-value and suffix field unlike suffixed, >>>> which >>>> >> >> provides default names "value" and "suffix". >>>> >> >> >>>> >> >> - Tokenized wasn't working with lognorm special characters ('%' >>>> and >>>> >> >> ':') because it wasn't unescaping token-string, which is now >>>> fixed. >>>> >> >> >>>> >> >> >>>> >> > >>>> >> > This sounds really good. Given the fact that I was about to >>>> release the >>>> >> > current version, I think it would make sense to postpone that for >>>> a few >>>> >> > days to permit releasing the new things in that same release. >>>> >> > >>>> >> > Any concerns? >>>> >> > Rainer >>>> >> >> >>>> >> >> >>>> >> >> -- >>>> >> >> Regards, >>>> >> >> Janmejay >>>> >> >> http://codehunk.wordpress.com >>>> >> >> _______________________________________________ >>>> >> >> Lognorm mailing list >>>> >> >> Lognorm at lists.adiscon.com >>>> >> >> http://lists.adiscon.net/mailman/listinfo/lognorm >>>> >> > >>>> >> > >>>> >> > >>>> >> > _______________________________________________ >>>> >> > Lognorm mailing list >>>> >> > Lognorm at lists.adiscon.com >>>> >> > http://lists.adiscon.net/mailman/listinfo/lognorm >>>> >> > >>>> >> >>>> >> >>>> >> >>>> >> -- >>>> >> Regards, >>>> >> Janmejay >>>> >> http://codehunk.wordpress.com >>>> >> _______________________________________________ >>>> >> Lognorm mailing list >>>> >> Lognorm at lists.adiscon.com >>>> >> http://lists.adiscon.net/mailman/listinfo/lognorm >>>> > >>>> > >>>> > >>>> > _______________________________________________ >>>> > Lognorm mailing list >>>> > Lognorm at lists.adiscon.com >>>> > http://lists.adiscon.net/mailman/listinfo/lognorm >>>> > >>>> >>>> >>>> >>>> -- >>>> Regards, >>>> Janmejay >>>> http://codehunk.wordpress.com >>>> _______________________________________________ >>>> Lognorm mailing list >>>> Lognorm at lists.adiscon.com >>>> http://lists.adiscon.net/mailman/listinfo/lognorm >>>> >>> >>> _______________________________________________ >>> Lognorm mailing list >>> Lognorm at lists.adiscon.com >>> http://lists.adiscon.net/mailman/listinfo/lognorm >>> >>> _______________________________________________ >> Lognorm mailing list >> Lognorm at lists.adiscon.com >> http://lists.adiscon.net/mailman/listinfo/lognorm >> > > _______________________________________________ > Lognorm mailing list > Lognorm at lists.adiscon.com > http://lists.adiscon.net/mailman/listinfo/lognorm > > -------------- next part -------------- An HTML attachment was scrubbed... URL: