21 Jan 2026 12:14 PM
21 Jan 2026 05:03 PM
Hi @Vikas_g1997,
Have you tried to use custom session properties some how (eg. with serverside request attributes)? Maybe it is a wrong idea but could you please check it.
Best regards,
János
22 Jan 2026 10:41 AM
Hi,
Thanks for the suggestion.
Unfortunately, domain-based filtering is not directly supported in User Sessions as a built-in dimension. User Sessions can be filtered by application, browser, user action, etc., but not by domain/hostname out of the box.
The best and supported solution is what @Mizső sugest to use Custom Session Properties, based on:
Alternatively, you can use USQL and filter by domain on the user action level, for example:
SELECT *
FROM usersession
JOIN useraction
WHERE useraction.domain = "www.dynatrace.com"In this case, you are not filtering directly in the User Sessions UI, but instead querying the data and extracting only the information you are interested in.
Featured Posts