logs
4 TopicsExcessive logs in RS September 2025
Since the updgrade to version 1.24.9392.34333 the ReportingServicesService.logs generate GBs of data per day with default log settings. The issue seems that whenever a dataset is loaded it looks like every field entry is logged by something called [Report Walker]. Steps to reproduce - Have a dataset on the PBI report server - Open the dataset - Go to Data Preview -> Load data - You will have a lot of lines like these in ReportingServciesService_timestamp.log rdlenginehost!ReportServer_0-1!27a0!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0003_FieldName1_ACDD4B78 rdlenginehost!ReportServer_0-1!2374!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0006_FieldName2_9110D2DC rdlenginehost!ReportServer_0-1!30fc!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0007_FieldName3_6E9D0731 rdlenginehost!ReportServer_0-1!2374!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0007_FieldName3_247E481D rdlenginehost!ReportServer_0-1!27a0!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<Tablix>: Tablix_E7DDBF00 rdlenginehost!ReportServer_0-1!fac!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0006_FieldName4_80E62E7F rdlenginehost!ReportServer_0-1!27a0!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0004_FieldName5_3BCA1333 rdlenginehost!ReportServer_0-1!2374!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0004_FieldName6_37CA7C5F rdlenginehost!ReportServer_0-1!30fc!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0004_FieldName6_5AFF6016 rdlenginehost!ReportServer_0-1!2374!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0001_FieldName7_A42C1B49 rdlenginehost!ReportServer_0-1!27a0!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0005_FieldName8_79E38078 rdlenginehost!ReportServer_0-1!fac!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0001_FieldName9_86050404 rdlenginehost!ReportServer_0-1!27a0!10/21/2025-18:06:34:: i INFO: [Report Walker] Processing ReportItem<TextBox>: TextBox_0006_FieldName4_B332431D As a workaround we have set the log level for the Reporting Services lower. C:\Program Files\Microsoft Power BI Report Server\PBIRS\ReportServer\bin\ReportingServicesService.exe.config In the <RStrace> segment we changed the line <add name="Components" value="all:3" /> to <add name="Components" value="all:2" /> Does anyone know about a better solution without loosing some diagnostic information in the logs?Solved1.3KViews2likes2CommentsRegistro de Uso de informes Log de acciones para presentar en Kit Digital
Buenas, Necesito sacar un listado de Log de acciones para poder presentar la actividad en power bi. Nos piden detalladamente las visualizaciones de los informes.. habría algun lugar donde poder ver las visaulizacion de todos los usuarios por informe ? Muchas gracias538Views1like1CommentUser activity log
Hello! We are facing a problem: we cannot find the user activity log (logging) inside the Report Server with details such as the source (PC) and specific actions, for example, deleting/adding objects or assigning rights to other users. How can one access such logs for more detailed analysis?1.1KViews0likes2CommentsDAX Calculated Column Sequence of Event Actions and Sessions
I have dataset with users actions logs. We have next data collection logic - every user have it own user_id and we record log of event actions during user session. user_id session_id dateTime event 1 aa 2023-01-01 13:12:11 login 1 aa 2023-01-01 14:12:10 buy 1 bb 2023-01-02 11:12:10 page 2 cc 2023-01-01 10:11:01 login 2 gg 2023-01-03 11:12:11 logout 2 gg 2023-01-03 13:11:03 click 2 gg 2023-01-03 14:10:07 logout The main goal is prepare output and add 2 calculated columns: 1. with events action sequence during every user session and 2. with session sequence during all user lifetime by SQL. Expected output: user_id session_id dateTime event event_seq session_seq 1 aa 2023-01-01 13:12:11 login 1 1 1 aa 2023-01-01 14:12:10 buy 2 1 1 bb 2023-01-02 11:12:10 page 1 2 2 cc 2023-01-01 10:11:01 login 1 1 2 gg 2023-01-03 11:12:11 logout 1 2 2 gg 2023-01-03 13:11:03 click 2 2 2 gg 2023-01-03 14:10:07 logout 3 2 What was done from my side: 1. Successfully create column with events action sequence during session Event Action Sequence = COUNTROWS ( FILTER ( CALCULATETABLE ( Sheet1, ALLEXCEPT (Sheet1, Sheet1[session_id]) ), Sheet1[Date] < EARLIER ( Sheet1[Date] ) || ( Sheet1[Date] = EARLIER ( Sheet1[Date] ) && Sheet1[Time Action] <= EARLIER ( Sheet1[Time Action] ) ) ) ) 2. Sessions Sequence Order By each user - calculated column not prepared - I stucked on it. Only prepared time for each session when it started (minimum time for each session) Min Session DateTime = CALCULATE( MIN(Sheet1[dateTime]), ALLEXCEPT(Sheet1,Sheet1[session_id]) ) So the main help request, how to solve this and create one more column with sessions sequene number orderd ascending by timestamp for each user. Sharing link to my pbix file https://drive.google.com/file/d/1807l9E07oNJv9l5rKWXKxDoc6rniyiYG/view?usp=sharing And sharing link to my sample: https://docs.google.com/spreadsheets/d/1bb7VId8lJ-NQkF43YS739kfc5Ur-1cGy/edit?usp=sharing&ouid=103990807236416334574&rtpof=true&sd=true626Views0likes1Comment