Activity Feed
- Posted Re: How to increase table size in pdf report? on Reporting. 08-30-2020 02:28 PM
- Tagged How to increase table size in pdf report? on Reporting. 08-28-2020 02:35 PM
- Tagged How to increase table size in pdf report? on Reporting. 08-28-2020 02:35 PM
- Posted How to increase table size in pdf report? on Reporting. 08-28-2020 02:22 PM
- Posted How can I override the default pdf formatting? on Reporting. 07-11-2020 04:19 PM
- Posted Re: Dashboard pdf report doesn't pick up formatting on Reporting. 07-11-2020 04:09 PM
- Posted Re: Can I change the margin space of my PDF? on Reporting. 07-11-2020 03:52 PM
- Posted Dashboard pdf report doesn't pick up formatting on Reporting. 07-10-2020 09:36 PM
- Posted Re: Using a subsearch in an eval line on Splunk Search. 03-07-2020 11:50 AM
Topics I've Started
Subject | Karma | Author | Latest Post |
---|---|---|---|
0 | |||
0 | |||
0 |
08-30-2020
02:28 PM
Hi @Nisha18789, Does the Smart PDF exporter work for scheduled reports? The Splunk report needs to be automatically emailed every week. There is no way anyone is going to manually export reports and email them. We need an automated solution.
... View more
08-28-2020
02:22 PM
I have a weekly report sent via email. It is created from a dashboard that has multiple panels. The dashboard titles are in large font, but the tables and data in the tables are in small font. I looked everywhere to increase the size of those tables but cannot find any information on how to do that. How can I increase the size of the tables in my scheduled PDF reports?
... View more
Labels
- Labels:
-
PDF
07-11-2020
04:19 PM
When I generate a pdf off of my dashboard, some pages are only half full, some dashboard panels are put on the following page when there is sufficient space on the current page. It is not just a matter of margins, footer, header because there is plenty of space left on many pages. I've been trying to add page breaks on the dashboard pdf, I've also been trying to increase the size of the fonts for my table headers and data, and none of the standard html style commands work with the Splunk proprietary tags. Now, for the panels that have tables in them, the font size of the title and sub-title of the panels are way bigger than the table font size. How can I change that for my pdf? I want to override the defaults for my pdf only, because we are hundreds of users using Splunk and generating pdf reports.
... View more
Labels
- Labels:
-
PDF
I used this workaround: I converted the numbers to a string and used the fieldformat command to add the commas. Example: | fieldformat DollarValue ="$ ".tostring(DollarValue,"commas")
... View more
07-11-2020
03:52 PM
Where in Splunk can I find that template? Is this template specific to my account? If not, do I have to be an administrator to update that file?
... View more
07-10-2020
09:36 PM
I want to have a report scheduled to be sent via email, but unfortunately the data in the pdf report is not formatted as it is on the dashboard. For example: $11,323,665 shows as 11323665 in the pdf. I converted the dashboard to html, the html code contains the number formatting, but it doesn't show on the html dashboard. Multiple dashboard panels have a table with one row, the row of data is displayed in very small characters, hard to read, and the numbers that are not formatted are even harder to read because they are displayed much smaller. How can I change the formatting on the pdf ?
... View more
- Tags:
- dashboard
Labels
- Labels:
-
PDF
03-07-2020
11:50 AM
| eval Result=number * [search ... | stats avg(dataset) ]
yields this error message: "Error in 'eval' command: Type checking failed. '*' only takes numbers."
The sub search run on its own results in a single number. That number could possibly considered a string, but if I try to convert it to a number with tonumber([search...]) then I get another error message: "Error in 'eval' command: The arguments to the 'tonumber' function are invalid."
If I try this: | eval SubSearchResult=[search ... | stats avg(dataset) ]
I get this error message: Error in 'eval' command: Fields cannot be assigned a boolean result. Instead, try if([bool expr], [expr], [expr]).
I need to be able to assign the result of a sub search to a variable to be used in calculation with data from the base search. How can I do this?
... View more