Browse Community
Help
Log In
Responses(2)
Solutions(0)
nbruce
53 Posts
0
December 22nd, 2016 14:00
Martin,
Here are a few KB's on ASL parsing.
Smarts Syslog Adapter: How do you enable debug logging for the Smarts Syslog adapter?
http://support.emc.com/kb/325120 Another option may be to enable debug logging, which this kb will show.
Ionix/Smarts ASL: How to I Parse based on delimiters using the Adapter Scripting Language
http://support.emc.com/kb/319327
Smarts ASL: How to test that my Smarts ASL script has the correct syntax?
http://support.emc.com/kb/318553
I'll see if I can find a better example for your question above.
Cheers,
martinboqvist
2 Posts
December 29th, 2016 07:00
Thanks Nate,
I managed to resolve this by using the following code;
PARSE_MESSAGE {
input = MESSAGE;
delim = "%";
unusedPrefix : word
slice : rep(word) eol
} do {
return slice;
}
Might not be the preferred way to do it but it works for now.
Dell Support Resources
View All
Top
nbruce
53 Posts
0
December 22nd, 2016 14:00
Martin,
Here are a few KB's on ASL parsing.
Smarts Syslog Adapter: How do you enable debug logging for the Smarts Syslog adapter?
http://support.emc.com/kb/325120 Another option may be to enable debug logging, which this kb will show.
Ionix/Smarts ASL: How to I Parse based on delimiters using the Adapter Scripting Language
http://support.emc.com/kb/319327
Smarts ASL: How to test that my Smarts ASL script has the correct syntax?
http://support.emc.com/kb/318553
I'll see if I can find a better example for your question above.
Cheers,
martinboqvist
2 Posts
0
December 29th, 2016 07:00
Thanks Nate,
I managed to resolve this by using the following code;
PARSE_MESSAGE {
input = MESSAGE;
delim = "%";
unusedPrefix : word
slice : rep(word) eol
} do {
return slice;
}
Might not be the preferred way to do it but it works for now.