joe_coolish
joe_coolish

Reputation: 7259

Parse .ETL file in Azure Web Job

I have a bunch of .ETL crash files stored in Azure blob storage that I want to parse and store in a SQL table. So far the only way I've found to parse these .ETL files is to pass them into tracerpt and then parse the XML file outputted from tracerpt.

I'm assuming that I can't access tracerpt from an Azure Web Job. If I can, what do I need to call to get access to that .EXE? Are there any pure code solutions for parsing .ETL trace files?

The .ETL files are made from a LoggingSession object in a Windows Store App.

Upvotes: 2

Views: 376

Answers (1)

joe_coolish
joe_coolish

Reputation: 7259

I ended up using http://www.nuget.org/packages/ETW2JSON/ to do the parsing into JSON and then I did my data analytics from there.

Upvotes: 1

Related Questions