Hi @Bellthazor,
Please try below;
| eval ext_count=mvcount(split(filename,"."))
| where ext_count>2
Hi @Bellthazor,
Please try below;
| eval ext_count=mvcount(split(filename,"."))
| where ext_count>2
Perhaps the regex command will help.
... | regex field=filename "\.\w+\.\w+
"