Hi I have a Splunk search as below :
My Search| where date_hour>=19 OR date_hour<7| bin span=1h _time | convert ctime(_time) as Date_and_Time | stats values(page) as page_accessed by user_id| sort-count | head 5 |rename user_id AS Student_id |
Which displays the result as follows :
Student_id page_accessed
A1234 HomePage
SemesterReport
B5678 HomePage
Course_Structure
Syllabus
A5678 Attendance
HomePage
B1234 CourseStructure
So, now I want to display only the Student_id's who are visiting pages outside of what they regularly access, is it possible to identify that in Splunk?
For example, consider Student id "A1234": Daily he used to access the HomePage, SemesterReport but yesterday he is accessing the CourseStructure Page. I want to see his student-id and what he visited other than what he regularly visited as next the panel.
... View more