All Apps and Add-ons

Change search results for page counts

JohannesGmelin
Path Finder

Hey Community,

I need help with a custom search. At the moment I get a result looks like this:

/AuthorizationAdmin/javax.faces.resource/calendar.js.xhtml?ln=org.richfaces

But I need just the first word after the first slash without the other trash just like this:

/AuthorizationAdmin/

This is my search:

| tstats summariesonly=t count FROM datamodel=Web WHERE Web.site="*" "Web.eventtype"=pageview GROUPBY Web.uri | eventstats sum(count) as Total | eval percent = round((count/Total)*100,2) . "%" | fields - Total | rename percent AS "% Pageviews"

Thanks for your help!!!

0 Karma
1 Solution

woodcock
Esteemed Legend

Like this:

| tstats summariesonly=t count FROM datamodel=Web WHERE Web.site="*" "Web.eventtype"=pageview GROUPBY Web.uri
| eventstats sum(count) as Total
| eval percent = round((count/Total)*100,2) . "%"
| fields - Total
| rename percent AS "% Pageviews"
| rex field=Web.uri mode=sed "s/^(\/[^\/]+\/).*$/\1/"

View solution in original post

woodcock
Esteemed Legend

Like this:

| tstats summariesonly=t count FROM datamodel=Web WHERE Web.site="*" "Web.eventtype"=pageview GROUPBY Web.uri
| eventstats sum(count) as Total
| eval percent = round((count/Total)*100,2) . "%"
| fields - Total
| rename percent AS "% Pageviews"
| rex field=Web.uri mode=sed "s/^(\/[^\/]+\/).*$/\1/"

JohannesGmelin
Path Finder

Great thank you! 🙂

I've tried this at the User User Journey Flow too (Landing Page) but no result 😕

Do you have any idea why?
The other problem is that I'm getting now 10 times a page for example like this: /admin/
because the ending is different but it should be just one entry for one page you understand?

Thanks a lot!

LG Johannes

0 Karma

woodcock
Esteemed Legend

Try this search: does it do what you expect?

| makeresults 
| eval Web.uri="/first/second/third/fourth" 
| rex field=Web.uri mode=sed "s/^(\/[^\/]+\/).*$/\1/"
0 Karma

JohannesGmelin
Path Finder

I've sent you an email with a picture for a better understanding. I'm not allowed to make this picture public 😕

0 Karma
Get Updates on the Splunk Community!

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...