Skip to content

Commit

Permalink
Splunk dashboard bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
seanthegeek committed Mar 27, 2024
1 parent 9ffc63f commit 1f9a5ff
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions splunk/dmarc_aggregate_dashboard.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
| table *
| rename spf_results{}.domain as envelope_domain spf_results{}.result as spf_result spf_results{}.scope as spf_scope dkim_results{}.selector as dkim_selector dkim_results{}.domain as dkim_domain dkim_results{}.result as dkim_result
| fillnull value=null source_reverse_dns source_base_domain dkim_selector dkim_domain dkim_result source_type source_name
| search dkim_selector=$dkim_selector$ dkim_domain=$dkim_domain$ source_type=$source_type$ source_name=$source_name$
| search dkim_selector=$dkim_selector$ dkim_domain=$dkim_domain$ source_type="$source_type$" source_name="$source_name$"
</query>
<earliest>$time_range.earliest$</earliest>
<latest>$time_range.latest$</latest>
Expand Down Expand Up @@ -78,9 +78,17 @@
| stats count by source_type</query>
</search>
</input>
<input type="text" token="source_name" searchWhenChanged="true">
<input type="dropdown" token="source_name" searchWhenChanged="true">
<label>Source name</label>
<default>*</default>
<choice value="*">any</choice>
<initialValue>*</initialValue>
<fieldForLabel>source_name</fieldForLabel>
<fieldForValue>source_name</fieldForValue>
<search>
<query>index="email_ess" sourcetype="dmarc:aggregate"
| stats count by source_name</query>
</search>
</input>
<input type="text" token="source_country" searchWhenChanged="true">
<label>Source country ISO code</label>
Expand Down

0 comments on commit 1f9a5ff

Please sign in to comment.