Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
mwallman
Creator III
Creator III

How to load CrashDumps files into a Qlik Sense app for analysis?

Hello there,

Can anyone please show how to analyse the "Coredump..." files found in the C >ProgramData>Qlik>Sense>Engine>CrashDumps folder in an enterprise environment?

A typical file will have the following:

[ContextInfo]

Integrity=2

NbrActiveRequests=8

.... etc

 

How can I load these files, and load the fields in a table format in a Qlik Sense app?

2 Replies
Giuseppe_Novello

Actually, you need first to  make a CrashDump readable, which it requires the environmental keys, which it is a holy grail in the software world, which it is as secret than Dr. Evil chamber, in other words R&D will not shared it to anyone. So at the end, you won't be able to load it into a QS app. 

BR

Gio

Giuseppe Novello
Principal Technical Support Engineer @ Qlik
Filippo_Nicolussi_P

Hello @mwallman 

Just a start I'm using something like :

CTXSources:
LOAD
FileName() as Source,
@1 as Entry,
FileName()&'='&@1 as toprocess
FROM [lib://CD/*.ctxf]
(txt, utf8, no labels, delimiter is '\n', no eof)
where not WildMatch(@1,'[*]');

options:
Load
subfield(@1,'_',2) as EngineVersion,
@1 as Source,
@2 as Info,
@3 as Value
From_Field (CTXSources, toprocess) (txt, utf8, explicit labels, delimiter is '=',msq)
where len(@3) > 0;

;

 

all "my" *.CTXF files are in lib://CD/ folder. 

 

 

Help users find answers! Don't forget to mark a solution that worked for you! If already marked, give it a thumbs up!