Is there any way to export publishing logs from the Tridion web client?

Hello Everyone,

In our user group there are some voices claiming that our publishing load is causing some issues - in other words, some users claim they have to wait too long on publishing jobs to complete.

So, it would be great if the publishing logs in the web client could be exported to a file to get a sense of the publishing times and load.

Does anyone know if this is possible?

Otherwise I might add it to Ideas.

Thanks!

Best Regards

Peter S

GE Healthcare

Parents
  • Hi Peter,

    Select all (Ctrl-A) allows you to copy some stuff from EventMonitor into an Excel table.

    Digging deeper... Publishing has many dimensions: event types, the data size, the data complexity, standard or custom DITA-OT, and rendering to your final format (PDF, ZIP, etc). So two API tips come to mind

    1. Since 13SP2/13.0.2 there is a BackgroundTask API call, through ISHRemote it is opened up via cmdlet Get-IshBackgroundTask
      Where start and end date is the total handling time (not the queue/wait time).
      Screenshot of Trados Studio EventMonitor with a table showing columns for EVENTID, EVENTTYPE, EVENTDATATYPE, ACTION, and STATUS with various entries.
    2. Since 'ever' the EventMonitor web client view, has a Events API behind it, through ISHRemote it is opened up via cmdlet Get-IShEvent so the following code sample could inspire
      $requestedMetadata = Set-IshRequestedMetadataField -Name "EVENTID" -Level "Progress" |
      Set-IshRequestedMetadataField -Name "EVENTTYPE" -Level "Progress" |
      Set-IshRequestedMetadataField -Name "EVENTDATATYPE" -Level "Detail"
      $metadataFilter = Set-IshMetadataFilterField -Name "ACTION" -Level "Detail" -FilterOperator In -Value "Request started, Start execution, Execution completed"
      Get-IshEvent -EventTypes @("PUBLISHREACHINTERNAL") -RequestedMetadata $requestedMetadata -MetadataFilter $metadataFilter -ModifiedSince "01/01/2020 00:00:00"

    On the cmdlets have a look at the referenced recording and code samples on https://community.sdl.com/product-groups/sdl-tridion-dx/tridion-docs/b/weblog/posts/automating-on-sdl-tridion-docs-tds2019---business-process-examples 

    Or https://github.com/sdl/ISHRemote/releases/tag/v0.7 

    Best wishes,
    Dave

    emoji


    Generated Image Alt-Text
    [edited by: Trados AI at 6:39 AM (GMT 0) on 5 Mar 2024]
Reply
  • Hi Peter,

    Select all (Ctrl-A) allows you to copy some stuff from EventMonitor into an Excel table.

    Digging deeper... Publishing has many dimensions: event types, the data size, the data complexity, standard or custom DITA-OT, and rendering to your final format (PDF, ZIP, etc). So two API tips come to mind

    1. Since 13SP2/13.0.2 there is a BackgroundTask API call, through ISHRemote it is opened up via cmdlet Get-IshBackgroundTask
      Where start and end date is the total handling time (not the queue/wait time).
      Screenshot of Trados Studio EventMonitor with a table showing columns for EVENTID, EVENTTYPE, EVENTDATATYPE, ACTION, and STATUS with various entries.
    2. Since 'ever' the EventMonitor web client view, has a Events API behind it, through ISHRemote it is opened up via cmdlet Get-IShEvent so the following code sample could inspire
      $requestedMetadata = Set-IshRequestedMetadataField -Name "EVENTID" -Level "Progress" |
      Set-IshRequestedMetadataField -Name "EVENTTYPE" -Level "Progress" |
      Set-IshRequestedMetadataField -Name "EVENTDATATYPE" -Level "Detail"
      $metadataFilter = Set-IshMetadataFilterField -Name "ACTION" -Level "Detail" -FilterOperator In -Value "Request started, Start execution, Execution completed"
      Get-IshEvent -EventTypes @("PUBLISHREACHINTERNAL") -RequestedMetadata $requestedMetadata -MetadataFilter $metadataFilter -ModifiedSince "01/01/2020 00:00:00"

    On the cmdlets have a look at the referenced recording and code samples on https://community.sdl.com/product-groups/sdl-tridion-dx/tridion-docs/b/weblog/posts/automating-on-sdl-tridion-docs-tds2019---business-process-examples 

    Or https://github.com/sdl/ISHRemote/releases/tag/v0.7 

    Best wishes,
    Dave

    emoji


    Generated Image Alt-Text
    [edited by: Trados AI at 6:39 AM (GMT 0) on 5 Mar 2024]
Children