Python2.7 on Splunk 9
We have a few addons not compatible with python3 and we need them to work with Splunk 9. Splunk 9 does not come with python2, that’s the challenge. How...
Splunk Json array parse
If your splunk data has json and it is an array with multiple key/values – use this trick here
PagerDuty-ServiceNow integration error: Cannot commit Update Set ‘pagerduty-v7.6’ because: Scope ‘x_pd_integration’ is not ‘Global’, not found in instance, but is found in app store. Install application from app store. Resolve the problem before committing.
I’m trying to install PagerDuty on ServiceNow, but i got this error Cannot commit Update Set ‘#8217; because: Scope ‘x_pd_integration’ is not ‘Global’, not found in instance, but...
Azure App Service Troubleshooting Guidelines
Today, i had to troubleshoot some performance issues on App Service Plan, i saw this documentation, it outlines some helpful troubleshooting hints. I learnt about the healcheck api today....
Git: Filename too long
I just got a new machine, it’s time to clone my git repository to this new machine. I think it will be just very simple, just use Visual Studio...
Splunk dashboard: Writing a dynamic query
Another day, another thing to learn , this spices up my job. Today i built a dashboard , i want the user provide me a list of keywords from...
A Splunk query to inventory all your saved search
| rest /servicesNS/-/-/saved/searches | search NOT author=nobody NOT disabled=1 The above query will list out all your saved search with their attributes. It’s pretty helpful when we want to...
Bypass cloudflare protection
In my last post, i shared that we can use Fiddler to bypass cloudflare protection. I used it for a few days and realized that Fiddler is not stable....
Adding wkhtmltopdf to existing container
Another day, another thing. I’m running a PHP site on Azure App Service, the site needs to convert some documents to pdf. We know we need wkthmltopdf, unfortunately the...
How to by pass cloudflare protection when using curl,wget
if you need to write a crawler script and that script needs to crawl a site protected by cloudflare. you will face a challenge, you got 403 error. It’s...