-
Notifications
You must be signed in to change notification settings - Fork 72
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
relaxing types #7
Comments
That makes sense. Let me think about this and see what the right solution is. Do you have any sample logs you can share, even if just a few lines on the delays? thx Jian |
No problem:
i also noticed that the |
@cryptix now you can specify the type in the rule like this
Notice Also notice the last part of the rule, which is The fields are now specified in cmd/sequence/sequence.toml. You can add your own fields of the format I also fixed the DNS float issue. Please let me know you would be able to test this out. thx Jian |
Hi,
i'm trying to write rules for postfix, most of them contain a hexadecimal string, like a message ID.
The probleme here for me is that, in some cases these IDs are all digits and than
sequence
want's it to be an%integer%
instead, forcing me to duplicate my rules.In another instances of this, when it logs delays like this:
the numbers want to be
%float%
and%integer%
.With each such case the number of rules explodes. I'm asking if it wouldn't make more sense to let later processing deal with the validity of single fields. Maybe collapse float and int into a single number type? Or have maybe have another
%literal%
that ignores the type.kind regards,
cryptix
The text was updated successfully, but these errors were encountered: