Activity Feed
- Posted Re: How to replace python bubble chart with Splunk? on Splunk Search. 02-16-2018 06:42 AM
- Posted Re: In my search query, why is my scatter plot empty with unlabeled axes? on Splunk Search. 02-13-2018 02:09 PM
- Posted In my search query, why is my scatter plot empty with unlabeled axes? on Splunk Search. 02-13-2018 01:06 PM
- Tagged In my search query, why is my scatter plot empty with unlabeled axes? on Splunk Search. 02-13-2018 01:06 PM
- Tagged In my search query, why is my scatter plot empty with unlabeled axes? on Splunk Search. 02-13-2018 01:06 PM
- Tagged In my search query, why is my scatter plot empty with unlabeled axes? on Splunk Search. 02-13-2018 01:06 PM
- Posted How to replace python bubble chart with Splunk? on Splunk Search. 02-13-2018 09:41 AM
- Tagged How to replace python bubble chart with Splunk? on Splunk Search. 02-13-2018 09:41 AM
- Tagged How to replace python bubble chart with Splunk? on Splunk Search. 02-13-2018 09:41 AM
- Tagged How to replace python bubble chart with Splunk? on Splunk Search. 02-13-2018 09:41 AM
- Tagged How to replace python bubble chart with Splunk? on Splunk Search. 02-13-2018 09:41 AM
Topics I've Started
Subject | Karma | Author | Latest Post |
---|---|---|---|
0 | |||
0 |
02-16-2018
06:42 AM
I needed to add a
(search and computation of #jobs per #cores and cpu hours per #cores) | table #cores #jobs cpuhours
instead if trying to use the stats command
This will require some scaling on the cpu hours to make the bubbles provide reasonable visual feedback, but it is now plotting the values I want in the way I want for the bubble plot. The documentation could use an example of this type of bubble plot
... View more
02-13-2018
02:09 PM
I added
qid= | stats count as #jobs by numproc | **table nmpi #jobs |**sort numproc
and now the scatter plot shows up. Adding table nmpi #jobs before the sort command, makes the scatter plot to show up with correctly labeled axises.
... View more
02-13-2018
01:06 PM
I have a fairly simple search that returns a table of values - the number of processors used vs the number of jobs with that assigned number of processors. I can make a line plot but I don't want the lines because this implies a false relationship between the points. I just want to make a plot of the points, but I don't see any way to turn off the lines. I tried a scatter plot but I am clearly doing it wrong because I get unlabeled axises and no data on the plot.
my search string is qid= | stats count as #jobs by numproc | sort numproc
I get a statistics table of 2 columns (numproc and #job)
This generates a reasonable line plot but I can't turn off the connecting lines.
any advice would be appreciated.
... View more
02-13-2018
09:41 AM
I am trying to replace some existing charts we generate from python code with visualizations from Splunk. We have a bubble chart that shows #cores used in a job vs #jobs run at that allocation, with the total CPU hours for all the jobs at one #cores being the size of the bubble. I just don't see how to do this. I can collect the info I need from search and make 2 separate line plots but that is not what our users want to see. Is it possible for me to do this with a bubble plot in Splunk?
... View more