Minimum Version
This DEX Pack requires SysTrack version 10.1 or higher.
Notes
After this DEX Pack is installed, it may take up to 24 hours for data to appear.
Import Kit
To use this DEX Pack, the corresponding Kit must be imported to SysTrack.
If you have already imported the DEX Pack directly from the Kits page, the Import Kit step is complete. You may move on to the next step.
If you are viewing this DEX Pack in the Customer Gateway, follow these steps to import this
DEX Pack Kit:
On the DEX Pack page, download the DEX Pack ZIP file
In SysTrack, open Kits
Under Local, click Select Kit File
Select the DEX Pack ZIP File
HyperV Management Role
This DEX Pack requires you to assign the SF_HyperV Role to the relevant Configurations:
Navigate to Configure > Configurations
Click the padlock icon in the upper-right to enable editing
Use the drop-down at the top to select a relevant Configuration, or create a new Configuration
Assign SF_HyperV to the Configuration by dragging it from Available Roles to Assigned Roles
Click Save Changes at the top-right
Repeat this process for any other relevant Configurations
HyperV View
The HyperV - Performance dashboard requires you to make a View for the SF_HyperV.
To create the new View:
Navigate to Configure > Views
Click the padlock icon in the upper-right to enable editing
Click the plus icon to add a new View
Fill in the Settings as follows:
View Name: SF_HyperVDaily
Expires in: 30 Days
When Expired: Append Data
Do NOT check “When overdue by 1 day(s)”
Set the Refresh drop-downs to Daily, Inside, 24x7, and “Every Day”
Copy this SQL query, and paste it into the box under SQL Selection > Generic
Click Test SQL. A Test Success message should appear. If the test is not successful, the query may have been copied incorrectly
Click Create View at the top-right
To assign the new View:
Navigate to Configure > Roles
Use the drop-down at the top to select the SF_HyperV
Confirm the SF_HyperVDaily view is checked
Click Save Changes at the top-right
After this View is assigned, Screen Time data will be collected each day. It will take 30 days before the data in this Dashboard is fully populated
SF_HyperV SQL Query
select
t1.wguid
,GETUTCDATE() as [vwtime]
,DATEADD(D,DATEDIFF(D,0,wtime),0) as [DOTY]
,AVG(wdata) as [Data]
,t2.strvalue as [Object]
,t3.STRVALUE as [Counter]
from (((
saperfdata t1
inner join sastr t2 on t1.wobject = t2.stringid )
inner join sastr t3 on t1.wcounter = t3.stringid )
inner join (select strvalue,stringid from sastr where strvalue = '_Total') t4 on t1.winstance = t4.stringid )
where
wtype = 1
and DATEADD(D,DATEDIFF(D,0,wtime),0) >= DATEADD(D,DATEDIFF(D,0,<LASTREFRESHTIME>),0)
and DATEADD(D,DATEDIFF(D,0,wtime),0) < DATEADD(D,DATEDIFF(D,0,GETUTCDATE()),0)
group by
t1.wguid
,DATEADD(D,DATEDIFF(D,0,wtime),0)
,t2.strvalue
,t3.STRVALUE