Creating Graphs and Dashboards
To make a basic graph like pie, bar or line
in the search find what kind of data you are looking for
you will find the data is setup like a json file
Example:
{ category: first, eventData: [ location: Denver, IP:169.254.0.0 ] }
{ category: first, eventData: [ location: Denver, IP:169.254.0.0 ] }
{ category: first, eventData: [ location: New York, IP:169.254.0.1 ] }
We can group this data by any of the data by adding the
stats
command to the search
Example:
<your query > | stats count by location
this should count all the same locations and group them by like names. In this example
Denver | 2
New York | 1
you should be able to click over to the visualization tab to see a graph

you should see something like this:
it could be a bar, pie, ect.. depending on what you got selected
you can select a chart by in this example clicking on the pie chart name in the top left corner of the image

Adding graph to A Dashboard
in the top right of the page where you are viewing the graph you should see:

under the save as you have the option to
create a report
create a alert
add to a existing dashboard
create a new dashboard
for this we will be selecting New Dashboard
when a new popup opens

fill in dashboard title, select dashboard studio, select grid, under panel title name the graph and save to dashboard and you have a new dashboard with the data
Saving graph to Existing Dashboard
after creating a graph select save as
when selecting existing dashboard choose a dashboard you have previously made
fill in the panel title to name the graph
save to dashboard
Last updated