Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
kevinpintokpa
Creator II
Creator II

Governance Dashboard version history available?

Hi all,

Is there a version history available for the Governance Dashboard?  I am presently running version 2.0.5 and want to know what changes have been made since then.  I searched but could not find an answer.

Specifically, this is of interest to me: the Task Log Index XML files contain entries like this, including the path to the folder where the task and document logs are:

<LogIndex LogID="3f46c305-5fef-465d-baa8-cfc2a35df7f8" TaskName="MyTaskName" Date="2019-09-24" Time="02:03:00" ClusterID="2" FullLogPath="\\MyServerName\QlikTech\DistributionService\2\Log\20190924\020300 - MyTaskName\TaskLog.txt" />

But this FullLogPath attribute is not present in QVGD_TaskLogIndex_2.0.5.qvd 

It would be very useful to have the full path to the log files available, particularly to track down problems with tasks that run several times a day.

 

3 Replies
Tyler_Waterfall
Employee
Employee

Hello @kevinpintokpa  - 

You can see recent history (2.1.x forward) here in this group in Documents > QlikView Governance Dashboard.

Unfortunately, I believe the change you are referring to occurred when I went from 1.x to 2.0 a couple of years ago.

You are welcome to propose an improvement to meet your need which I can add to the backlog.

Thanks!

Tyler

kevinpintokpa
Creator II
Creator II
Author

Thanks, @Tyler_Waterfall .

I was able to make a change to my copy of Governance Dashboard and it is an easy change if you want to incorporate it in the next version.

Open the Governance Dashboard script and go to the tab TaskLogIndex

Add these lines to the load in Sub TaskLogIndex:

// Start: KP added this on 9/24/2019

		
		
FullLogPath,	// Usually ends with \TaskLog.txt


Left ( FullLogPath, 
Index ( FullLogPath, '\', -1 ) -1
 ) as [Log Folder Path],
		
// The full path of the log folder for this particular task execution



// End: KP added this on 9/24/2019 

 

 

Tyler_Waterfall
Employee
Employee

Thanks @kevinpintokpa . For reference GOVDASH-192