Unplanned
Last Updated: 06 Apr 2020 09:55 by Rudá Cunha
Rudá Cunha
Created on: 24 Mar 2020 00:19
Type: Feature Request
6
ReportProcessor event progress.

In the ReportProcessor, it would be interesting to be able to capture the log.
Since it is shown on the Console. And if possible to have other statuses such as generated the query, loading resources etc ...

Processing report
Rendering report

You can also calculate an estimated time to process / render.

Tranks.

4 comments
Rudá Cunha
Posted on: 06 Apr 2020 09:55
Okay.  What I really need is to have the event in the ReportProcessor, so I can inform the user about the status.  At what stage is the processing of the report.
ADMIN
Todor
Posted on: 06 Apr 2020 08:25

Hi Rudá,

We will consider adding more information to the trace logs. However, we cannot predict the time for processing and rendering.

Regards,
Todor
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Rudá Cunha
Posted on: 30 Mar 2020 10:18
This is a general log.  I need one that shows in that report that I am processing and I need to show the user the status, progress of the report generation.  Example: performing queries in the database, building a report, generating in the requested format.  The log there is general and not structured to be events where I can capture and inform the user.
ADMIN
Todor
Posted on: 30 Mar 2020 10:10

Hello Rudá,

Our code already logs important information related to loading the necessary assemblies, processing and rendering the report. You need to enable Trace Listener to get to log saved. You need to add a code like the following to the application configuration file:

<system.diagnostics>
  <trace autoflush="true" indentsize="4">
    <listeners>
      <add name="myListener" type="System.Diagnostics.TextWriterTraceListener" initializeData="TelerikReporting.log" />
      <remove name="Default" />
    </listeners>
  </trace>
</system.diagnostics>

The generated file with the trace log looks like the attached one.

You may test and specify what other information will be useful for you to log.

Regards,
Todor
Progress Telerik

Progress is here for your business, like always. Read more about the measures we are taking to ensure business continuity and help fight the COVID-19 pandemic.
Our thoughts here at Progress are with those affected by the outbreak.
Attached Files: