If there's a field in your data that represents auth status (success, etc.), you can set up your search using the != operator. (not equal to)
... myAuthStatusField!=success
Or, if you know what the value WOULD be for a failed login, it's better to be specific and use
... myAuthStatusField=failed (or denied, or whatever the value would potentially be)
Then set your search schedule to run every 5 minutes for a time range of the last 5 minutes. Set your alert conditions to "if number of events is greater than 9".
If you don't have that field defined and haven't extracted a new field before, you can read the full documentation here: http://docs.splunk.com/Documentation/Splunk/4.2.3/User/ExtractNewFields
... View more