Having trouble querying Splunk API for a set of events by day. My goal is to return JSON with seven days of event counts (impressions and uniques) for a set of server logs. The search is as follows:
index=assets_index gid=30 | timechart count(clientip) AS Impressions dc(clientip) AS Uniques
When I run this search, and get the results in terminal:
curl -u admin:ourpass -k https://ourserver.com:8089/services/search/jobs -d"search=search index=assets_index gid=30 | timechart count(clientip) AS Impressions dc(clientip) AS Uniques"
curl -u admin:ourpass \
-k https://ourserver.com:8089/services/search/jobs/1357597855.2304/results/ \
--get -d output_mode=json
I get the raw events from the search and not the results (running this in the Web search App returns the results I want). I'm sure there's an easy way to request results that gets this to work, but I can't find it. Help.