Activity Feed
- Got Karma for Re: How to make session cookies secure and httponly in Splunk 6.2.1?. 06-05-2020 12:47 AM
- Got Karma for Re: Enhance dashboard in Splunk. 06-05-2020 12:47 AM
- Got Karma for Re: Enhance dashboard in Splunk. 06-05-2020 12:47 AM
- Karma Re: Various Manager pages fail to render, shows error "Mako failed to render" after upgrading to 6.1 for hexx. 06-05-2020 12:46 AM
- Karma Re: How to update geoip database for iplocation command? for awurster. 06-05-2020 12:46 AM
- Got Karma for Re: Realtime saved search on dashboard. 06-05-2020 12:46 AM
- Got Karma for Re: Chart.js for Dashboard. 06-05-2020 12:46 AM
- Got Karma for Re: Timeranger picker is great for timerange, is there something similar for Granularity...?. 06-05-2020 12:46 AM
- Got Karma for Re: SSO Broken after Upgrade to 4.3.1. 06-05-2020 12:46 AM
- Got Karma for Re: Multi-panel dashboard loading slow in IE7?. 06-05-2020 12:46 AM
- Got Karma for Re: Strange behavior with alert, send email with PDF.. 06-05-2020 12:46 AM
- Got Karma for Re: Strange behavior with alert, send email with PDF.. 06-05-2020 12:46 AM
- Got Karma for Re: Strange behavior with alert, send email with PDF.. 06-05-2020 12:46 AM
- Got Karma for Re: Realtime saved search on dashboard. 06-05-2020 12:46 AM
- Got Karma for Re: Custom Dashboard panels REST API. 06-05-2020 12:46 AM
- Got Karma for Re: Fresh install - cannot login. 06-05-2020 12:46 AM
- Got Karma for Re: 50 page PDF report not fully rendering (4.3.4). 06-05-2020 12:46 AM
- Got Karma for Re: Can i assign a role with Idle session time out value ??. 06-05-2020 12:46 AM
- Got Karma for Re: How do I create Fields for MacAddress and UserName?. 06-05-2020 12:46 AM
- Got Karma for Re: Add Custom header in Dashboard pdf. 06-05-2020 12:46 AM
Topics I've Started
No posts to display.
09-09-2015
10:17 AM
1 Karma
This is fixed in 6.2.3
... View more
04-01-2015
02:28 PM
2 Karma
Yes, Splunk dashboards are built to be customizable. Check out Volkswagen's Splunk dashboard for connected Volkwagen e-ups that were used as shuttles at CeBIT.
Convert Splunk dashboard to HTML and you get all the creative freedom on how to style and which libraries to use. Referer to Splunk web framework and Splunkjs Stack to learn more about the apis. Looking for recipes? Check out Splunk 6 dashboard examples app
... View more
05-30-2014
01:34 PM
1 Karma
Read more about custom chart components at http://dev.splunk.com/view/webframework/SP-CAAAER6 and try the web framework toolkit app for examples
... View more
10-30-2013
04:20 PM
1 Karma
I think what you are looking for is bucket (or span attribute for timechart) command. This will allow you to control the granularity what each bar stands for.
... View more
09-27-2013
06:25 PM
is your splunk search head part of "log on to" computer group?
... View more
09-27-2013
11:02 AM
2 Karma
For performance results, Splunk does not perform back fill for scheduled realtime searches. If you want it backfill, you will have to set dispatch.rt_backfill=1 in your search definition in savedsearches.conf
... View more
09-27-2013
10:12 AM
It works fine for me. Could you share your dashboard xml?
... View more
09-27-2013
09:51 AM
0range, not all simpleXml formatting is supported by integrated PDF. Read more - use Integrated PDF and known issues
... View more
09-25-2013
10:18 AM
Not possible out of the box.
However, as a quick workaround, create a 5th dashboard which is the combination of all four dashboard and generate PDF alerting for 5th dashboard.
... View more
09-24-2013
11:19 AM
For free license mode you do not need to perform authentication. Simply update the iframe src to the view uri. In your case, it would look something like
<iframe src="http://splunk:8000/app/search/SST_DB_STATS_LFW" ...
... View more
09-03-2013
11:58 PM
1 Karma
You could be hitting pdfreport server app page timeout, defaults to 180 seconds.
Splunk will wait for dashboard's print ready event or timeout event to occur, which ever happens first, to actually generate PDF. In your case it could be that it takes more than 180s to generate your 50 pager thereby resulting in empty modules in pdfs.
Try to update this firefox_timeout config in $SPLUNK_HOME/etc/apps/pdfserver/local/pdf_server.conf file to a larger number, equivalent to time in seconds it will take to load the complete page.
... View more
09-03-2013
04:49 PM
Neither 4.3.* or 5.0.* support roles based timeout. You can update timeout for overall configuration as described in the above link.
... View more
09-03-2013
04:32 PM
1 Karma
Should not happen. Can you try deleting $SPLUNK_HOME/etc/passwd and restarting Splunk?
... View more
09-03-2013
04:30 PM
already answered in other question jschart-truncation
... View more
09-03-2013
01:37 AM
As a workaround -
1. Try to ensure such charts on dashboard have a row by themselves. This will allow the chart to cover as much width as it can. For ex. expand the 500px to 600px.
2. Reduce the number of points you are plotting by increasing the span from 15m to say 30m.
This is a bug, and we will work on improving the messaging.
... View more
09-03-2013
01:37 AM
I see. The issue is overflow on the x-axis does not alert the user. The issue here is the size of the chart of smaller than the actual number of points it tries to plot on it. For example: you size of the chart is 500px, but the sum of all the points you are tying to plot is 800px. As a result, you can see the first 500px but the remaining 300px are hidden.
... View more
09-03-2013
12:37 AM
The only viable solution could be -
Shorten the labels: 25,000,000,000 bytes ~ 25Gigabytes (=23.2gb).
Keep 1 chart per row. This will allow for more space for the labels.
What would be an acceptable solution for you?
... View more
09-03-2013
12:29 AM
1 Karma
By default splunk disables field extractions for certain fields. One of these fields, eventtype, is used by custom event render. I would update the search to include '...| fields eventtype' field and you should have the custom rendering working.
... View more
09-03-2013
12:16 AM
1 Karma
Including or excluding the splunk logo from pdf is the only configuration available for integrated pdf generation. This can be achieved using reportIncludeSplunkLogo in alert_actions.conf learn more about specs here.
To include custom logo, you will have to modify python code. NOTE: this is risky, not supported and will be overwritten upon upgrade.
Step 1. You will need to come up with an SVG for your logo
Step 2. Modify $SPLUNK_HOME/lib/python2.7/site-packages/splunk/pdf/pdfrenderer.py file. At the end of the file, change the variable assignment of __splunkLogoSvg_ to your new logo.
Step 3. Restart Splunk and generate the PDF with the new logo design.
... View more
09-02-2013
11:58 PM
What does the job inspector say? I would compare job inspectors of the search in production vs search in dev instance. Here are docs for using job description.
I would also try to change the multiline search to one line, just to test.
... View more
09-02-2013
11:46 PM
1 Karma
You can configure session timeout as described in docs. However this is overall configuration for all users. 5.0.x does not support roles based session timeouts.
... View more
09-02-2013
11:42 PM
Dont worry, you may have not hit the limit yet!
The notice is hidden by default, using style="display: none;" attribute, and when you will hit the limit, javascript will drop that attribute and make the block visible.
You could run the following search as a test: index=_internal | stats count(*) by _time
... View more
08-08-2013
10:52 AM
1 Karma
From Adobe font X package description
Adobeᆴ Readerᆴ X Font Packs enable you to display and interact with documents authored in languages other than those supported in your native Adobe Reader software
Splunk out of the box has support for Helvetica and CJK CID font sets. I am assuming you are generating a pdf which include one of these fonts and adobe reader is missing that font.
You could either install the adobe font pack or make sure you exclude results containing non support font from the pdf.
... View more
07-15-2013
10:51 AM
From the error: seems like the results table is too large to fit on page. The result table has 564 rows x 7 cols and probably its size is 423x1260 pixels.
If you dont mind, can you share the data or a screen shot of what is expected?
... View more