Esempio n. 1
0
        public void SavedSearchHistory()
        {
            Service service = this.Connect();

            SavedSearchCollection savedSearches = service.GetSavedSearches();

            // Ensure test starts in a known good state
            if (savedSearches.ContainsKey("sdk-test1"))
            {
                savedSearches.Remove("sdk-test1");
            }

            Assert.IsFalse(savedSearches.ContainsKey("sdk-test1"), this.assertRoot + "#69");

            string search = "search index=sdk-tests * earliest=-1m";

            // Create a saved search
            SavedSearch savedSearch = savedSearches.Create("sdk test1", search);

            // Clear the history - even though we have a newly create saved search
            // its possible there was a previous saved search with the same name
            // that had a matching history.
            Job[] history = savedSearch.History();
            foreach (Job job in history)
            {
                job.Cancel();
            }

            history = savedSearch.History();
            Assert.AreEqual(0, history.Length, this.assertRoot + "#70");

            Job job1 = savedSearch.Dispatch();

            this.Ready(job1);
            history = savedSearch.History();
            Assert.AreEqual(1, history.Length, this.assertRoot + "#71");
            Assert.IsTrue(this.Contains(history, job1.Sid));

            Job job2 = savedSearch.Dispatch();

            this.Ready(job2);
            history = savedSearch.History();
            Assert.AreEqual(2, history.Length, this.assertRoot + "#72");
            Assert.IsTrue(this.Contains(history, job1.Sid), this.assertRoot + "#73");
            Assert.IsTrue(this.Contains(history, job2.Sid), this.assertRoot + "#74");

            job1.Cancel();
            history = savedSearch.History();
            Assert.AreEqual(1, history.Length, this.assertRoot + "#75");
            Assert.IsTrue(this.Contains(history, job2.Sid), this.assertRoot + "#76");

            job2.Cancel();
            history = savedSearch.History();
            Assert.AreEqual(0, history.Length, this.assertRoot + "#77");

            // Delete the saved search
            savedSearches.Remove("sdk test1");
            Assert.IsFalse(savedSearches.ContainsKey("sdk test1"), this.assertRoot + "#78");
        }
