Using username or token authentication in Splunk from Python

For either using username or token authentication in Splunk, I wrote a small wrapper for the connect function. The advantage compared to the existing connect function is that you can use the same line of code for both authentication methods depending on the parameters that you pass (here shown by using ENV variables):

February 10, 2022 · 1 min · Marcus Schiesser

Proxy Your Requests With Grunt

Probably you’re already using grunt to serve your local frontend code. Everything is fine, but if you’re developing your backend with something different than JavaScript (Being a Java developer I heard that might happen), you will have problems accessing this backend while running grunt server. With grunt-connect-proxy there exists a grunt module to help you out. It basically delegates requests that match a given URL to a different backend of your choice....

March 13, 2015 · 2 min · admin