this is my query and i want to show line graph of CBP vs NonCBP with percentages Please advise how can achieve it | savedsearch cbp_inc_base | eval _time=strftime(opened_time, "%Y/%m/%d") | bin _time span=1d | chart count(incident_number) as IncidentCount over _time by hasAppBlueprints | eval CBP = round (100*CBP/6737, 2)."%" | eval NonCBP = round(100*NonCBP/12879, 2)."%" Saved serach is index="88292-cbp" source_name=**** platformName=REDHAT earliest=-24h | table hostName, source_name, hasAppBlueprints | rename hostName as hostname | join type=inner max=0 hostname [ search index=88292-cgr source_name=***** earliest=-21d | dedup incident_number | rex field=transfer_description "found as (?<correct_host>[a-zA-Z0-9\-]+) " | rename configuration_item as hostname | eval opened_time=strptime(opened_time, "%b %d, %Y %H:%M:%S") | where (opened_time <= relative_time(now(),"@d")) AND (opened_time >= relative_time(now(),"-30d@d")) | table hostname, alert_id, incident_number, correct_host, opened_time, state | eval hostname=case(match(hostname, ".* .*"), correct_host, 1==1, hostname) ] | eval hasAppBlueprints=if(hasAppBlueprints="true","CBP",hasAppBlueprints) | eval hasAppBlueprints=if(hasAppBlueprints="false","NonCBP",hasAppBlueprints) | table hostname, alert_id, incident_number, source_name, opened_time, hasAppBlueprints, state
... View more