Reporting

How to create a dynamic report ?

Lossino
New Member

I'am managing trx with fields status,type,bank,....
I would like to create a histogram report [number of trx by day per type in the last 365 day for example]
And I was wondering wether it's possible to set up two dynamics paramaters ?
I mean first one on bank field which allow me to specify a bank. And the second one on timerange which will allow me to change period from 1 day to 30 days.

Thank you in advance for any help.

Tags (1)
0 Karma
1 Solution

lguinn2
Legend

Take a look at the form search. You can specify one or more inputs at the top of the page, and then display your histogram at the bottom.

It might look something like this

 <form>
    <label>Simple Form</label>
    <!-- Replace the following search with whatever you actually want to report-->
    <searchTemplate>sourcetype=whatever bank=$bankselection$</searchTemplate>
    <fieldset>
        <input type="dropdown" token="bankselection">
            <label>Select Bank</label>
            <!-- Replace the following search with one that gives you a list of the banks to select from -->
            <populatingSearch fieldForValue="bank" fieldForLabel="bank">
                <![CDATA[sourcetype=bankdata earliest=-30d | stats count by bank]]></populatingSearch>
                <choice value="*">Any</choice>
        </input>
        <input type="time"/>
    </fieldset>
    <row>
        <chart>
            <title>Data for selected Bank</title>
            <option name="charting.chart">bar</option>
        </chart>
    </row>
</form>

View solution in original post

0 Karma

lguinn2
Legend

Take a look at the form search. You can specify one or more inputs at the top of the page, and then display your histogram at the bottom.

It might look something like this

 <form>
    <label>Simple Form</label>
    <!-- Replace the following search with whatever you actually want to report-->
    <searchTemplate>sourcetype=whatever bank=$bankselection$</searchTemplate>
    <fieldset>
        <input type="dropdown" token="bankselection">
            <label>Select Bank</label>
            <!-- Replace the following search with one that gives you a list of the banks to select from -->
            <populatingSearch fieldForValue="bank" fieldForLabel="bank">
                <![CDATA[sourcetype=bankdata earliest=-30d | stats count by bank]]></populatingSearch>
                <choice value="*">Any</choice>
        </input>
        <input type="time"/>
    </fieldset>
    <row>
        <chart>
            <title>Data for selected Bank</title>
            <option name="charting.chart">bar</option>
        </chart>
    </row>
</form>
0 Karma

Lossino
New Member

Thx for your help very helpfull for me.

0 Karma
Get Updates on the Splunk Community!

See just what you’ve been missing | Observability tracks at Splunk University

Looking to sharpen your observability skills so you can better understand how to collect and analyze data from ...

Weezer at .conf25? Say it ain’t so!

Hello Splunkers, The countdown to .conf25 is on-and we've just turned up the volume! We're thrilled to ...

How SC4S Makes Suricata Logs Ingestion Simple

Network security monitoring has become increasingly critical for organizations of all sizes. Splunk has ...