<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254722#M48921</link>
    <description>&lt;P&gt;Try setting the security policy to use TLS. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Tue, 01 Dec 2015 22:55:23 GMT</pubDate>
    <dc:creator>gblock_splunk</dc:creator>
    <dc:date>2015-12-01T22:55:23Z</dc:date>
    <item>
      <title>Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254717#M48916</link>
      <description>&lt;P&gt;I have the 15 day trial version of Splunk Cloud. The Http Event Collector documentation &lt;A href="http://dev.splunk.com/view/event-collector/SP-CAAAE7F"&gt;http://dev.splunk.com/view/event-collector/SP-CAAAE7F&lt;/A&gt; says: Note: To turn on HTTP Event Collector in Splunk Cloud, file a request ticket with Splunk Support.&lt;/P&gt;

&lt;P&gt;Since this is a trial version I am not allowed to submit a support ticket. How do I get Http Event Collector enabled?&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 20:16:22 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254717#M48916</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2015-12-01T20:16:22Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254718#M48917</link>
      <description>&lt;P&gt;Hi @simpkins1958.&lt;/P&gt;

&lt;P&gt;You can now enable HTTP Event Collector yourself in Trial / Single Instance. Go to Settings-&amp;gt;Data Inputs-&amp;gt;HTTP Event Collector from there you can enable the collector and create a token. &lt;/P&gt;

&lt;P&gt;In order to create requests, you need to prefix the URI of your cloud instance with "input-", i.e. see the curl below&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;curl -k &lt;A href="https://input-prd-p-j65vnzzl9wc8.cloud.splunk.com:8088/services/collector" target="test_blank"&gt;https://input-prd-p-j65vnzzl9wc8.cloud.splunk.com:8088/services/collector&lt;/A&gt; -H 'Authorization: Splunk  498FEC9B-86E2-4CD0-B489-4A55E2D52B07' -d '{"event":"event1"} {"event":"event2"}'
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Notice I've added "input-" then the instance. Also the port + /services/collector endpoint are there.&lt;/P&gt;

&lt;P&gt;As a side note, Splunk Cloud trial uses a self-signed cert, so you need to disabled cert validation if using HTTPS which is what the '-k' switch does with curl.&lt;/P&gt;

&lt;P&gt;Let me know if you have any issues.&lt;/P&gt;

&lt;P&gt;Thanks&lt;BR /&gt;
Glenn&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 21:12:43 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254718#M48917</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-01T21:12:43Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254719#M48918</link>
      <description>&lt;P&gt;Thanks Glenn. I added the prefix and postfix and I am able to get it to work with curl. But it is not working when using from our C# code using our version of Splunk.Logging.Common. HTTPS is working fine from our C# code when sending data to an on prem instance of Splunk, but not Splunk Cloud. I will keep investigating.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 22:42:04 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254719#M48918</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2015-12-01T22:42:04Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254720#M48919</link>
      <description>&lt;P&gt;And we have disabled cert validation using:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;            ServicePointManager.ServerCertificateValidationCallback += (sender, certificate, chain, sslPolicyErrors) =&amp;gt;
            {
                return true;
            };
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Dec 2015 22:46:21 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254720#M48919</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2015-12-01T22:46:21Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254721#M48920</link>
      <description>&lt;P&gt;InnerException is: &lt;/P&gt;

&lt;UL&gt;
&lt;LI&gt;      InnerException  {"The request was aborted: Could not create SSL/TLS secure channel."}   System.Exception {System.Net.WebException}&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Tue, 01 Dec 2015 22:50:41 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254721#M48920</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2015-12-01T22:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254722#M48921</link>
      <description>&lt;P&gt;Try setting the security policy to use TLS. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 01 Dec 2015 22:55:23 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254722#M48921</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-01T22:55:23Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254723#M48922</link>
      <description>&lt;P&gt;Tried setting the security policy to use TLS still not working with Splunk Cloud. &lt;/P&gt;

&lt;P&gt;Tried again with my local Splunk server using HTTPS and working fine. &lt;/P&gt;