Esempio n. 2
0
        public void SavedSearchDispatch()
        {
            Service service = this.Connect();

            SavedSearchCollection savedSearches = service.GetSavedSearches();

            // Ensure test starts in a known good state
            if (savedSearches.ContainsKey("sdk-test1"))
            {
                savedSearches.Remove("sdk-test1");
            }

            Assert.IsFalse(savedSearches.ContainsKey("sdk-test1"), this.assertRoot + "#67");

            // Create a saved search
            Job         job;
            string      search      = "search index=sdk-tests * earliest=-1m";
            SavedSearch savedSearch = savedSearches.Create("sdk-test1", search);

            // Dispatch the saved search and wait for results.
            job = savedSearch.Dispatch();
            this.Wait(job);
            job.Results().Close();
            job.Cancel();

            // Dispatch with some additional search options
            job = savedSearch.Dispatch(new Args("dispatch.buckets", 100));
            this.Wait(job);
            job.Timeline().Close();
            job.Cancel();

            // Dispatch with some additional search options
            job = savedSearch.Dispatch(new Args("dispatch.earliest_time", "aaaa"));
            this.Wait(job);
            job.Timeline().Close();
            job.Cancel();

            var savedSearchDispatchArgs = new SavedSearchDispatchArgs();

            savedSearchDispatchArgs.ActionEmailAuthPassword           = "******";
            savedSearchDispatchArgs.ActionEmailAuthUsername           = "******";
            savedSearchDispatchArgs.ActionEmailBcc                    = "*****@*****.**";
            savedSearchDispatchArgs.ActionEmailCc                     = "*****@*****.**";
            savedSearchDispatchArgs.ActionEmailCommand                = "$name1$";
            savedSearchDispatchArgs.ActionEmailFormat                 = "text";
            savedSearchDispatchArgs.ActionEmailFrom                   = "*****@*****.**";
            savedSearchDispatchArgs.ActionEmailHostname               = "dummy1.host.com";
            savedSearchDispatchArgs.ActionEmailInline                 = true;
            savedSearchDispatchArgs.ActionEmailMailServer             = "splunk.com";
            savedSearchDispatchArgs.ActionEmailMaxResults             = 101;
            savedSearchDispatchArgs.ActionEmailMaxTime                = "10s";
            savedSearchDispatchArgs.ActionEmailPdfView                = "dummy";
            savedSearchDispatchArgs.ActionEmailReportPaperOrientation = "landscape";
            savedSearchDispatchArgs.ActionEmailReportPaperSize        = "letter";
            savedSearchDispatchArgs.ActionEmailReportServerEnabled    = false;
            savedSearchDispatchArgs.ActionEmailReportServerUrl        = "splunk.com";
            savedSearchDispatchArgs.ActionEmailSendPdf                = false;
            savedSearchDispatchArgs.ActionEmailSendResults            = false;
            savedSearchDispatchArgs.ActionEmailSubject                = "sdk-subject";
            savedSearchDispatchArgs.ActionEmailTo                     = "*****@*****.**";
            savedSearchDispatchArgs.ActionEmailTrackAlert             = false;
            savedSearchDispatchArgs.ActionEmailTtl                    = "61";
            savedSearchDispatchArgs.ActionEmailUseSsl                 = false;
            savedSearchDispatchArgs.ActionEmailUseTls                 = false;
            savedSearchDispatchArgs.ActionEmailWidthSortColumns       = false;
            savedSearchDispatchArgs.ActionPopulateLookupCommand       = "$name2$";
            savedSearchDispatchArgs.ActionPopulateLookupDest          = "dummypath";
            savedSearchDispatchArgs.ActionPopulateLookupHostname      = "dummy2.host.com";
            savedSearchDispatchArgs.ActionPopulateLookupMaxResults    = 102;
            savedSearchDispatchArgs.ActionPopulateLookupMaxTime       = "20s";
            savedSearchDispatchArgs.ActionPopulateLookupTrackAlert    = false;
            savedSearchDispatchArgs.ActionPopulateLookupTtl           = "62";
            savedSearchDispatchArgs.ActionRssCommand                  = "$name3$";
            savedSearchDispatchArgs.ActionRssHostname                 = "dummy3.host.com";
            savedSearchDispatchArgs.ActionRssMaxResults               = 103;
            savedSearchDispatchArgs.ActionRssMaxTime                  = "30s";
            savedSearchDispatchArgs.ActionRssTrackAlert               = false;
            savedSearchDispatchArgs.ActionRssTtl                 = "63";
            savedSearchDispatchArgs.ActionScriptCommand          = "$name4$";
            savedSearchDispatchArgs.ActionScriptFilename         = "action_script_filename";
            savedSearchDispatchArgs.ActionScriptHostname         = "dummy4.host.com";
            savedSearchDispatchArgs.ActionScriptMaxResults       = 104;
            savedSearchDispatchArgs.ActionScriptMaxTime          = "40s";
            savedSearchDispatchArgs.ActionScriptTrackAlert       = false;
            savedSearchDispatchArgs.ActionScriptTtl              = "64";
            savedSearchDispatchArgs.ActionSummaryIndexCommand    = "$name5$";
            savedSearchDispatchArgs.ActionSummaryIndexHostname   = "dummy5.host.com";
            savedSearchDispatchArgs.ActionSummaryIndexInline     = false;
            savedSearchDispatchArgs.ActionSummaryIndexMaxResults = 105;
            savedSearchDispatchArgs.ActionSummaryIndexMaxTime    = "50s";
            savedSearchDispatchArgs.ActionSummaryIndexTrackAlert = false;
            savedSearchDispatchArgs.ActionSummaryIndexTtl        = "65";
            savedSearchDispatchArgs.Actions = "rss,email,populate_lookup,script,summary_index";

            // Same as the previous dispatch except using custom arg
            job = savedSearch.Dispatch(savedSearchDispatchArgs);
            this.Wait(job);
            job.Timeline().Close();
            job.Cancel();

            // Delete the saved search
            savedSearches.Remove("sdk-test1");
            Assert.IsFalse(savedSearches.ContainsKey("sdk-test1"), this.assertRoot + "#68");
        }