For instance, all events with NULL TicketId can be retrieved by -
sourcetype=mysql_config NOT TicketId="*"
Hi,
i added | where len(sso_id)>0 this search with the above search ...
it is looks good ... working very good ...
Thank u ...
I downvoted this post because by mistake
Hi ,
index =casm_prod source =/opt/siteminder/log/smtracedefault.log sourcetype=smtrace supportcentral | rex "([[^]]]){10}[(?P[^]])]" |dedup sso_id | lookup identity_lookup sso as sso_id OUTPUT sso as matched_sso |where matched_sso!="NonNbcAccount"
This is working good ,
output ,
›
10/17/14
12:04:48.549 PM
example 1
[10/17/2014][09:04:48.549][1041173424][s1206273/r789][Supportcentral Internal][][][][][][127004108][][][][][][supportcentralalpcispweb536vprd][** Status: Authorized. ][]
host =useclpapl894.nbcuni.ge.com
matched_sso =127004108
source =/opt/siteminder/log/smtracedefault.log
sourcetype =smtrace
sso_id =127004108
example 1 is correct ..
›
10/17/14
12:04:48.547 PM
example 2 ,
[10/17/2014][09:04:48.547][1041173424][][][SupportCentral allow access][NBCU SC_Lib_Allow_Policy][][][][][][][][][][][Policy is applicable. Rule is applicable. Get Responses.][]
host =useclpapl894.nbcuni.ge.com
matched_sso ="NonNbcAccount"
source =/opt/siteminder/log/smtracedefault.log
sourcetype =smtrace
sso_id =
in example 2 is having null value , the 11th field is null [] ... but it is returning that value also ...
actually i dont want null value ..
For instance, all events with NULL TicketId can be retrieved by -
sourcetype=mysql_config NOT TicketId="*"
for example if you don't want "value OR value" you can use:
key!="value OR value" , the explanation point "bang" does the same function as the NOT
Is there another way, to search null without "NOT" ?
I user Sideview and Pulldowns with "+OR+" Separator... so the output from the pulldown for the underlying search is key="value OR value" I can't use NOT there...