&lt;P&gt;I set a break point in ServerCertificateValidationCallback, which is never getting hit when trying to send to Splunk Cloud but is getting hit when sending to local Splunk Server.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 23:09:26 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254723#M48922</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2015-12-01T23:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254724#M48923</link>
      <description>&lt;P&gt;Based on some googling around I also tried:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;            ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Also not working.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 23:19:37 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254724#M48923</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2015-12-01T23:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254725#M48924</link>
      <description>&lt;P&gt;It sounds like this is a .NET related issue based on the fact that you can successfully curl. Can you try using HttpClient directly and see if you are able to send data? &lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 23:24:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254725#M48924</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-01T23:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254726#M48925</link>
      <description>&lt;P&gt;I am going to do a test against a trial instance we just deployed and see if that works.&lt;/P&gt;</description>
      <pubDate>Tue, 01 Dec 2015 23:25:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254726#M48925</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-01T23:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254727#M48926</link>
      <description>&lt;P&gt;Jim, what version of Windows are you running? Splunk Cloud uses Elliptical Curve certs. I've noticed on Stack Overflow, some folks having &lt;A href="http://stackoverflow.com/questions/30576179/what-could-cause-the-certificate-key-algorithm-is-not-supported-exception-on-a"&gt;issues&lt;/A&gt; with this type of cert. &lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2015 00:56:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254727#M48926</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-02T00:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254728#M48927</link>
      <description>&lt;P&gt;My dev VM I am running from is Windows 2008 R2. I will try on a Windows 2012 server.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2015 02:11:16 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254728#M48927</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2015-12-02T02:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254729#M48928</link>
      <description>&lt;P&gt;OK, I found something based on &lt;A href="http://stackoverflow.com/questions/2859790/the-request-was-aborted-could-not-create-ssl-tls-secure-channel"&gt;this&lt;/A&gt; article.&lt;/P&gt;

&lt;P&gt;Try this:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;ServicePointManager.Expect100Continue = true;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 02 Dec 2015 02:35:53 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254729#M48928</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-02T02:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254730#M48929</link>
      <description>&lt;P&gt;Looks like there are multiple reasons this can happen. I am going to try Windows 10 and see if I experience the same.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2015 02:38:10 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254730#M48929</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-02T02:38:10Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254731#M48930</link>
      <description>&lt;P&gt;I tried on Windows 2012 R2 server, and it is also not working with splunk cloud but works with my local splunk server.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2015 03:05:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254731#M48930</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2015-12-02T03:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254732#M48931</link>
      <description>&lt;P&gt;Yeah, if you look in the Stack Overflow, people were hitting it with 2012. The difference is that you are not running with an  Elliptical Curve cert locally, and that I am guessing is where the issue lies.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2015 03:16:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254732#M48931</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-02T03:16:28Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254733#M48932</link>
      <description>&lt;P&gt;I tried on Windows 10, and am hitting the same issue. My strong hunch at this point is the Elliptical Curve certs may be the issue, though I cannot say for sure.&lt;/P&gt;</description>
      <pubDate>Wed, 02 Dec 2015 03:47:12 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254733#M48932</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-02T03:47:12Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254734#M48933</link>
      <description>&lt;P&gt;Want to give an update here. I am working directly with Microsoft now as it looks like the "may" be a bug in the HTTP stack for .NET that is preventing allowing you to ignore self-signed Elliptical Curved Certs (which Splunk Cloud uses). I'll update back when I know for sure and if there any next steps.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2015 23:39:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254734#M48933</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-03T23:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254735#M48934</link>
      <description>&lt;P&gt;Thanks for the update.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Dec 2015 23:43:40 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254735#M48934</guid>
      <dc:creator>simpkins1958</dc:creator>
      <dc:date>2015-12-03T23:43:40Z</dc:date>
    </item>
    <item>
      <title>Re: Splunk Cloud Trial and Http Event Collector - NOT WORKING</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254736#M48935</link>
      <description>&lt;P&gt;New update.&lt;/P&gt;

&lt;P&gt;This will not work today in cloud trial or single instance. We are addressing this though and should have this fixed in a few weeks&lt;/P&gt;

&lt;P&gt;I have validated that it works fine in a clustered Splunk Cloud environment.&lt;/P&gt;

&lt;P&gt;Thanks for your patience.&lt;/P&gt;</description>
      <pubDate>Thu, 10 Dec 2015 01:52:50 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Splunk-Cloud-Trial-and-Http-Event-Collector-NOT-WORKING/m-p/254736#M48935</guid>
      <dc:creator>gblock_splunk</dc:creator>
      <dc:date>2015-12-10T01:52:50Z</dc:date>
    </item>
  </channel>
</rss>

