The date string in Example1 is not a quoted string so the field value breaks on the first whitespace after the equals sign (default behaviour). All the other ExampleX fields are single value strings. Note, in the following run anywhere example, the Example1 value is quoted and default key value (kv) field extraction works okay.
| stats count as _raw | eval _raw="Nov 2 2015 11:06:00:200AM , Example1=\"Nov 2 2015 11:06:00:260AM\" , Example2=ALONGNUMBER, Example3=7 , Example4=7 , Example5=STANDARD, Example6=AGuestAccount , Example7=SomeCommand, Example8=example-server, Example9=5992, Example10=60" |extract
However, you can't expect to be able to change you source data so that it's a quoted string, so Splunk also allows you to define delimiters for the kv field extraction. Here's another run anywhere example where Example1 is not a quoted string and the kv splits on the comma.
| stats count as _raw | eval _raw="Nov 2 2015 11:06:00:200AM , Example1=Nov 2 2015 11:06:00:260AM , Example2=ALONGNUMBER, Example3=7 , Example4=7 , Example5=STANDARD, Example6=AGuestAccount , Example7=SomeCommand, Example8=example-server, Example9=5992, Example10=60" | extract pairdelim="," kvdelim="="
Best of all, Splunk can be configured to automatically extract kv fields using props and transforms configuration. I suggest you read the following Splunk blog article for more details.
http://blogs.splunk.com/2008/02/12/delimiter-based-key-value-pair-extraction/
Hope this helps.
... View more