Splunk Search

Stats search in SDK: Receiving task cancelled error

gsureshkumarcse
New Member

Hi Team,

I am trying to run stats splunk search using c# SDK and getting task cancelled error.
Kindly help me on this. I have tried with/without sleep too.

{
await service.LogOnAsync("USERNAME", "PASSWORD");
                Job job = await service.Jobs.CreateAsync("search index=windows_inetpub cs_uri_stem=\"*/search\" | stats count", 10);
                SearchResultStream stream;

                while (!job.IsDone)
                {
                    Thread.Sleep(1000);
                }

                using (stream = await job.GetSearchResultsAsync(1))
                {
                    try
                    {
                        foreach (SearchResult result in stream)
                        {
                            Console.WriteLine(string.Format("{0:D8}: {1}", stream.ReadCount, result));
                        }

                        Console.WriteLine("End of search results");
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine(string.Format("SearchResults error: {0}", e.Message));
                    }
                }
}

Any help on this will be more helpfull.

Thank you,
Suresh Kumar G.

0 Karma
Get Updates on the Splunk Community!

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...

Introducing the 2024 Splunk MVPs!

We are excited to announce the 2024 cohort of the Splunk MVP program. Splunk MVPs are passionate members of ...

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...