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!

Detecting Remote Code Executions With the Splunk Threat Research Team

REGISTER NOWRemote code execution (RCE) vulnerabilities pose a significant risk to organizations. If ...

Observability | Use Synthetic Monitoring for Website Metadata Verification

If you are on Splunk Observability Cloud, you may already have Synthetic Monitoringin your observability ...

More Ways To Control Your Costs With Archived Metrics | Register for Tech Talk

Tuesday, May 14, 2024  |  11AM PT / 2PM ET Register to Attend Join us for this Tech Talk and learn how to ...