It is too big to post here but I will cut the most relevant parts.
after the input (that are serches by thier own) I have 4 reports like this one and they are the most important:
<panel>
<title>Open Tickets - All Priorities</title>
<chart>
<title>Service Now - Open Tickets</title>
<search>
<query>index=snow
assignment_group_name=*israel*
number!="Task*"
dv_state="Open*" priority=* $assignee$
| dedup number
| stats count(number) as number
| table number icon</query>
<earliest>1483257600</earliest>
<latest>now</latest>
</search>
<option name="charting.chart">radialGauge</option>
<option name="charting.chart.rangeValues">[0,4000,6000,8000]</option>
<option name="charting.chart.style">minimal</option>
<option name="charting.gaugeColors">["0x84E900","0xFFE800","0xBF3030"]</option>
<option name="height">250</option>
</chart>
</panel>
and after I have 6 more reports that are "less important"
example for 1 of them:
<panel>
<title>Service Now - Time Invested on Tickets Per Queue In Hours</title>
<chart>
<search>
<query>index=snow assignment_group_name=*israel* dv_state="Clos*" number!="Task*" $assignee$
| dedup number
| eval year = substr(substr(closed_at,3,4),1,2)
| eval _time = strptime(closed_at,"%Y-%m-%d %H:%M:%S")
| rex field=dv_u_total_time_spent "(?<DAYS>\d+)\s*Day"
| rex field=dv_u_total_time_spent "(?<HOURS>\d+)\s*Hour"
| rex field=dv_u_total_time_spent "(?<MINS>\d+)\s*Minute"
| eval DAYS = if((isnull(DAYS)), 0, tonumber(DAYS))
| eval HOURS = if((isnull(HOURS)), 0, tonumber(HOURS))
| eval MINS = if((isnull(MINS)), 0, tonumber(MINS))
| eval FINAL_TIME=round(8*DAYS + HOURS + round(MINS/60,2))
| where year > 16
| replace "*dfs*" with "DFS" "*win*" with "Windows" "*new_emp*" with "Others" "*user_exit*" with "Others" israel_accessory with "HW" israel_caesarea with "Others" israel_cars with "Others" israel_ci with "Unix & Eng Comp" israel_eng_compute with "Unix & Eng Comp" israel_free_sw_approval with "Others" israel_gen with "Others" israel_hw_issue with "HW" israel_it with "Others" israel_linux_install with "Others" israel_mis with "Others" israel_network with "Net/Telephony" israel_office_relo with "Others" israel_storage with "Others" israel_tel with "Net/Telephony" israel_unix with "Unix & Eng Comp" israel_unix_eng_tools with "Unix & Eng Comp" oit_hwamstock_kiosk_israel_a with "Kiosk" oit_israel_accessory with "HW" oit_israel_eng_compute with "Unix & Eng Comp" oit_israel_gen with "Others" oit_israel_hw_issue with "HW" oit_israel_it with "Others" oit_israel_network with "Net/Telephony" oit_israel_tel with "Net/Telephony" oit_israel_unix with "Unix & Eng Comp" oit_mcs_kiosk_israel_a with "Kiosk" qct_israel with "Others" qct_israel_mis with "Others" qct_israel_pri with "Others" qct_israel_unix with "Unix & Eng Comp" mcs_kiosk_israel_a with "Kiosk" hwamstock_kiosk_israel_a with "Kiosk" israel_sparequeue3 with "CSR" OTHER with "Others" in assignment_group_name
| timechart span=1mon sum(FINAL_TIME) as "Number Of Hours" by assignment_group_name</query>
<earliest>$field1.earliest$</earliest>
<latest>$field1.latest$</latest>
</search>
<option name="charting.axisLabelsX.majorLabelStyle.overflowMode">ellipsisNone</option>
<option name="charting.axisLabelsX.majorLabelStyle.rotation">0</option>
<option name="charting.axisTitleX.text">Time</option>
<option name="charting.axisTitleX.visibility">visible</option>
<option name="charting.axisTitleY.text">Number Of Hours</option>
<option name="charting.axisTitleY.visibility">visible</option>
<option name="charting.axisTitleY2.visibility">visible</option>
<option name="charting.axisX.scale">linear</option>
<option name="charting.axisY.scale">linear</option>
<option name="charting.axisY2.enabled">0</option>
<option name="charting.axisY2.scale">inherit</option>
<option name="charting.chart">column</option>
<option name="charting.chart.bubbleMaximumSize">50</option>
<option name="charting.chart.bubbleMinimumSize">10</option>
<option name="charting.chart.bubbleSizeBy">area</option>
<option name="charting.chart.nullValueMode">gaps</option>
<option name="charting.chart.showDataLabels">all</option>
<option name="charting.chart.sliceCollapsingThreshold">0.01</option>
<option name="charting.chart.stackMode">stacked</option>
<option name="charting.chart.style">shiny</option>
<option name="charting.drilldown">all</option>
<option name="charting.layout.splitSeries">0</option>
<option name="charting.layout.splitSeries.allowIndependentYRanges">0</option>
<option name="charting.legend.labelStyle.overflowMode">ellipsisMiddle</option>
<option name="charting.legend.placement">right</option>
<option name="height">489</option>
</chart>
</panel>
... View more