Good morning,
Our firm is interested in coming up with some metrics around AI application adoption. We’re curious to see trends over the past 6 months or so including what specific AI applications users are working with the most (Copilot, ChatGPT, AI for Power BI etc.)
We have come up with the following query:
metadata.log_type = "OUR_LOG_TYPE"
security_result.category_details = "Generative AI"
$data_pair = strings.concat(security_result.category_details, " | ", target.application, " | ", principal.user.email_addresses, " | ", network.http.referral_url, " | ", target.url )
$event_id = security_result.category_details
match:
$data_pair
outcome:
$EventCount = count(security_result.category_details)
This works but is bit clunky. Does anyone have any suggestions of how we might better pull this data using search? Anyone else using SecOps to pull data of this kind?
Thanks in advance for any help you’re able to provide!
Regards