Hi All , I am new to Splunk n facing a similar issue, Added all dlls from nuget n setup an account with Token, But I don't see any logs in dash board on search Need a Help on this below is the code - ServicePointManager.ServerCertificateValidationCallback = delegate { return true; }; var middleware = new HttpEventCollectorResendMiddleware(100); var ecSender = new HttpEventCollectorSender(new Uri("http://localhost:8088/"), "bacdb24e-ee37-40cc-8d81-9b2f6d95784f", null, HttpEventCollectorSender.SendMode.Sequential, 0, 0, 0, middleware.Plugin); ecSender.OnError += o => Console.WriteLine(o.Message); ecSender.Send(DateTime.UtcNow.AddDays(-1), Guid.NewGuid().ToString(), "INFO", null, new { Foo = "Bar", test2 = "Testit2", time = ConvertToEpoch(DateTime.UtcNow.AddHours(-2)).ToString(), anotherkey="RohitKeyvalue1" }); ecSender.Send(Guid.NewGuid().ToString(), "INFO", null, new { Foo = "Bar", test2 = "Testit2", time = ConvertToEpoch(DateTime.UtcNow.AddHours(-2)).ToString(), anotherkey = "RohitKeyvalue2" }); await ecSender.FlushAsync();
... View more