Splunk Dev

starting with javascript sdk

sbobrovs
Engager

Dear Experts,
I am need to demo very simple chart of Splunk as part of my web site.
As I am not Javascript expert I am getting some error.

If i need to connect from my web server do I need the :

var http = new splunkjs.ProxyHttp("/proxy");

the error that i am getting is

  1. POST http://localhost:58810/proxy/services/auth/login?output_mode=json 404 (Not Found) jquery.min.js:4
  2. List item

Can any once send me working sample ? for external web server.

Many Thanks,
Shachar

Tags (2)
0 Karma

Neeraj_Luthra
Splunk Employee
Splunk Employee

Hi Shachar,
By default, browsers don’t allow cross origin communication (http://en.wikipedia.org/wiki/Same_origin_policy). I suggest that you follow an approach similar to what is in the UI examples that are shipped with the Splunk SDK for JavaScript, i.e. go through a proxy -

var http = new splunkjs.ProxyHttp( "/proxy" );

In addition to that, since your webserver is different from where Splunk is running, you will also need to tell your web server to handle these proxy requests and delegate them to the right address, i.e. Splunk’s management port.

For Apache, adding these 2 lines to httpd.conf does the trick.


SSLProxyEngine On
ProxyPass /proxy/ https://localhost:8089/

You will have to do something similar to your web server’s conf. Make sure to put the right host and port depending on your splunk configuration.

Hope this helps.

Get Updates on the Splunk Community!

Index This | I am a number, but when you add ‘G’ to me, I go away. What number am I?

March 2024 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with another ...

What’s New in Splunk App for PCI Compliance 5.3.1?

The Splunk App for PCI Compliance allows customers to extend the power of their existing Splunk solution with ...

Extending Observability Content to Splunk Cloud

Register to join us !   In this Extending Observability Content to Splunk Cloud Tech Talk, you'll see how to ...