Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Qlikuser225
Contributor III
Contributor III

Qlik sense dashboard for Operations monitor - latest task details

Hello All,

Can anyone please help me to where can I find the Qlik sense dashboard or code to generate the latest task details like -app name , app reload time , app reload duration etc.

operations monitor dashboard from Qlik sense is not giving accurate up to date  deatils.

Thanks in advance 

Labels (3)
1 Solution

Accepted Solutions
nirav_bhimani
Partner - Specialist
Partner - Specialist

@Qlikuser225 ,

You can easily get latest Reload information Using WoWizer TPM in Realtime.

You can check out WoWizer TPM product, Below is the link for the same. 

Checkout WoWizer

WoWizer TPM Blog

Let me know in case you need any help for this! Happy to Help.

Regards,

Nirav Bhimani

View solution in original post

2 Replies
stevedark
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi @Qlikuser225 

Are you on Sense Cloud or Client Managed (on-premise)?

If it is Client Managed, you will want to pull that information from a REST connection.

This code should do it, provided you have access to the connection:

// Connect to the REST connection
LIB CONNECT TO 'monitor_apps_REST_app';

// Load raw JSON Data
RawRESTData:
SQL SELECT 
    "id" AS "id_u1",
    "createdDate",
    "modifiedDate",
    "modifiedByUserName",
    "name" AS "name_u1",
    "publishTime",
    "published",
    "description",
    "fileSize",
    "lastReloadTime",
    "thumbnail",
    "savedInProductVersion",
    "availabilityStatus",
    "schemaPath",
    "__KEY_root",
    (SELECT 
        "userId",
        "userDirectory",
        "name",
        "__FK_owner"
    FROM "owner" FK "__FK_owner"),
    (SELECT 
        "name" AS "name_u0",
        "__FK_stream"
    FROM "stream" FK "__FK_stream")
FROM JSON (wrap on) "root" PK "__KEY_root";

 

This blog post gives a lot more detail on how to do this:

https://www.quickintelligence.co.uk/back-up-qlik-sense-applications/

Looking at what applications you have published on your Client Managed server and stats such as Last Reload Time is one of the example scripts that ships with my free Instant Sense Application. If you would like to take a look at this, you can do so here:

https://www.quickintelligence.co.uk/instant-qlik-sense-app/

Hope that is useful.

Steve

nirav_bhimani
Partner - Specialist
Partner - Specialist

@Qlikuser225 ,

You can easily get latest Reload information Using WoWizer TPM in Realtime.

You can check out WoWizer TPM product, Below is the link for the same. 

Checkout WoWizer

WoWizer TPM Blog

Let me know in case you need any help for this! Happy to Help.

Regards,

Nirav Bhimani